mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-04-05 22:35:43 +00:00
Merge branch 'develop' into feature/plugin-telegram
This commit is contained in:
commit
936f1b6023
3 changed files with 149 additions and 2 deletions
46
docu/docs/plugin/http.md
Normal file
46
docu/docs/plugin/http.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# <center>Http</center>
|
||||
---
|
||||
|
||||
## Beschreibung
|
||||
Mit diesem Plugin ist es moeglich, Http-Anfragen für Alarmierungen zu senden.
|
||||
Wildcards in den Urls werden automatisch ersetzt.
|
||||
|
||||
## Externe Abhängigkeiten
|
||||
- asyncio
|
||||
- aiohttp
|
||||
|
||||
## Unterstütze Alarmtypen
|
||||
- Fms
|
||||
- Pocsag
|
||||
- Zvei
|
||||
- Msg
|
||||
|
||||
## Resource
|
||||
`http`
|
||||
|
||||
## Konfiguration
|
||||
|
||||
|Feld|Beschreibung|Default|
|
||||
|----|------------|-------|
|
||||
|fms|Liste mit Urls für Fms-Alarmierung||
|
||||
|pocsag|Liste mit Urls für Pocsag-Alarmierung||
|
||||
|zvei|Liste mit Urls für Zvei-Alarmierung||
|
||||
|msg|Liste mit Urls für Msg-Alarmierung||
|
||||
|
||||
**Beispiel:**
|
||||
```yaml
|
||||
- type: plugin
|
||||
name: HTTP Plugin
|
||||
res: http
|
||||
config:
|
||||
pocsag:
|
||||
- "http://google.com?q={MSG}"
|
||||
- "http://duckduckgo.com?q={MSG}"
|
||||
fms:
|
||||
- "http://duckduckgo.com?q={LOC}"
|
||||
```
|
||||
|
||||
---
|
||||
## Abhängigkeiten
|
||||
|
||||
- keine
|
||||
|
|
@ -18,11 +18,12 @@ nav:
|
|||
- Routing Mechanismus: information/router.md
|
||||
- Changelog: changelog.md
|
||||
- Module:
|
||||
- Descriptor: modul/descriptor.md
|
||||
- Geocoding: modul/geocoding.md
|
||||
- Mode Filter: modul/mode_filter.md
|
||||
- Regex Filter: modul/regex_filter.md
|
||||
- Descriptor: modul/descriptor.md
|
||||
- Geocoding: modul/geocoding.md
|
||||
- Plugins:
|
||||
- Http: plugin/http.md
|
||||
- Telegram: plugin/telegram.md
|
||||
- Entwickler:
|
||||
- Eigenes Modul/Plugin schreiben: develop/ModulPlugin.md
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue