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
|
<?php
/* InstaDisc Server - A Four Island Project */
include('includes/xmlrpc/xmlrpc.inc');
include('includes/xmlrpc/xmlrpcs.inc');
include('includes/instadisc.php');
function checkRegistration($username, $verification, $verificationID)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function deleteItem($username, $verification, $verificationID, $id)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
$getitem = "SELECT * FROM inbox WHERE username = \"" . mysql_real_escape_string($username) . "\" AND itemID = " . $id;
$getitem2 = mysql_query($getitem);
$getitem3 = mysql_fetch_array($getitem2);
if ($getitem3['itemID'] == $id)
{
$delitem = "DELETE FROM inbox WHERE username = \"" . mysql_real_escape_string($username) . "\" AND itemID = " . $id;
$delitem2 = mysql_query($delitem);
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function resendItem($username, $verification, $verificationID, $id)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
$getitem = "SELECT * FROM inbox WHERE username = \"" . mysql_real_escape_string($username) . "\" AND itemID = " . $id;
$getitem2 = mysql_query($getitem);
$getitem3 = mysql_fetch_array($getitem2);
if ($getitem3['itemID'] == $id)
{
instaDisc_sendItem($username, $id);
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function requestRetained($username, $verification, $verificationID)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
$getitems = "SELECT * FROM inbox WHERE username = \"" . mysql_real_escape_string($username) . "\"";
$getitems2 = mysql_query($getitems);
$i=0;
while ($getitems3[$i] = mysql_fetch_array($getitems2))
{
if (!instaDisc_sendItem($username, $getitems3[$i]['itemID']))
{
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
$i++;
}
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function sendFromUpdate($subscriptionURL, $title, $author, $url, $semantics, $encryptionID)
{
$getsed = "SELECT * FROM subscriptions WHERE url = \"" . mysql_real_escape_string($subscriptionURL) . "\"";
$getsed2 = mysql_query($getsed);
$i=0;
while ($getsed3[$i] = mysql_fetch_array($getsed2))
{
instaDisc_addItem($getsed3[$i]['username'], $subscriptionURL, $title, $author, $url, $semantics, $encryptionID);
$i++;
}
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
function deleteSubscription($username, $verification, $verificationID, $subscription)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
$getsub = "SELECT * FROM subscriptions WHERE url = \"" . mysql_real_escape_string($subscription) . "\" AND username = \"" . mysql_real_escape_string($username) . "\"";
$getsub2 = mysql_query($getsub);
$getsub3 = mysql_fetch_array($getsub2);
if ($getsub3['url'] == $subscription)
{
$delsub = "DELETE FROM subscriptions WHERE url = \"" . mysql_real_escape_string($subscription) . "\" AND username = \"" . mysql_real_escape_string($username) . "\"";
$delsub2 = mysql_query($delsub);
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function addSubscription($username, $verification, $verificationID, $subscription, $category)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
$getsub = "SELECT * FROM subscriptions WHERE url = \"" . mysql_real_escape_string($subscription) . "\" AND username = \"" . mysql_real_escape_string($username) . "\"";
$getsub2 = mysql_query($getsub) or die($getsub);
$getsub3 = mysql_fetch_array($getsub2);
if ($getsub3['url'] != $subscription)
{
$inssub = "INSERT INTO subscriptions (url, username, category) VALUES (\"" . mysql_real_escape_string($subscription) . "\", \"" . mysql_real_escape_string($username) . "\", \"" . mysql_real_escape_string($category) . "\")";
$inssub2 = mysql_query($inssub);
return new xmlrpcresp(new xmlrpcval(0, "int"));
}
}
return new xmlrpcresp(new xmlrpcval(1, "int"));
}
function downloadItemModeTest()
{
$fp = @fsockopen($_SERVER['REMOTE_ADDR'], 61200, $errno, $errstr);
if ($fp)
{
fwrite($fp, "InstaDisc Download Item Mode Test\r\n\r\n\r\n");
fclose($fp);
return new xmlrpcresp(new xmlrpcval('0', 'int'));
} else {
return new xmlrpcresp(new xmlrpcval('1', 'int'));
}
}
$s = new xmlrpc_server( array( "InstaDisc.checkRegistration" => array("function" => "checkRegistration"),
"InstaDisc.deleteItem" => array("function" => "deleteItem"),
"InstaDisc.resendItem" => array("function" => "resendItem"),
"InstaDisc.requestRetained" => array("function" => "requestRetained"),
"InstaDisc.sendFromUpdate" => array("function" => "sendFromUpdate"),
"InstaDisc.deleteSubscription" => array("function" => "deleteSubscription"),
"InstaDisc.addSubscription" => array("function" => "addSubscription"),
"InstaDisc.downloadItemModeTest" => array("function" => "downloadItemModeTest")
),0);
$s->functions_parameters_type = 'phpvals';
$s->service();
?>
|