From f5834cbf384bc295362f0d664195ee1726def10d Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 21 Aug 2008 13:38:05 +0000 Subject: Update: Added VerID bounce to Library Refs #44 --- update/library/trunk/instadisc.php | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) (limited to 'update/library/trunk/instadisc.php') diff --git a/update/library/trunk/instadisc.php b/update/library/trunk/instadisc.php index 8a17da0..cfb6473 100644 --- a/update/library/trunk/instadisc.php +++ b/update/library/trunk/instadisc.php @@ -14,7 +14,7 @@ $idusActivationKey = array(); $idusEncryptionKey = array(); $instaDisc_subCount = 0; -function instaDisc_sendItem($id, $title, $author, $url, $semantics) +function instaDisc_sendItem($id, $title, $author, $url, $semantics, $encryptionID = 0) { global $idusUsername, $idusPassword, $idusCentralServer, $idusSubscriptionURI; @@ -29,13 +29,23 @@ function instaDisc_sendItem($id, $title, $author, $url, $semantics) new xmlrpcval($author, 'string'), new xmlrpcval($url, 'string'), new xmlrpcval(serialize($semantics), 'string'), - new xmlrpcval('0', 'int'))); - $client->send($msg); + new xmlrpcval($encryptionID, 'int'))); + $resp = $client->send($msg); + + if ($resp->value() == 2) + { + return instaDisc_sendItem($id, $title, $author, $url, $semantics, $encryptionID); + } else if ($resp->value() == 0) + { + return TRUE; + } else { + return FALSE; + } } function instaDisc_sendEncrypted($id, $title, $author, $url, $semantics) { - global $idusUsername, $idusPassword, $idusCentralServer, $idusSubscriptionURI, $idusEncryptionKey; + global $idusEncryptionKey; $encID = 0; while ($encID == 0) @@ -70,19 +80,7 @@ function instaDisc_sendEncrypted($id, $title, $author, $url, $semantics) mcrypt_module_close($td); - $verID = rand(1,2147483647); - - $client = new xmlrpc_client($idusCentralServer[$id]); - $msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($idusUsername[$id], 'string'), - new xmlrpcval(md5($idusUsername[$id] . ":" . md5($idusPassword[$id]) . ":" . $verID), 'string'), - new xmlrpcval($verID, 'int'), - new xmlrpcval($idusSubscriptionURI[$id], 'string'), - new xmlrpcval($title, 'string'), - new xmlrpcval($author, 'string'), - new xmlrpcval($url, 'string'), - new xmlrpcval(serialize($semantics), 'string'), - new xmlrpcval($encID, 'int'))); - $client->send($msg); + return instaDisc_sendItem($id, $title, $author, $url, $semantics, $encID); } function instaDisc_addSubscription($username, $password, $central, $uri, $title, $category, $key = '', $enc = '') -- cgit 1.4.1