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
|
<?php
/* InstaDisc Series - A Four Project */
include('includes/instadisc.php');
function subscriptionInfo($id)
{
if (!instaDisc_subscriptionExists($id))
{
return new xmlrpcresp(new xmlrpcval('false', 'string'));
}
$sub = instaDisc_getSubscription($id);
return serialize(array( 'url' => $sub['url'],
'category' => $sub['category']
));
}
function getPasswordInfo($id)
{
if (!instaDisc_subscriptionExists($id))
{
return new xmlrpcresp(new xmlrpcval('false', 'string'));
}
$sub = instaDisc_getSubscription($id);
if ($sub['password'] == '')
{
return new xmlrpcresp(new xmlrpcval('false', 'string'));
} else {
$verID = rand(1,2147483647);
return new xmlrpcresp(new xmlrpcval(md5($sub['password'] . ':' . $verID) . ':' . $verID, 'string'));
}
}
function sendFromUpdate($username, $verification, $verificationID, $seriesURL, $seriesID, $subscriptionURL, $subscriptionTitle, $subscriptionCategory, $subscriptionPersonal, $title, $author, $url, $semantics, $encryptionID)
{
if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password'))
{
} else {
return new xmlrpcresp(new xmlrpcval('2', 'int'));
}
return new xmlrpcresp(new xmlrpcval('1', 'int'));
}
$s = new xmlrpc_server(array( "InstaDisc.subscriptionInfo" => array('function' => 'subscriptionInfo'),
"InstaDisc.getPasswordInfo" => array('function' => 'getPasswordInfo'),
"InstaDisc.sendFromUpdate" => array('function' => 'sendFromUpdate')
), 0);
$s->functions_parameters_type = 'phpvals';
$s->service();
?>
|