-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsoap.php
More file actions
executable file
·413 lines (318 loc) · 11.3 KB
/
soap.php
File metadata and controls
executable file
·413 lines (318 loc) · 11.3 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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<?php
require_once 'func.php';
//Setting up the client, specifying the server.
$dsl_soap_client = new SoapClient(null,
array('location' => "http://cyrus.cs.ucdavis.edu/~dslfaith/php/soap.php", //"http://cyrus.cs.ucdavis.edu/~trantho/php/soap.php", testing
'uri' => "urn://cyrus.cs.ucdavis.edu/req",
'trace' => 1,
'exception'=> 1));
$failt_srv = new SoapServer(null, array('uri' => "urn://cyrus.cs.ucdavis.edu/dslfaith"));
function faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, $api_method, $api_array, $result)
{
if(!isset($faith_uid))
return false;
if(!isset($faith_client_ip))
return false;
if(!isset($faith_app_id))
return false;
if(!isset($api_method))
return false;
mysqlSetup($db);
$app_ip_addr = $_SERVER['REMOTE_ADDR'];
$api_blocked = mysql_query("SELECT Count(*) as CountAPI_Num
from user_disable_api, restapi
where user_disable_api.uid = $faith_uid AND
restapi.facebook_method = '$api_method' AND
user_disable_api.restapi_id = restapi.id;", $db);
$api_blocked_row = mysql_fetch_array($api_blocked);
$CountAPI_Num = $api_blocked_row['CountAPI_Num'];
$app_blocked = mysql_query("SELECT Count(*) as CountAPP_Num
from user_disable_app
where user_disable_app.uid = $faith_uid AND
user_disable_app.app_id = $faith_app_id;", $db);
$app_blocked_row = mysql_fetch_array($app_blocked);
$CountAPP_Num = $app_blocked_row['CountAPP_Num'];
$Count_Num = $CountAPI_Num + $CountAPP_Num;
fwrite($fh, "(restserver.php)Count_Num = $Count_Num\n");
$allowed = '1';
if($Count_Num > 0)
{
$allowed = '0';
}
$logging_setting = '0';
$results = mysql_query("SELECT logging_setting
from setting_logging
where uid = $faith_uid", $db);
while($row = mysql_fetch_array($results))
{
$logging_setting = $row['logging_setting'];
}
if($logging_setting == '2' || $logging_setting == '3')
{
//$result = http_build_query($result);
if(gettype($result) == 'array')
{
$array_str = '';
foreach($result as $index => $value)
{
$array_str = $array_str . ' { Array ' . $index . ' -> ';
if(gettype($value) == 'array')
{
foreach($value as $inner_index => $inner_value)
{
$array_str = $array_str . ' [ Array ' . $inner_index . ' -> ';
if(gettype($inner_value) == 'array')
{
foreach($inner_value as $most_inner_index => $most_inner_value)
{
$array_str = $array_str . ' ( Array ' . $most_inner_index . ' -> ' . $most_inner_value . ' ) ';
}
$array_str = $array_str . ' ] ';
}
else
{
$array_str = $array_str . $inner_value . ' ] ';
}
}
}
$array_str = $array_str . ' } ';
}
$result = $array_str;
}
$faith_dsl_replay = 44;
date_default_timezone_set('America/Los_Angeles');
$time_added = date("Y-m-d H:i:s");
$query = sprintf("INSERT INTO access_log (uid,
app_id,
allowed,
access_time,
logdetails,
parameter,
replay_type,
api_id,
app_ip_addr,
user_ip_addr)
VALUES('%s','%s','%s','%s','%s','%s','%s',(SELECT id FROM restapi where facebook_method = '$api_method'),INET_ATON('$app_ip_addr'),INET_ATON('$faith_client_ip'))",
$faith_uid,
mysql_real_escape_string($faith_app_id),
mysql_real_escape_string($allowed),
mysql_real_escape_string($time_added),
mysql_real_escape_string($result),
mysql_real_escape_string(json_encode($api_array)),
mysql_real_escape_string($faith_dsl_replay));
if(!mysql_query($query))
{
return false;
}
}
if($Count_Num > 0)
{
return false;
}
return true;
}
function dsl_isPositiveInt($num){
return is_int($num) && ($num>0);
}
$failt_srv->addFunction("dsl_isPositiveInt");
//UID to Name
function uidToName($uid, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'uidToName');
$api_array['uid'] = $uid;
$result = $dsl_soap_client->__soapCall("uidToName",array($uid));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "uidToName", $api_array, $result))
{
return "";
}
else
{
return $result;
}
}
$failt_srv->addFunction("uidToName");
//Name to UID
function nameToUid($name, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'nameToUid');
$api_array['name'] = $name;
$result = $dsl_soap_client->__soapCall("nameToUid",array($name));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "nameToUid", $api_array, $result))
{
return "";
}
else
{
return $result;
}
}
$failt_srv->addFunction("nameToUid");
//Note that findSocialPath returns an array of (nodes,trust) pairs connecting the source user to the destination.
function findSocialPath($src,$dest, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'findSocialPath');
$api_array['src'] = $src;
$api_array['dest'] = $dest;
$result = $dsl_soap_client->__soapCall("findSocialPath",array($src,$dest));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "findSocialPath", $api_array, $result))
{
return -1;
}
else
{
return $result;
}
}
$failt_srv->addFunction("findSocialPath");
//Like findSocialPath but returns an array of paths.
function findMultipleSocialPaths($src,$dest, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'findMultipleSocialPaths');
$api_array['src'] = $src;
$api_array['dest'] = $dest;
$result = $dsl_soap_client->__soapCall("findMultipleSocialPaths",array($src,$dest));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "findMultipleSocialPaths", $api_array, $result))
{
return -1;
}
else
{
return $result;
}
}
$failt_srv->addFunction("findMultipleSocialPaths");
//Note that findTargets (a) requires an array of keywords for input, even if it is only one keyword, and (b) returns an array of (nodes,distance) pairs.
function findTargets($src,$keywords, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'findTargets');
$api_array['src'] = $src;
$api_array['keywords'] = $keywords;
$result = $dsl_soap_client->__soapCall("findTargets",array($src,$keywords)); //array("3200156",$keywords));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "findTargets", $api_array, $result))
{
return -1;
}
else
{
return $result;
}
}
$failt_srv->addFunction("findTargets");
//Note that setOutcome (a) requires an array of nodes along the path for input and (b) returns "1" always.
function setOutcome($path, $outcome, $faith_uid, $faith_client_ip, $faith_app_id){
$api_array = array('method' => 'setOutcome');
$api_array['path'] = $path;
$api_array['outcome'] = $outcome;
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "setOutcome", $api_array))
{
return -1;
}
global $dsl_soap_client;
if(!is_array($path))
return -1;
if($outcome!=0 && $outcome!=1)
return -2;
return $dsl_soap_client->__soapCall("setOutcome",array($path,$outcome));
}
$failt_srv->addFunction("setOutcome");
//Note that getReceivedKeywords returns a complicated array of
//(keywords, neighbors) pairs where neighbors is an array of neighbors to the
//UID that passed the keyword on to the user.
function getReceivedKeywords($uid, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'getReceivedKeywords');
$api_array['uid'] = $uid;
$result = $dsl_soap_client->__soapCall("getReceivedKeywords",array($uid));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "getReceivedKeywords", $api_array, $result))
{
return array();
}
else
{
return $result;
}
}
$failt_srv->addFunction("getReceivedKeywords");
//Note that getFriends returns an array. Returns all friends who are also using DSL.
function getFriends($uid, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'getFriends');
$api_array['uid'] = $uid;
$result = $dsl_soap_client->__soapCall("getFriends",array($uid));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "getFriends", $api_array, $result))
{
return array();
}
else
{
return $result;
}
}
$failt_srv->addFunction("getFriends");
//How much does $truster trust $trustee?
function getTrust($truster, $trustee, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'getTrust');
$api_array['truster'] = $truster;
$api_array['trustee'] = $trustee;
$result = $dsl_soap_client->__soapCall("getTrust",array($truster,$trustee));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "getTrust", $api_array, $result))
{
return -1;
}
else
{
return $result;
}
}
$failt_srv->addFunction("getTrust");
//Note that this function will update the trust along the path depending on if the message was successfully sent or not. Be careful when calling this method as it modifies data. Be sure you don't accidentally spam this function.
function sendMessage($path, $faith_uid, $faith_client_ip, $faith_app_id){
$api_array = array('method' => 'sendMessage');
$api_array['path'] = $path;
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "sendMessage", $api_array))
return -1;
global $dsl_soap_client;
if(!is_array($path))
return -1;
return $dsl_soap_client->__soapCall("sendMessage",array($path));
}
$failt_srv->addFunction("sendMessage");
//Adds a user to DSL.
function addUser($uid,$name, $faith_uid, $faith_client_ip, $faith_app_id){
$api_array = array('method' => 'addUser');
$api_array['uid'] = $uid;
$api_array['name'] = $name;
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "addUser", $api_array))
return -1;
global $dsl_soap_client;
return $dsl_soap_client->__soapCall("addUser",array($uid,$name));
}
$failt_srv->addFunction("addUser");
//Removes a user from DSL.
function removeUser($uid, $faith_uid, $faith_client_ip, $faith_app_id){
$api_array = array('method' => 'removeUser');
$api_array['uid'] = $uid;
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "removeUser", $api_array))
return -1;
global $dsl_soap_client;
return $dsl_soap_client->__soapCall("removeUser",array($uid));
}
$failt_srv->addFunction("removeUser");
//Get the URL for the user's thumbnail picture.
function getPic($uid, $faith_uid, $faith_client_ip, $faith_app_id){
global $dsl_soap_client;
$api_array = array('method' => 'getPic');
$api_array['uid'] = $uid;
$result = $dsl_soap_client->__soapCall("getPic",array($uid));
if(!faith_accessAllowed($faith_uid, $faith_client_ip, $faith_app_id, "getPic", $api_array, $result))
{
return -1;
}
else
{
return $result;
}
}
$failt_srv->addFunction("getPic");
$failt_srv->handle();