Webhook.class.php
2.2 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
class AC_Webhook extends ActiveCampaign {
public $version;
public $url_base;
public $url;
public $api_key;
function __construct($version, $url_base, $url, $api_key) {
$this->version = $version;
$this->url_base = $url_base;
$this->url = $url;
$this->api_key = $api_key;
}
function add($params, $post_data) {
$request_url = "{$this->url}&api_action=webhook_add&api_output={$this->output}";
$response = $this->curl($request_url, $post_data);
return $response;
}
function delete($params) {
$request_url = "{$this->url}&api_action=webhook_delete&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function delete_list($params) {
$request_url = "{$this->url}&api_action=webhook_delete_list&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function edit($params, $post_data) {
$request_url = "{$this->url}&api_action=webhook_edit&api_output={$this->output}";
$response = $this->curl($request_url, $post_data);
return $response;
}
function list_($params) {
$request_url = "{$this->url}&api_action=webhook_list&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function view($params) {
$request_url = "{$this->url}&api_action=webhook_view&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function events($params) {
$request_url = "{$this->url}&api_action=webhook_events&api_output={$this->output}&{$params}";
$response = $this->curl($request_url);
return $response;
}
function process($params) {
// process an incoming webhook payload (from ActiveCampaign), and format it (or do something with it)
$r = array();
if ($_SERVER["REQUEST_METHOD"] != "POST") return $r;
$params_array = explode("&", $params);
$params_ = array();
foreach ($params_array as $expression) {
// IE: css=1
list($var, $val) = explode("=", $expression);
$params_[$var] = $val;
}
$event = $params_["event"];
$format = $params_["output"];
if ($format == "json") {
return json_encode($_POST);
}
}
}
?>