From 8eb592ec71c27c740fb3339e1e2a413fce6613f7 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 29 Nov 2010 14:11:54 +0300 Subject: assign/remove to label rpc: use JSON --- modules/backend-rpc.php | 58 +++++++++++-------------------------------------- 1 file changed, 13 insertions(+), 45 deletions(-) (limited to 'modules/backend-rpc.php') diff --git a/modules/backend-rpc.php b/modules/backend-rpc.php index 59faee7b3..e027ff39d 100644 --- a/modules/backend-rpc.php +++ b/modules/backend-rpc.php @@ -533,41 +533,10 @@ return; } - if ($subop == "removeFromLabel") { - - $ids = explode(",", db_escape_string($_REQUEST["ids"])); - $label_id = db_escape_string($_REQUEST["lid"]); - - $label = db_escape_string(label_find_caption($link, $label_id, - $_SESSION["uid"])); - - print ""; - print ""; - - if ($label) { - - foreach ($ids as $id) { - label_remove_article($link, $id, $label, $_SESSION["uid"]); - - print ""; - - } - } - - print ""; - - print "UPDATE_COUNTERS"; - print ""; - - return; - } + if ($subop == "assignToLabel" || $subop == "removeFromLabel") { + header("Content-Type: text/plain"); - if ($subop == "assignToLabel") { + $reply = array(); $ids = split(",", db_escape_string($_REQUEST["ids"])); $label_id = db_escape_string($_REQUEST["lid"]); @@ -575,29 +544,28 @@ $label = db_escape_string(label_find_caption($link, $label_id, $_SESSION["uid"])); - print ""; - - print ""; + $reply["info-for-headlines"] = array(); if ($label) { foreach ($ids as $id) { - label_add_article($link, $id, $label, $_SESSION["uid"]); - print ""; + + array_push($reply["info-for-headlines"], + array("id" => $id, "labels" => format_article_labels($labels, $id))); } } - print ""; + $reply["message"] = "UPDATE_COUNTERS"; - print "UPDATE_COUNTERS"; - print ""; + print json_encode($reply); return; } -- cgit v1.2.3-54-g00ecf