-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhooks.php
60 lines (48 loc) · 1.42 KB
/
webhooks.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
# Require functions.
require __DIR__ . '/lib/functions.php';
# Check if enabled.
if (C::get('webhooks') !== true || !count($endpoints = C::get('webhooks.endpoints'))) {
return;
}
# Get property blacklist.
$blacklist = C::get('webhooks.blacklist', ['password', 'secret']);
# Create payload.
$payload = [
'hook' => null,
'host' => parse_url(site()->url(), PHP_URL_HOST),
'user' => webhooksGetData(site()->user(), $blacklist),
'data' => null,
];
# Process hooks.
foreach (require 'lib/hooks.php' as $hook) {
# Register hook.
$kirby->set('hook', $hook, function ($current, $prior = null) use ($hook, $payload, $endpoints, $blacklist) {
# Get data.
$currentData = webhooksGetData($current, $blacklist);
$priorData = webhooksGetData($prior, $blacklist);
# Update payload.
$payload['hook'] = $hook;
$payload['data'] = $currentData;
$payload['diff'] = webhooksGetDiff($currentData, $priorData);
# Create stream-context.
$context = stream_context_create(['http' => [
'method' => 'POST',
'header' => 'Content-type: application/json',
'content' => json_encode($payload),
]]);
# Send the request to all endpoints.
foreach ($endpoints as $endpoint => $filters) {
# Validate hook filters.
if(is_array($filters)) {
if(!webhooksFilterHook($hook, $filters)) {
continue;
}
} else {
$endpoint = $filters;
}
# Send request.
@file_get_contents($endpoint, false, $context);
}
});
}