mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-04-05 14:25:45 +00:00
Add Divera24/7-Plugin
This commit is contained in:
parent
d018c7eb18
commit
18d2ff7e1f
3 changed files with 214 additions and 0 deletions
|
|
@ -1,6 +1,15 @@
|
|||
# <center>Changelog</center>
|
||||
---
|
||||
|
||||
## Version [3.0.1] - date
|
||||
### Added
|
||||
* Divera24/7-Plugin
|
||||
### Changed
|
||||
### Deprecated
|
||||
### Removed
|
||||
### Fixed
|
||||
### Security
|
||||
|
||||
## Version [2.9.0] - date
|
||||
|
||||
Functions implemented in initial version:
|
||||
|
|
|
|||
67
docu/docs/plugin/divera.md
Normal file
67
docu/docs/plugin/divera.md
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
# <center>Divera 24/7</center>
|
||||
---
|
||||
|
||||
## Beschreibung
|
||||
Mit diesem Plugin ist es moeglich, Http-Anfragen für Alarmierungen an Divera 24/7 zu senden.
|
||||
Wildcards in den Urls werden automatisch ersetzt.
|
||||
|
||||
## Unterstütze Alarmtypen
|
||||
- Fms
|
||||
- Pocsag
|
||||
- Zvei
|
||||
- Msg
|
||||
|
||||
## Resource
|
||||
`divera`
|
||||
|
||||
## Konfiguration
|
||||
|Feld|Beschreibung|Default|
|
||||
|----|------------|-------|
|
||||
|accesskey|Web-API-Schlüssel von Divera24/7 ||
|
||||
|priority|Sonderrechte|false|
|
||||
|title| Titel der Meldung | s. Beispiel|
|
||||
|message| Nachrichteninhalt| s. Beispiel|
|
||||
|ric|Auszulösende RIC in Divera; Gruppen->Alarmierungs-RIC||
|
||||
|vehicle|Fahrzeug-Alarmierungs-RIC||
|
||||
|
||||
**Beispiel:**
|
||||
```yaml
|
||||
- type: plugin
|
||||
name: Divera Plugin
|
||||
res: divera
|
||||
config:
|
||||
accesskey: API-Key
|
||||
pocsag:
|
||||
priority: false
|
||||
title: "{RIC}({SRIC})\n{MSG}"
|
||||
message: "{MSG}"
|
||||
# RIC ist in Divera definiert
|
||||
ric: Probealarm
|
||||
fms:
|
||||
priority: false
|
||||
title: "{FMS}"
|
||||
message: "{FMS}"
|
||||
vehicle: MTF
|
||||
zvei:
|
||||
ric: Probealarm
|
||||
title: "{TONE}"
|
||||
message: "{TONE}"
|
||||
priority: false
|
||||
msg:
|
||||
priority: false
|
||||
title: "{MSG}"
|
||||
message: "{MSG}"
|
||||
# RIC ist in Divera definiert
|
||||
ric: Probealarm
|
||||
|
||||
```
|
||||
|
||||
---
|
||||
## Modul Abhängigkeiten
|
||||
- keine
|
||||
|
||||
---
|
||||
## Externe Abhängigkeiten
|
||||
- asyncio
|
||||
- aiohttp
|
||||
- urllib
|
||||
Loading…
Add table
Add a link
Reference in a new issue