2016-06-12 13:52:57 +02:00
# Brawlbot v2
2016-06-15 02:02:12 +02:00
[![Build Status ](https://travis-ci.org/Brawl345/Brawlbot-v2.svg?branch=master )](https://travis-ci.org/Brawl345/Brawlbot-v2)
2016-06-22 20:44:51 +02:00
Der multifunktionale Telegram-Bot.
2015-07-08 04:24:12 +02:00
2016-08-24 17:24:08 +02:00
[Offizielle Webseite ](https://brawlbot.tk ) | [Entwickler auf Telegram ](http://telegram.me/Brawl ) **KEIN SUPPORT!** | [Offizieller Kanal ](https://telegram.me/brawlbot_updates )
2015-07-08 04:24:12 +02:00
2016-06-22 20:44:51 +02:00
Brawlbot ist ein auf Plugins basierender Bot, der die [offizielle Telegram Bot API ](http://core.telegram.org/bots/api ) benutzt. Ursprünglich wurde er im Dezember 2014 auf Basis von Yagops [Telegram Bot ](https://github.com/yagop/telegram-bot/ ) entwickelt, da aber die Entwicklung von tg-cli [zum Stillstand ](https://brawlbot.tk/posts/ein-neuanfang ) gekommen ist, wurden alle Plugins des bisher proprietären Brawlbots im Juni 2016 auf die Bot-API portiert und open-sourced.
**Brawlbot v2 basiert auf [otouto ](https://github.com/topkecleon/otouto ) von Topkecleon.**
2015-07-08 04:24:12 +02:00
2016-08-24 17:24:08 +02:00
**HINWEIS::** Ich gebe KEINEN Support für das Aufsetzen des Bots!
2016-07-15 15:13:00 +02:00
Brawlbot v2 ist freie Software; du darfst ihn modifizieren und weiterverbreiten, allerdings musst du dich an die GNU Affero General Public License v3 halten, siehe **LICENSE** für Details.
2016-05-29 19:08:39 +02:00
2016-06-22 20:44:51 +02:00
##Anleitung
2016-05-31 01:10:58 +02:00
2016-06-22 20:44:51 +02:00
| Für User | Für Entwickler|
2016-05-31 01:10:58 +02:00
|:----------------------------------------------|:------------------------------|
2016-06-15 14:35:39 +02:00
| [Setup ](#setup ) | [Plugins ](#plugins ) |
2016-06-22 20:44:51 +02:00
| [Bot steuern ](#bot-steuern ) | [Bindings ](#bindings ) |
2016-07-05 13:14:22 +02:00
| | [Datenbank ](#datenbank )
2016-03-22 14:38:29 +01:00
2016-06-17 07:13:05 +02:00
* * *
2016-06-22 20:44:51 +02:00
# Für User
2016-03-22 14:38:29 +01:00
## Setup
2016-07-13 01:00:32 +02:00
### Ubuntu und Debian
2016-07-15 15:13:00 +02:00
Ubuntu und Debian liefern Luarocks nur für Lua 5.1 aus. Um Luarocks für Lua 5.2 zu verwenden, folge bitte der [Anleitung auf StackOverflow ](http://stackoverflow.com/a/20359102 ).
2016-07-13 01:00:32 +02:00
### Setup
2016-06-22 20:44:51 +02:00
Du benötigst **Lua 5.2+** , eine aktive **Redis-Instanz** und die folgenden **LuaRocks-Module** :
* luasocket
* luasec
* multipart-post
2016-08-03 19:21:07 +02:00
* dkjson
2016-06-22 20:44:51 +02:00
* lpeg
* redis-lua
2016-07-13 01:00:32 +02:00
* fakeredis
2016-06-22 20:44:51 +02:00
* oauth
* xml
* feedparser
* serpent
2016-04-05 13:10:53 +02:00
2016-06-22 20:44:51 +02:00
Klone danach diese Repo. kopiere die `config.lua.example` nach `config.lua` und trage folgendes ein:
2016-02-25 15:05:08 +01:00
2016-06-22 20:44:51 +02:00
- `bot_api_key` : API-Token vom BotFather
- `admin` : Deine Telegram-ID
2016-04-03 02:46:57 +02:00
2016-06-22 20:44:51 +02:00
Starte danach den Bot mit `./launch.sh` . Um den Bot anzuhalten, führe erst `/halt` über Telegram aus.
2015-07-08 05:24:40 +02:00
2016-06-22 20:44:51 +02:00
Beim Start werden einige Werte in die Redis-Datenbank unter `telegram:credentials` und `telegram:enabled_plugins` eingetragen. Mit `/plugins enable` kannst du Plugins aktivieren, es sind nicht alle von Haus aus aktiviert.
2016-02-25 15:18:29 +01:00
2016-06-22 20:44:51 +02:00
Einige Plugins benötigen API-Keys, bitte gehe die einzelnen Plugins durch, bevor du sie aktivierst!
2016-02-25 15:17:19 +01:00
2016-01-08 04:30:12 +01:00
* * *
2015-11-25 03:22:04 +01:00
2016-06-22 20:44:51 +02:00
## Bot steuern
Ein Administrator kann den Bot über folgende Plugins steuern:
2016-02-25 15:05:08 +01:00
2016-06-22 20:44:51 +02:00
| Plugin | Kommando | Funktion |
2016-05-27 05:28:44 +02:00
|:----------------|:-----------|:---------------------------------------------------|
2016-06-22 20:44:51 +02:00
| `banhammer.lua` | Siehe /hilfe banhammer| Blockt User vom Bot und kann Whitelist aktivieren
| `control.lua` | /restart | Startet den Bot neu |
| | /halt | Speichert die Datenbank und stoppt den Bot |
| | /script | Führt mehrere Kommandos aus, getrennt mit Zeilenumbrüchen |
| `luarun.lua` | /lua | Führt LUA-Kommandos aus |
| `plugins.lua` | /plugins enable/disable | Aktiviert/deaktiviert Plugins |
| `shell.lua` | /sh | Führt Shell-Kommandos aus |
2016-02-25 15:05:08 +01:00
* * *
2016-06-22 20:44:51 +02:00
## Gruppenadministration über tg-cli
Dieses Feature wird in Brawlbot nicht unterstützt.
2015-11-25 03:22:04 +01:00
2016-01-08 04:30:12 +01:00
* * *
2015-11-25 03:22:04 +01:00
2016-06-22 20:44:51 +02:00
## Liste aller Plugins
2015-07-11 05:43:30 +02:00
2016-06-22 20:44:51 +02:00
Brawlbot erhält laufend neue Plugins und wird kontinuierlich weiterentwickelt! Siehe [hier ](https://github.com/Brawl345/Brawlbot-v2/tree/master/otouto/plugins ) für eine Liste aller Plugins.
2015-07-08 09:38:04 +02:00
2016-06-22 20:44:51 +02:00
* * *
#Für Entwickler
2016-05-31 01:10:58 +02:00
## Plugins
2016-06-22 20:44:51 +02:00
Brawlbot benutzt ein Plugin-System, ähnlich Yagops [Telegram-Bot ](http://github.com/yagop/telegram-bot ).
2016-05-31 01:10:58 +02:00
2016-07-15 15:14:31 +02:00
Ein Plugin kann zehn Komponenten haben, aber nur zwei werden benötigt:
2016-05-31 01:10:58 +02:00
2016-06-22 20:44:51 +02:00
| Komponente | Beschreibung | Benötigt? |
2016-06-15 14:35:39 +02:00
|:------------------|:---------------------------------------------|:----------|
2016-06-22 20:44:51 +02:00
| `plugin:action` | Hauptfunktion. Benötigt `msg` als Argument, empfohlen wird auch `matches` als drittes Argument nach `config` | J |
2016-07-15 15:13:00 +02:00
| `plugin.triggers` | Tabelle von Triggern (Lua-Patterns), auf die der Bot reagiert | J |
2016-07-15 15:14:31 +02:00
| `plugin.inline_triggers` | Tabelle von Triggern (Lua-Patterns), auf die der Bot bei Inline-Querys reagiert | N |
2016-06-22 20:44:51 +02:00
| `plugin:init` | Optionale Funkion, die beim Start geladen wird | N |
| `plugin:cron` | Wird jede Minute ausgeführt | N |
| `plugin.command` | Einfaches Kommando mit Syntax. Wird bei `/hilfe` gelistet | N |
| `plugin.doc` | Plugin-Hilfe. Wird mit `/help $kommando` gelistet | N |
| `plugin.error` | Plugin-spezifische Fehlermeldung | N |
2016-08-07 20:45:51 +02:00
| `plugin:callback` | Aktion, die ausgeführt wird, nachdem auf einen Callback-Button gedrückt wird. Siehe `gImages.lua` für ein Beispiel. Argumente: `callback` (enthält Callback-Daten), `msg` , `self` , `config` , `input` (enthält Parameter ohne `callback` ) | N |
2016-07-15 15:13:00 +02:00
| `plugin:inline_callback` | Aktion, die ausgeführt wird, wenn der Bot per Inline-Query ausgelöst wird. Argumente sind `inline_query` für die Daten, `config` und `matches` | N |
2016-05-31 01:10:58 +02:00
2016-06-22 20:44:51 +02:00
Die`bot:on_msg_receive` Funktion fügt einige nützte Variablen zur ` msg` Tabelle hinzu. Diese sind:`msg.from.id_str`, `msg.to.id_str` , `msg.chat.id_str` , `msg.text_lower` , `msg.from.name` .
2016-05-31 01:10:58 +02:00
2016-06-22 20:44:51 +02:00
Interaktionen mit der Bot-API sind sehr einfach. Siehe [Bindings ](#bindings ) für Details.
2016-05-31 01:10:58 +02:00
2016-06-22 20:44:51 +02:00
Einige Funktionen, die oft benötigt werden, sind in `utilites.lua` verfügbar.
2016-05-31 01:10:58 +02:00
* * *
## Bindings
2016-06-22 20:44:51 +02:00
**Diese Sektion wurde noch nicht lokalisiert.**
2016-08-24 15:38:29 +02:00
2016-08-25 12:40:06 +02:00
Die Telegram-API wird mithilfe der `binding.lua` über die multipart-post Library kontaktiert. Brawlbots Bindings-Datei unterstützt alle Standard API-Methoden und Argumente. Die Hauptufnktion `bindings.request` akzeptiert drei Parameter: `method` , `parameters` und `file` . Bevor du die Bindings-Datei nutzt, initialisiere das Modul mit der `init` -Funktion, wobei der Bot-Token als Argument übergeben werden sollte.
2016-05-31 01:10:58 +02:00
2016-08-25 12:40:06 +02:00
`method` ist der Name der API-Methode (bspw. `sendMessage` ), `parameters` (optional) ist eine Tabelle mit Schlüssel/Werte-Paaren der Parameter dieser Methode. `file` (optional) ist eine Tabelle mit einem einzigen Schlüssel/Werte-Paar, wobei der Schlüssel der Name de Parameters und der Wert der Dateiname oder die File-ID ist (wenn dies in den `parameters` übergeben wird, wird Brawlbot den Dateinamen als File-ID senden).
2016-05-31 01:10:58 +02:00
2016-08-25 12:40:06 +02:00
Zusätzlich kann jede Methode als Schlüssel in der `bindings` Tabelle (zum Beispiel `bindings.getMe` ) aufgerufen werden. Die `bindings.gen` Funktion (welche auch die `__index` Funktion in der Metatabelle ist) wird ihre Argumente an `bindings.request` in der richtigen Form übergeben. Mit diesem Weg sind die folgenden zwei Funktionsaufrufe gleich:
2016-05-31 01:10:58 +02:00
```
bindings.request(
2016-08-14 04:46:18 +02:00
'sendMessage',
{
chat_id = 987654321,
2016-08-25 12:40:06 +02:00
text = 'Brawlbot is best bot.',
2016-08-14 04:46:18 +02:00
reply_to_message_id = 54321,
disable_web_page_preview = false,
parse_method = 'Markdown'
}
2016-05-31 01:10:58 +02:00
)
2016-08-23 06:16:32 +02:00
bindings.sendMessage{
chat_id = 987654321,
2016-08-25 12:40:06 +02:00
text = 'Brawlbot is best bot.',
2016-08-23 06:16:32 +02:00
reply_to_message_id = 54321,
disable_web_page_preview = false,
parse_method = 'Markdown'
}
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
`utilities.lua` hat mehrere "Abkürzungen", die dir das leben einfacher machen. Z.b.:
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
utilities.send_message(987654321, 'Brawlbot is best bot.', false, 54321, true)
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
Eine Datei mit `sendPhoto` hochzuladen würde so aussehen:
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
utilites.sendPhoto(987654321, 'photo.jpg', 'Beschreibungstext')
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
oder mit einer File-ID:
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
utilites.sendPhoto(987654321, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ123456789', 'Beschreibungstext')
2016-05-31 01:10:58 +02:00
```
2016-08-25 12:40:06 +02:00
Falls erfolgreich, wird bindings das deserialisierte Ergebniss der API zurückgeben. Falls nicht erfolgreich, wird `false` und das Ergebnis zurückgegeben. Falls es einen Verbindungsfehler gab, werden zwei `false` Werte zurückgegeben. Wenn ein invalider Methodenname übergeben wurde, wird bindings eine Exception ausgeben. Damit sollen "stille Fehler" vermieden werden.
2016-05-31 01:10:58 +02:00
* * *
2016-07-05 13:14:22 +02:00
## Datenbank
Brawlbot benutzt eine interne Datenbank, wie Otouto sie benutzt und Redis. Die "Datenbank" ist eine Tabelle, auf die über die Variable `database` zugegriffen werden kann (normalerweise `self.database` ) und die als JSON-encodierte Plaintext-Datei jede Stunde gespeichert wird oder wenn der Bot gestoppt wird (über `/halt` ).
otouto 3.11
"things occurred"
Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?).
Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains.
Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata.
Speaking of migration, database now stores the latest version run to make future automigration easy.
Database now saves hourly rather than minutely.
Changed readme and some plugins to reflect above changes.
Removed broken rockspec (Brayden, feel free to re-add once it's working).
Added option to automatically block people (via drua) when blacklisted.
Fixed about.lua trigger problems.
administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer,
/mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
2016-07-05 09:29:11 +02:00
2016-07-05 13:14:22 +02:00
Das ist die Datenbank-Struktur:
otouto 3.11
"things occurred"
Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?).
Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains.
Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata.
Speaking of migration, database now stores the latest version run to make future automigration easy.
Database now saves hourly rather than minutely.
Changed readme and some plugins to reflect above changes.
Removed broken rockspec (Brayden, feel free to re-add once it's working).
Added option to automatically block people (via drua) when blacklisted.
Fixed about.lua trigger problems.
administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer,
/mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
2016-07-05 09:29:11 +02:00
```
{
users = {
["55994550"] = {
id = 55994550,
first_name = "Drew",
username = "topkecleon"
}
},
userdata = {
["55994550"] = {
2016-07-05 13:14:22 +02:00
nickname = "Best coder ever",
otouto 3.11
"things occurred"
Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?).
Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains.
Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata.
Speaking of migration, database now stores the latest version run to make future automigration easy.
Database now saves hourly rather than minutely.
Changed readme and some plugins to reflect above changes.
Removed broken rockspec (Brayden, feel free to re-add once it's working).
Added option to automatically block people (via drua) when blacklisted.
Fixed about.lua trigger problems.
administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer,
/mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
2016-07-05 09:29:11 +02:00
lastfm = "topkecleon"
}
},
2016-07-05 13:14:22 +02:00
version = "2.1"
otouto 3.11
"things occurred"
Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?).
Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains.
Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata.
Speaking of migration, database now stores the latest version run to make future automigration easy.
Database now saves hourly rather than minutely.
Changed readme and some plugins to reflect above changes.
Removed broken rockspec (Brayden, feel free to re-add once it's working).
Added option to automatically block people (via drua) when blacklisted.
Fixed about.lua trigger problems.
administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer,
/mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
2016-07-05 09:29:11 +02:00
}
```
2016-07-05 13:14:22 +02:00
`database.users` speichert User-Informationen, wie Usernamen, IDs, etc., wenn der Bot den User sieht. Jeder Tabellen-Key ist die User-ID als String.
2016-05-31 01:10:58 +02:00
2016-07-05 13:14:22 +02:00
`database.userdata` speichert Daten von verschiedenen Plugins, hierzu wird aber für Brawlbot-Plugins Redis verwendet.
2016-01-08 04:30:12 +01:00
2016-08-14 16:30:06 +02:00
`database.version` speichert die Bot-Version.