-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.php
78 lines (67 loc) · 2.14 KB
/
service.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
<?php
include('include/class.php');
include('include/global.php');
mysql_connect($host, $user, $pass or exit(mysql_error());
mysql_select_db($table) or exit(mysql_error());
function is_valid_callback($subject){
$identifier_syntax
= '/^[$_\p{L}][$_\p{L}\p{Mn}\p{Mc}\p{Nd}\p{Pc}\x{200C}\x{200D}]*+$/u';
$reserved_words = array('break', 'do', 'instanceof', 'typeof', 'case',
'else', 'new', 'var', 'catch', 'finally', 'return', 'void', 'continue',
'for', 'switch', 'while', 'debugger', 'function', 'this', 'with',
'default', 'if', 'throw', 'delete', 'in', 'try', 'class', 'enum',
'extends', 'super', 'const', 'export', 'import', 'implements', 'let',
'private', 'public', 'yield', 'interface', 'package', 'protected',
'static', 'null', 'true', 'false');
return preg_match($identifier_syntax, $subject) && !in_array(mb_strtolower($subject, 'UTF-8'), $reserved_words);
}
header('content-type: application/json; charset=utf-8');
if (isset($_GET['id'])){
$account = $_GET['id'];
$sql = 'SELECT * FROM accounts WHERE account = "' . $account . '"';
$sql_results = mysql_query($sql);
$row = mysql_fetch_assoc($sql_results);
if (empty($row)){
$result = 'You provided incorrect authentication information. Please check your credentials.';
}
else{
if (isset($_GET['q'])){
$query = explode('||',$_GET['q']);
}
foreach ($query as $q){
$q = trim($q);
if ($q != ''){
if (stripos($q,'http://') != 0){
$q = 'http://' . $q;
}
$c = new url_request($q);
$data = $c->get();
if ($data == 'no'){
$result = 'no';
}
else{
$headers = $c->getHeaders();
$result[] = $headers['url'];
}
}
else{
$result[] = 'empty';
}
}
}
$result = json_encode($result);
# JSON if no callback
if(!isset($_GET['callback'])){
exit($result);
}
# JSONP if valid callback
if(is_valid_callback($_GET['callback'])){
exit("{$_GET['callback']}($result)");
}
# Otherwise, bad request
header('Status: 400 Bad Request', true, 400);
}
else{
$result = 'Please provide valid authentication credentials.';
}
?>