forked from mapkyca/ifttt-webhook
-
Notifications
You must be signed in to change notification settings - Fork 4
/
xmlrpc.php
209 lines (167 loc) · 6.42 KB
/
xmlrpc.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
require_once(dirname(__FILE__) . '/settings.php');
require_once(dirname(__FILE__) . '/log.php');
require_once(dirname(__FILE__) . '/recipes.php');
require_once(dirname(__FILE__) . '/plugin.php');
error_reporting(-1);
ini_set('display_errors', 1);
$request_body = file_get_contents('php://input');
/*$request_body = "<?xml version=\"1.0\" ?><methodCall><methodName>metaWeblog.newPost</methodName><params><param><value><string></string></value></param><param><value><string>foo</string></value></param><param><value><string>bar</string></value></param><param><value><struct><member><name>title</name><value><string>Saldohälytys S-Pankista</string></value></member><member><name>description</name><value><string>23.7.2013 11:11:23
Hyvä asiakkaamme
Saldosi tilillä Ruokarahatili on alle 200,00 EUR
Käyttövarasi on 163,65 EUR
Tämä saldoviesti on lähetetty automaattisesti, joten ethän vastaa
viestiin. Voit muokata saldoviestin lähetysasetuksia tai peruuttaa
viestin tilauksen S-Pankin verkkopankissa.
Ystävällisin terveisin
S-Pankki</string></value></member><member><name>categories</name><value><array><data><value><string>plugin:email</string></value><value><string>from:[email protected]</string></value></data></array></value></member><member><name>mt_keywords</name><value><array><data><value><string>IFTTT</string></value><value><string>IFTTT channel extensions</string></value><value><string>Gmail</string></value></data></array></value></member><member><name>post_status</name><value><string>publish</string></value></member></struct></value></param><param><value><boolean>1</boolean></value></param></params></methodCall>";
*/
$xml = simplexml_load_string($request_body);
__log("Endpoint triggered");
//__log($request_body);
// Plugin?
$__PLUGIN = null;
if (!$xml) {
__errorAndDie("No XML Payload!");
}
switch ($xml->methodName) {
//wordpress blog verification
case 'mt.supportedMethods':
success('metaWeblog.getRecentPosts');
break;
//first authentication request from ifttt
case 'metaWeblog.getRecentPosts':
//send a blank blog response
//this also makes sure that the channel is never triggered
success('<array><data></data></array>');
break;
case 'metaWeblog.newPost':
__log("Processing newpost payload");
//@see http://codex.wordpress.org/XML-RPC_WordPress_API/Posts#wp.newPost
$obj = new stdClass;
//get the parameters from xml
$obj->username = (string) $xml->params->param[1]->value->string;
$obj->password = (string) $xml->params->param[2]->value->string;
//@see content in the wordpress docs
$content = $xml->params->param[3]->value->struct->member;
foreach ($content as $data) {
switch ((string) $data->name) {
// Tags are processed as a simple array
case 'mt_keywords':
$tags = array();
foreach ($data->xpath('value/array/data/value/string') as $cat) {
array_push($tags, (string) $cat);
}
$obj->tags = $tags;
break;
// Categories are parsed as object properties
case 'categories':
foreach ($data->xpath('value/array/data/value/string') as $cat) {
$parts = preg_split('/:/', (string) $cat);
if (count($parts) == 2) {
$obj->{$parts[0]} = $parts[1];
}
}
break;
// Others values are stored just as string (eg. title and description)
default:
$obj->{$data->name} = (string) $data->value->string;
}
}
// Plugin details
/*if ($ALLOW_PLUGINS) {
__log("Plugins are permitted");
foreach ($obj->categories as $category) {
if (strpos($category, 'plugin:') !== false)
$__PLUGIN = $category;
}
// If we allow plugins, pass the constructed object to
if ($__PLUGIN) {
$processed = executePlugin($__PLUGIN, $obj, $content);
if ($processed)
$obj = $processed;
else
{
__log("Plugin was invalid");
failure(400);
}
}
else
{
__log("No valid plugin specified");
failure(400);
}
}*/
//Make the webrequest
//Only if we have a valid url
/*if (valid_url($url, true)) {
// Load Requests Library
include('requests/Requests.php');
Requests::register_autoloader();
$headers = array('Content-Type' => 'application/json');
$response = Requests::post($url, $headers, json_encode($obj));
if ($response->success)
success('<string>' . $response->status_code . '</string>');
else
failure($response->status_code);
}
else {
//since the url was invalid, we return 400 (Bad Request)
failure(400);
}*/
if ( select_the_right_recipe_for($obj) ) {
success('<string>200</string>');
} else {
failure(400);
}
break;
}
/** POSSIBLE RESPONSES FOR IFTTT **************************************************************/
function success($innerXML) {
__log("Success!");
$xml = <<<EOD
<?xml version="1.0"?>
<methodResponse>
<params>
<param>
<value>
$innerXML
</value>
</param>
</params>
</methodResponse>
EOD;
output($xml);
}
function output($xml) {
$length = strlen($xml);
header('Connection: close');
header('Content-Length: ' . $length);
header('Content-Type: text/xml');
header('Date: ' . date('r'));
echo $xml;
exit;
}
function failure($status) {
__log("Failure: $status", 'ERROR');
$xml = <<<EOD
<?xml version="1.0"?>
<methodResponse>
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>$status</int></value>
</member>
<member>
<name>faultString</name>
<value><string>Request was not successful.</string></value>
</member>
</struct>
</value>
</fault>
</methodResponse>
EOD;
output($xml);
}