Bot to manage a xmpp ejabberd node from your Akkoma instance, by posting keywords to it. The bot can register you, unregister you and show you the ejabberd node stats.
Anar al arxiu
2022-08-08 22:36:12 +02:00
akkoma.py Added notificactions, me and account methods 2022-08-07 16:50:15 +02:00
akkomabot.py Bot for register xmpp ejabberd accounts from Akkoma instance 2022-08-08 22:36:12 +02:00
ejabberdapi.py Bot for register xmpp ejabberd accounts from Akkoma instance 2022-08-08 22:36:12 +02:00
LICENSE Add LICENSE and README.md 2022-07-24 21:14:42 +02:00
README.md Bot for register xmpp ejabberd accounts from Akkoma instance 2022-08-08 22:36:12 +02:00
requirements.txt Bot for register xmpp ejabberd accounts from Akkoma instance 2022-08-08 22:36:12 +02:00
xmpp.py Bot for register xmpp ejabberd accounts from Akkoma instance 2022-08-08 22:36:12 +02:00

xmpp Akkoma bot

bot to manage an xmpp ejabberd node by posting keywords to it from your Akkoma account.

The bot only listen keywords from your Akkoma instance local users. They can register themselves to your xmpp server, unregister and also get your xmpp node stats.
The keywords that Akkoma instance local users can use are:

@your_bot register
@your_bot unregister @your_bot stats

The bot will process the keyword thanks to the wrapper for ejabberd (included) and the wrapper for Akkoma (also included) but first time you run python xmpp.py it will ask for the needed parameters like:

  • api_base_url: http://127.0.0.1:5280
  • local_vhost: your local ejabberd vhost
  • admin_account: the ejabberd admin account, in exemple admin@ejabberd.server
  • admin_pass: ejabberd admin account password
  • Akkoma hostname: in ex. akkoma.host

Before running python xmpp.py:

  1. git clone https://git.mastodont.cat/spla/xmpp.git target_dir.
  2. cd target_dir
  3. create the Python Virtual Environment with python3.x -m venv .
  4. activate it with source bin/activate
  5. run pip install -r requirements.txt to install required libraries.
  6. set up your contrab to run python xmpp.py every minute.

Enjoy!