about summary refs log tree commit diff stats
path: root/series/trunk/xmlrpc.php
diff options
context:
space:
mode:
Diffstat (limited to 'series/trunk/xmlrpc.php')
-rw-r--r--series/trunk/xmlrpc.php44
1 files changed, 0 insertions, 44 deletions
diff --git a/series/trunk/xmlrpc.php b/series/trunk/xmlrpc.php deleted file mode 100644 index 01664ad..0000000 --- a/series/trunk/xmlrpc.php +++ /dev/null
@@ -1,44 +0,0 @@
1<?php
2
3/* InstaDisc Series - A Four Project */
4
5include('includes/instadisc.php');
6
7function subscriptionInfo($id)
8{
9 if (!instaDisc_subscriptionExists($id))
10 {
11 return new xmlrpcresp(new xmlrpcval('false', 'string'));
12 }
13
14 $sub = instaDisc_getSubscription($id);
15 return serialize(array( 'url' => $sub['url'],
16 'category' => $sub['category']
17 ));
18}
19
20function getPasswordInfo($id)
21{
22 if (!instaDisc_subscriptionExists($id))
23 {
24 return new xmlrpcresp(new xmlrpcval('false', 'string'));
25 }
26
27 $sub = instaDisc_getSubscription($id);
28 if ($sub['password'] == '')
29 {
30 return new xmlrpcresp(new xmlrpcval('false', 'string'));
31 } else {
32 $verID = rand(1,2147483647);
33
34 return new xmlrpcresp(new xmlrpcval(md5($sub['password'] . ':' . $verID) . ':' . $verID, 'string'));
35 }
36}
37
38$s = new xmlrpc_server(array( "InstaDisc.subscriptionInfo" => array('function' => 'subscriptionInfo'),
39 "InstaDisc.getPasswordInfo" => array('function' => 'getPasswordInfo')
40 ), 0);
41$s->functions_parameters_type = 'phpvals';
42$s->service();
43
44?>