rpc: move setArticleTags to article
This commit is contained in:
parent
195187c490
commit
5df8be5c0a
|
@ -185,7 +185,7 @@ class Article extends Handler_Protected {
|
||||||
$tags_str = join(", ", $tags);
|
$tags_str = join(", ", $tags);
|
||||||
|
|
||||||
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"id\" value=\"$param\">";
|
||||||
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"article\">";
|
||||||
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
|
print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"setArticleTags\">";
|
||||||
|
|
||||||
print "<table width='100%'><tr><td>";
|
print "<table width='100%'><tr><td>";
|
||||||
|
@ -220,4 +220,68 @@ class Article extends Handler_Protected {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function setArticleTags() {
|
||||||
|
|
||||||
|
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
||||||
|
|
||||||
|
$tags_str = db_escape_string($this->link, $_REQUEST["tags_str"]);
|
||||||
|
$tags = array_unique(trim_array(explode(",", $tags_str)));
|
||||||
|
|
||||||
|
db_query($this->link, "BEGIN");
|
||||||
|
|
||||||
|
$result = db_query($this->link, "SELECT int_id FROM ttrss_user_entries WHERE
|
||||||
|
ref_id = '$id' AND owner_uid = '".$_SESSION["uid"]."' LIMIT 1");
|
||||||
|
|
||||||
|
if (db_num_rows($result) == 1) {
|
||||||
|
|
||||||
|
$tags_to_cache = array();
|
||||||
|
|
||||||
|
$int_id = db_fetch_result($result, 0, "int_id");
|
||||||
|
|
||||||
|
db_query($this->link, "DELETE FROM ttrss_tags WHERE
|
||||||
|
post_int_id = $int_id AND owner_uid = '".$_SESSION["uid"]."'");
|
||||||
|
|
||||||
|
foreach ($tags as $tag) {
|
||||||
|
$tag = sanitize_tag($tag);
|
||||||
|
|
||||||
|
if (!tag_is_valid($tag)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (preg_match("/^[0-9]*$/", $tag)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// print "<!-- $id : $int_id : $tag -->";
|
||||||
|
|
||||||
|
if ($tag != '') {
|
||||||
|
db_query($this->link, "INSERT INTO ttrss_tags
|
||||||
|
(post_int_id, owner_uid, tag_name) VALUES ('$int_id', '".$_SESSION["uid"]."', '$tag')");
|
||||||
|
}
|
||||||
|
|
||||||
|
array_push($tags_to_cache, $tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* update tag cache */
|
||||||
|
|
||||||
|
sort($tags_to_cache);
|
||||||
|
$tags_str = join(",", $tags_to_cache);
|
||||||
|
|
||||||
|
db_query($this->link, "UPDATE ttrss_user_entries
|
||||||
|
SET tag_cache = '$tags_str' WHERE ref_id = '$id'
|
||||||
|
AND owner_uid = " . $_SESSION["uid"]);
|
||||||
|
}
|
||||||
|
|
||||||
|
db_query($this->link, "COMMIT");
|
||||||
|
|
||||||
|
$tags = get_article_tags($this->link, $id);
|
||||||
|
$tags_str = format_tags_string($tags, $id);
|
||||||
|
$tags_str_full = join(", ", $tags);
|
||||||
|
|
||||||
|
if (!$tags_str_full) $tags_str_full = __("no tags");
|
||||||
|
|
||||||
|
print json_encode(array("id" => (int)$id,
|
||||||
|
"content" => $tags_str, "content_full" => $tags_str_full));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -347,70 +347,6 @@ class RPC extends Handler_Protected {
|
||||||
print json_encode($reply);
|
print json_encode($reply);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setArticleTags() {
|
|
||||||
|
|
||||||
$id = db_escape_string($this->link, $_REQUEST["id"]);
|
|
||||||
|
|
||||||
$tags_str = db_escape_string($this->link, $_REQUEST["tags_str"]);
|
|
||||||
$tags = array_unique(trim_array(explode(",", $tags_str)));
|
|
||||||
|
|
||||||
db_query($this->link, "BEGIN");
|
|
||||||
|
|
||||||
$result = db_query($this->link, "SELECT int_id FROM ttrss_user_entries WHERE
|
|
||||||
ref_id = '$id' AND owner_uid = '".$_SESSION["uid"]."' LIMIT 1");
|
|
||||||
|
|
||||||
if (db_num_rows($result) == 1) {
|
|
||||||
|
|
||||||
$tags_to_cache = array();
|
|
||||||
|
|
||||||
$int_id = db_fetch_result($result, 0, "int_id");
|
|
||||||
|
|
||||||
db_query($this->link, "DELETE FROM ttrss_tags WHERE
|
|
||||||
post_int_id = $int_id AND owner_uid = '".$_SESSION["uid"]."'");
|
|
||||||
|
|
||||||
foreach ($tags as $tag) {
|
|
||||||
$tag = sanitize_tag($tag);
|
|
||||||
|
|
||||||
if (!tag_is_valid($tag)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (preg_match("/^[0-9]*$/", $tag)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// print "<!-- $id : $int_id : $tag -->";
|
|
||||||
|
|
||||||
if ($tag != '') {
|
|
||||||
db_query($this->link, "INSERT INTO ttrss_tags
|
|
||||||
(post_int_id, owner_uid, tag_name) VALUES ('$int_id', '".$_SESSION["uid"]."', '$tag')");
|
|
||||||
}
|
|
||||||
|
|
||||||
array_push($tags_to_cache, $tag);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* update tag cache */
|
|
||||||
|
|
||||||
sort($tags_to_cache);
|
|
||||||
$tags_str = join(",", $tags_to_cache);
|
|
||||||
|
|
||||||
db_query($this->link, "UPDATE ttrss_user_entries
|
|
||||||
SET tag_cache = '$tags_str' WHERE ref_id = '$id'
|
|
||||||
AND owner_uid = " . $_SESSION["uid"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
db_query($this->link, "COMMIT");
|
|
||||||
|
|
||||||
$tags = get_article_tags($this->link, $id);
|
|
||||||
$tags_str = format_tags_string($tags, $id);
|
|
||||||
$tags_str_full = join(", ", $tags);
|
|
||||||
|
|
||||||
if (!$tags_str_full) $tags_str_full = __("no tags");
|
|
||||||
|
|
||||||
print json_encode(array("id" => (int)$id,
|
|
||||||
"content" => $tags_str, "content_full" => $tags_str_full));
|
|
||||||
}
|
|
||||||
|
|
||||||
function completeLabels() {
|
function completeLabels() {
|
||||||
$search = db_escape_string($this->link, $_REQUEST["search"]);
|
$search = db_escape_string($this->link, $_REQUEST["search"]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue