A place for all our bot adventures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Luke Murphy 86c8495e88
Re-use types here too
3 years ago
GlossBot added description for glossbot 3 years ago
GreetBot added description for greetbot 3 years ago
LogBot Re-use types here too 3 years ago
LogBot.old following camelcase style :) 3 years ago
RECbot.wip small update 3 years ago
SparkBot added description for sparkbot 3 years ago
StreamBot following camelcase style :) 3 years ago
TransitBot added description for transitbot 3 years ago
WhisperBot updated whisperbot description 3 years ago
echobot Add the rest of the xbotlib bots 3 years ago
glossbot.xbotlib Add the rest of the xbotlib bots 3 years ago
logsbot Add the rest of the xbotlib bots 3 years ago
whisperbot.xbotlib Add the rest of the xbotlib bots 3 years ago
.gitignore Ignore those files 3 years ago
README.md Quote those 3 years ago
requirements.txt Upgrade xbotlib 3 years ago

README.md

 _   _  _____        __  _____ ___    ____   ___ _____
| | | |/ _ \ \      / / |_   _/ _ \  | __ ) / _ \_   _|
| |_| | | | \ \ /\ / /    | || | | | |  _ \| | | || |
|  _  | |_| |\ V  V /     | || |_| | | |_) | |_| || |
|_| |_|\___/  \_/\_/      |_| \___/  |____/ \___/ |_|

status: experimental

Bots

The Varia XMPP botspace. These bots are written using slixmpp and sometimes also xbotlib.

Write your own

The idea is that you create a single python file and then using one of the above libraries, you write a single Python class which knows how to speak XMPP, join rooms, respond to commands etc. Probably the simplest place to start is by reading the xbotlib getting started guide.

Deploy it on the Varia server

Add a configuration entry to /etc/supervisor/conf.d/bots.conf like the following.

[program:whisperbot]
directory=/srv/gitea/clones/bots/whisperbot.xbotlib
user=bot
autostart=true
autorestart=true
environment=PATH="/srv/gitea/clones/bots/.venv/lib/python3.7/site-packages:%(ENV_PATH)s"
command=/srv/gitea/clones/bots/.venv/bin/python3 whisperbot.py --password <YOUR-PASSWORD>

Then systemctl restart supervisorctl and then check if it comes up with supervisorctl status bots:. Logs for all bots can be found in /var/log/supervisor/. Finally, when you git push your bot changes, a git hook will restart your bot.