Projekt

Allgemein

Profil

Webhooks http extension » Historie » Version 7

[E] Axel S, 14.08.2024 11:13

1 1 [X] Philipp Wolak
h1. Webhooks
2
3 2 [E] Axel S
h2. Technische Voraussetzung
4 5 [E] Axel S
5
* Ticket: https://redmine.prodat-sql.de/issues/20712
6 3 [E] Axel S
7 7 [E] Axel S
# Installation PostgreSQL HTTP Extension https://github.com/pramsey/pgsql-http
8 1 [X] Philipp Wolak
#* Version für Windows x64 und PG13: !pg13http_w64.zip!
9
#* Weitere Versionen: http://www.postgresonline.com/journal/archives/371-http-extension.html
10
# Datenbank-Update ausführen
11
#* https://ci.prodat-sql.de/sources/dbupdates/edit/?q=2024-01-17%2016:57:19
12 3 [E] Axel S
13
h2. Verwendung:
14
15
* unsere eigenen Wrapperfunktionen verwenden: @TSystem.http_get_request(uri varchar, data json)@, ... TODO: bei Bedarf weitere erstellen
16 1 [X] Philipp Wolak
** kümmern sich um den Pfad der vertauenswürdigen Root-CAs (Parameter @CURLOPT_CAINFO@)
17 4 [E] Axel S
** versuchen den HTTP-Request im Fehlerfall erneut
18 3 [E] Axel S
19
20
h2. Konfiguration
21 1 [X] Philipp Wolak
22
* Webhooks werden werden über das tabellarische Modul Webhooks konfiguriert
23
{{collapse(Hauptmenü)
24
!clipboard-202312051021-nzwgt.png!
25
}}
26
* Jeder Eintrag führt zur Anlage eines Datenbank-Triggers der bei Ausführung einen HTTP-Request an die konfigurierte URL schickt.
27
* *Beispielkonfigurationen:*
28
|_. wh_name |_. wh_schema |_. wh_table |_. wh_timing |_. wh_event |_. wh_url |_. wh_data |_. wh_data_type |
29
| slack_webhook_eingrech | public | eingrechdokument | AFTER | INSERT | https://hooks.slack.com/triggers/...... | <notextile>'{"Rechnungsnummer": "' || ($1).beld_dokunr || '"}'</notextile> | application/json |
30
| slack_webhook_bdepab | public | bdepab | AFTER | INSERT | https://hooks.slack.com/triggers/....... | <notextile>'{
31
  "mitarbeiter": "' || (SELECT nameAufloesen(ll_db_usename) FROM llv WHERE ($1).bdab_minr = ll_minr) || '",
32
  "bdab_id"": "' || ($1).bdab_id || '",
33
  "bdab_anf"": "' || ($1).bdab_anf || '",
34
  "bdab_end"": "' || ($1).bdab_end || '",
35
  "abw_grund"": "' || (SELECT ab_txt FROM bdeabgruende WHERE ($1).bdab_aus_id = ab_id) || '"
36
}'</notextile> | application/json |
37
| teams_webhook_eingrech | public | eingrechdokument | AFTER | INSERT | https://.....webhook.office.com/webhookb2/........ | <notextile>'{
38
   "type"":"message",
39
   "attachments":[
40
      {
41
         "contentType":"application/vnd.microsoft.card.adaptive",
42
         "contentUrl":null,
43
         "content":{
44
            "$schema":"http://adaptivecards.io/schemas/adaptive-card.json",
45
            "type"":"AdaptiveCard",
46
            "version":"1.2",
47
            "body":[
48
                {
49
                "type": "TextBlock",
50
                "text": "neue Eingangsrechnung: ' || ($1).beld_dokunr || '"
51
                }
52
            ]
53
         }
54
      }
55
   ]
56
}'</notextile> | application/json |