]> git.wh0rd.org - tt-rss.git/blobdiff - classes/rpc.php
pngcrush.sh
[tt-rss.git] / classes / rpc.php
old mode 100644 (file)
new mode 100755 (executable)
index 3a20db6..bd4337f
@@ -2,63 +2,68 @@
 class RPC extends Handler_Protected {
 
        function csrf_ignore($method) {
-               $csrf_ignored = array("sanitycheck", "completelabels");
+               $csrf_ignored = array("sanitycheck", "completelabels", "saveprofile");
 
                return array_search($method, $csrf_ignored) !== false;
        }
 
        function setprofile() {
-               $id = db_escape_string($this->link, $_REQUEST["id"]);
+               $_SESSION["profile"] = clean($_REQUEST["id"]);
 
-               $_SESSION["profile"] = $id;
-               $_SESSION["prefs_cache"] = array();
+               // default value
+               if (!$_SESSION["profile"]) $_SESSION["profile"] = null;
        }
 
        function remprofiles() {
-               $ids = explode(",", db_escape_string($this->link, trim($_REQUEST["ids"])));
+               $ids = explode(",", trim(clean($_REQUEST["ids"])));
 
                foreach ($ids as $id) {
                        if ($_SESSION["profile"] != $id) {
-                               db_query($this->link, "DELETE FROM ttrss_settings_profiles WHERE id = '$id' AND
-                                                       owner_uid = " . $_SESSION["uid"]);
+                               $sth = $this->pdo->prepare("DELETE FROM ttrss_settings_profiles WHERE id = ? AND
+                                                       owner_uid = ?");
+                               $sth->execute([$id, $_SESSION['uid']]);
                        }
                }
        }
 
        // Silent
        function addprofile() {
-               $title = db_escape_string($this->link, trim($_REQUEST["title"]));
+               $title = trim(clean($_REQUEST["title"]));
+
                if ($title) {
-                       db_query($this->link, "BEGIN");
+                       $this->pdo->beginTransaction();
+
+                       $sth = $this->pdo->prepare("SELECT id FROM ttrss_settings_profiles
+                               WHERE title = ? AND owner_uid = ?");
+                       $sth->execute([$title, $_SESSION['uid']]);
 
-                       $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
-                               WHERE title = '$title' AND owner_uid = " . $_SESSION["uid"]);
+                       if (!$sth->fetch()) {
 
-                       if (db_num_rows($result) == 0) {
+                               $sth = $this->pdo->prepare("INSERT INTO ttrss_settings_profiles (title, owner_uid)
+                                                       VALUES (?, ?)");
 
-                               db_query($this->link, "INSERT INTO ttrss_settings_profiles (title, owner_uid)
-                                                       VALUES ('$title', ".$_SESSION["uid"] .")");
+                               $sth->execute([$title, $_SESSION['uid']]);
 
-                               $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles WHERE
-                                       title = '$title'");
+                               $sth = $this->pdo->prepare("SELECT id FROM ttrss_settings_profiles WHERE
+                                       title = ? AND owner_uid = ?");
+                               $sth->execute([$title, $_SESSION['uid']]);
 
-                               if (db_num_rows($result) != 0) {
-                                       $profile_id = db_fetch_result($result, 0, "id");
+                               if ($row = $sth->fetch()) {
+                                       $profile_id = $row['id'];
 
                                        if ($profile_id) {
-                                               initialize_user_prefs($this->link, $_SESSION["uid"], $profile_id);
+                                               initialize_user_prefs($_SESSION["uid"], $profile_id);
                                        }
                                }
                        }
 
-                       db_query($this->link, "COMMIT");
+                       $this->pdo->commit();
                }
        }
 
-       // Silent
        function saveprofile() {
-               $id = db_escape_string($this->link, $_REQUEST["id"]);
-               $title = db_escape_string($this->link, trim($_REQUEST["value"]));
+               $id = clean($_REQUEST["id"]);
+               $title = trim(clean($_REQUEST["value"]));
 
                if ($id == 0) {
                        print __("Default profile");
@@ -66,663 +71,375 @@ class RPC extends Handler_Protected {
                }
 
                if ($title) {
-                       db_query($this->link, "BEGIN");
-
-                       $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
-                               WHERE title = '$title' AND owner_uid =" . $_SESSION["uid"]);
-
-                       if (db_num_rows($result) == 0) {
-                               db_query($this->link, "UPDATE ttrss_settings_profiles
-                                                       SET title = '$title' WHERE id = '$id' AND
-                                                       owner_uid = " . $_SESSION["uid"]);
-                               print $title;
-                       } else {
-                               $result = db_query($this->link, "SELECT title FROM ttrss_settings_profiles
-                                                       WHERE id = '$id' AND owner_uid =" . $_SESSION["uid"]);
-                               print db_fetch_result($result, 0, "title");
-                       }
+                       $sth = $this->pdo->prepare("UPDATE ttrss_settings_profiles
+                               SET title = ? WHERE id = ? AND
+                                       owner_uid = ?");
 
-                       db_query($this->link, "COMMIT");
+                       $sth->execute([$title, $id, $_SESSION['uid']]);
+                       print $title;
                }
        }
 
        // Silent
        function remarchive() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
+               $ids = explode(",", clean($_REQUEST["ids"]));
 
-               foreach ($ids as $id) {
-                       $result = db_query($this->link, "DELETE FROM ttrss_archived_feeds WHERE
-               (SELECT COUNT(*) FROM ttrss_user_entries
-                                                       WHERE orig_feed_id = '$id') = 0 AND
-               id = '$id' AND owner_uid = ".$_SESSION["uid"]);
+               $sth = $this->pdo->prepare("DELETE FROM ttrss_archived_feeds WHERE
+                               (SELECT COUNT(*) FROM ttrss_user_entries
+                                       WHERE orig_feed_id = :id) = 0 AND
+                                               id = :id AND owner_uid = :uid");
 
-                       $rc = db_affected_rows($this->link, $result);
+               foreach ($ids as $id) {
+                       $sth->execute([":id" => $id, ":uid" => $_SESSION['uid']]);
                }
        }
 
        function addfeed() {
-               $feed = db_escape_string($this->link, $_REQUEST['feed']);
-               $cat = db_escape_string($this->link, $_REQUEST['cat']);
-               $login = db_escape_string($this->link, $_REQUEST['login']);
-               $pass = db_escape_string($this->link, $_REQUEST['pass']);
+               $feed = clean($_REQUEST['feed']);
+               $cat = clean($_REQUEST['cat']);
+               $need_auth = isset($_REQUEST['need_auth']);
+               $login = $need_auth ? clean($_REQUEST['login']) : '';
+               $pass = $need_auth ? trim(clean($_REQUEST['pass'])) : '';
 
-               $rc = subscribe_to_feed($this->link, $feed, $cat, $login, $pass);
+               $rc = Feeds::subscribe_to_feed($feed, $cat, $login, $pass);
 
                print json_encode(array("result" => $rc));
        }
 
        function togglepref() {
-               $key = db_escape_string($this->link, $_REQUEST["key"]);
-               set_pref($this->link, $key, !get_pref($this->link, $key));
-               $value = get_pref($this->link, $key);
+               $key = clean($_REQUEST["key"]);
+               set_pref($key, !get_pref($key));
+               $value = get_pref($key);
 
                print json_encode(array("param" =>$key, "value" => $value));
        }
 
        function setpref() {
                // set_pref escapes input, so no need to double escape it here
-               $key = $_REQUEST['key'];
-               $value = str_replace("\n", "<br/>", $_REQUEST['value']);
+               $key = clean($_REQUEST['key']);
+               $value = $_REQUEST['value'];
 
-               set_pref($this->link, $key, $value, $_SESSION['uid'], $key != 'USER_STYLESHEET');
+               set_pref($key, $value, false, $key != 'USER_STYLESHEET');
 
                print json_encode(array("param" =>$key, "value" => $value));
        }
 
        function mark() {
-               $mark = $_REQUEST["mark"];
-               $id = db_escape_string($this->link, $_REQUEST["id"]);
-
-               if ($mark == "1") {
-                       $mark = "true";
-               } else {
-                       $mark = "false";
-               }
+               $mark = clean($_REQUEST["mark"]);
+               $id = clean($_REQUEST["id"]);
 
-               $result = db_query($this->link, "UPDATE ttrss_user_entries SET marked = $mark,
+               $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET marked = ?,
                                        last_marked = NOW()
-                                       WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
+                                       WHERE ref_id = ? AND owner_uid = ?");
+
+               $sth->execute([$mark, $id, $_SESSION['uid']]);
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function delete() {
-               $ids = db_escape_string($this->link, $_REQUEST["ids"]);
+               $ids = explode(",", clean($_REQUEST["ids"]));
+               $ids_qmarks = arr_qmarks($ids);
 
-               $result = db_query($this->link, "DELETE FROM ttrss_user_entries
-               WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
+               $sth = $this->pdo->prepare("DELETE FROM ttrss_user_entries
+                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
+               $sth->execute(array_merge($ids, [$_SESSION['uid']]));
 
-               purge_orphans($this->link);
+               Article::purge_orphans();
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function unarchive() {
-               $ids = explode(",", $_REQUEST["ids"]);
+               $ids = explode(",", clean($_REQUEST["ids"]));
 
                foreach ($ids as $id) {
-                       $id = db_escape_string($this->link, trim($id));
-                       db_query($this->link, "BEGIN");
+                       $this->pdo->beginTransaction();
 
-                       $result = db_query($this->link, "SELECT feed_url,site_url,title FROM ttrss_archived_feeds
-                               WHERE id = (SELECT orig_feed_id FROM ttrss_user_entries WHERE ref_id = $id
-                               AND owner_uid = ".$_SESSION["uid"].")");
+                       $sth = $this->pdo->prepare("SELECT feed_url,site_url,title FROM ttrss_archived_feeds
+                               WHERE id = (SELECT orig_feed_id FROM ttrss_user_entries WHERE ref_id = :id
+                               AND owner_uid = :uid) AND owner_uid = :uid");
+                       $sth->execute([":uid" => $_SESSION['uid'], ":id" => $id]);
 
-                       if (db_num_rows($result) != 0) {
-                               $feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
-                               $site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
-                               $title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
+                       if ($row = $sth->fetch()) {
+                               $feed_url = $row['feed_url'];
+                               $site_url = $row['site_url'];
+                               $title = $row['title'];
 
-                               $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
-                                       AND owner_uid = " .$_SESSION["uid"]);
-
-                               if (db_num_rows($result) == 0) {
+                               $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE feed_url = ?
+                                       AND owner_uid = ?");
+                               $sth->execute([$feed_url, $_SESSION['uid']]);
 
+                               if ($row = $sth->fetch()) {
+                                       $feed_id = $row["id"];
+                               } else {
                                        if (!$title) $title = '[Unknown]';
 
-                                       $result = db_query($this->link,
-                                               "INSERT INTO ttrss_feeds
+                                       $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
                                                        (owner_uid,feed_url,site_url,title,cat_id,auth_login,auth_pass,update_method)
-                                                       VALUES (".$_SESSION["uid"].",
-                                                       '$feed_url',
-                                                       '$site_url',
-                                                       '$title',
-                                                       NULL, '', '', 0)");
-
-                                       $result = db_query($this->link,
-                                               "SELECT id FROM ttrss_feeds WHERE feed_url = '$feed_url'
-                                               AND owner_uid = ".$_SESSION["uid"]);
-
-                                       if (db_num_rows($result) != 0) {
-                                               $feed_id = db_fetch_result($result, 0, "id");
-                                       }
+                                                       VALUES (?, ?, ?, ?, NULL, '', '', 0)");
+                                       $sth->execute([$_SESSION['uid'], $feed_url, $site_url, $title]);
 
-                               } else {
-                                       $feed_id = db_fetch_result($result, 0, "id");
+                                       $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE feed_url = ?
+                                               AND owner_uid = ?");
+                                       $sth->execute([$feed_url, $_SESSION['uid']]);
+
+                                       if ($row = $sth->fetch()) {
+                                               $feed_id = $row['id'];
+                                       }
                                }
 
                                if ($feed_id) {
-                                       $result = db_query($this->link, "UPDATE ttrss_user_entries
-                                               SET feed_id = '$feed_id', orig_feed_id = NULL
-                                               WHERE ref_id = $id AND owner_uid = " . $_SESSION["uid"]);
+                                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries
+                                               SET feed_id = ?, orig_feed_id = NULL
+                                               WHERE ref_id = ? AND owner_uid = ?");
+                                       $sth->execute([$feed_id, $id, $_SESSION['uid']]);
                                }
                        }
 
-                       db_query($this->link, "COMMIT");
+                       $this->pdo->commit();
                }
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function archive() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
+               $ids = explode(",", clean($_REQUEST["ids"]));
 
                foreach ($ids as $id) {
-                       $this->archive_article($this->link, $id, $_SESSION["uid"]);
+                       $this->archive_article($id, $_SESSION["uid"]);
                }
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
-       private function archive_article($link, $id, $owner_uid) {
-               db_query($link, "BEGIN");
+       private function archive_article($id, $owner_uid) {
+               $this->pdo->beginTransaction();
 
-               $result = db_query($link, "SELECT feed_id FROM ttrss_user_entries
-                       WHERE ref_id = '$id' AND owner_uid = $owner_uid");
+               if (!$owner_uid) $owner_uid = $_SESSION['uid'];
 
-               if (db_num_rows($result) != 0) {
+               $sth = $this->pdo->prepare("SELECT feed_id FROM ttrss_user_entries
+                       WHERE ref_id = ? AND owner_uid = ?");
+               $sth->execute([$id, $owner_uid]);
+
+               if ($row = $sth->fetch()) {
 
                        /* prepare the archived table */
 
-                       $feed_id = (int) db_fetch_result($result, 0, "feed_id");
+                       $feed_id = (int) $row['feed_id'];
 
                        if ($feed_id) {
-                               $result = db_query($link, "SELECT id FROM ttrss_archived_feeds
-                                       WHERE id = '$feed_id'");
+                               $sth = $this->pdo->prepare("SELECT id FROM ttrss_archived_feeds
+                                       WHERE id = ? AND owner_uid = ?");
+                               $sth->execute([$feed_id, $owner_uid]);
+
+                               if ($row = $sth->fetch()) {
+                                       $new_feed_id = $row['id'];
+                               } else {
+                                       $row = $this->pdo->query("SELECT MAX(id) AS id FROM ttrss_archived_feeds")->fetch();
+                                       $new_feed_id = (int)$row['id'] + 1;
 
-                               if (db_num_rows($result) == 0) {
-                                       db_query($link, "INSERT INTO ttrss_archived_feeds
+                                       $sth = $this->pdo->prepare("INSERT INTO ttrss_archived_feeds
                                                (id, owner_uid, title, feed_url, site_url)
-                                       SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
-                                       WHERE id = '$feed_id'");
+                                                       SELECT ?, owner_uid, title, feed_url, site_url from ttrss_feeds
+                                                               WHERE id = ?");
+
+                                       $sth->execute([$new_feed_id, $feed_id]);
                                }
 
-                               db_query($link, "UPDATE ttrss_user_entries
-                                       SET orig_feed_id = feed_id, feed_id = NULL
-                                       WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
+                               $sth = $this->pdo->prepare("UPDATE ttrss_user_entries
+                                       SET orig_feed_id = ?, feed_id = NULL
+                                       WHERE ref_id = ? AND owner_uid = ?");
+                               $sth->execute([$new_feed_id, $id, $owner_uid]);
                        }
                }
 
-               db_query($link, "COMMIT");
+               $this->pdo->commit();
        }
 
        function publ() {
-               $pub = $_REQUEST["pub"];
-               $id = db_escape_string($this->link, $_REQUEST["id"]);
-               $note = trim(strip_tags(db_escape_string($this->link, $_REQUEST["note"])));
-
-               if ($pub == "1") {
-                       $pub = "true";
-               } else {
-                       $pub = "false";
-               }
-
-               $result = db_query($this->link, "UPDATE ttrss_user_entries SET
-                       published = $pub, last_published = NOW()
-                       WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]);
+               $pub = clean($_REQUEST["pub"]);
+               $id = clean($_REQUEST["id"]);
 
-               $pubsub_result = false;
+               $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                       published = ?, last_published = NOW()
+                       WHERE ref_id = ? AND owner_uid = ?");
 
-               if (PUBSUBHUBBUB_HUB) {
-                       $rss_link = get_self_url_prefix() .
-                               "/public.php?op=rss&id=-2&key=" .
-                               get_feed_access_key($this->link, -2, false);
+               $sth->execute([$pub, $id, $_SESSION['uid']]);
 
-                       $p = new Publisher(PUBSUBHUBBUB_HUB);
-
-                       $pubsub_result = $p->publish_update($rss_link);
-               }
-
-               print json_encode(array("message" => "UPDATE_COUNTERS",
-                       "pubsub_result" => $pubsub_result));
+               print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function getAllCounters() {
-               $last_article_id = (int) $_REQUEST["last_article_id"];
+               $last_article_id = (int) clean($_REQUEST["last_article_id"]);
 
                $reply = array();
 
-               if ($seq) $reply['seq'] = $seq;
+               if (!empty($_REQUEST['seq'])) $reply['seq'] = (int) $_REQUEST['seq'];
 
-               if ($last_article_id != getLastArticleId($this->link)) {
-                       $reply['counters'] = getAllCounters($this->link);
+               if ($last_article_id != Article::getLastArticleId()) {
+                       $reply['counters'] = Counters::getAllCounters();
                }
 
-               $reply['runtime-info'] = make_runtime_info($this->link);
+               $reply['runtime-info'] = make_runtime_info();
 
                print json_encode($reply);
        }
 
        /* GET["cmode"] = 0 - mark as read, 1 - as unread, 2 - toggle */
        function catchupSelected() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $cmode = sprintf("%d", $_REQUEST["cmode"]);
+               $ids = explode(",", clean($_REQUEST["ids"]));
+               $cmode = sprintf("%d", clean($_REQUEST["cmode"]));
 
-               catchupArticlesById($this->link, $ids, $cmode);
+               Article::catchupArticlesById($ids, $cmode);
 
-               print json_encode(array("message" => "UPDATE_COUNTERS"));
+               print json_encode(array("message" => "UPDATE_COUNTERS", "ids" => $ids));
        }
 
        function markSelected() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $cmode = sprintf("%d", $_REQUEST["cmode"]);
+               $ids = explode(",", clean($_REQUEST["ids"]));
+               $cmode = (int)clean($_REQUEST["cmode"]);
 
-               $this->markArticlesById($this->link, $ids, $cmode);
+               $this->markArticlesById($ids, $cmode);
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function publishSelected() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $cmode = sprintf("%d", $_REQUEST["cmode"]);
+               $ids = explode(",", clean($_REQUEST["ids"]));
+               $cmode = (int)clean($_REQUEST["cmode"]);
 
-               $this->publishArticlesById($this->link, $ids, $cmode);
+               $this->publishArticlesById($ids, $cmode);
 
                print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function sanityCheck() {
-               $_SESSION["hasAudio"] = $_REQUEST["hasAudio"] === "true";
-               $_SESSION["hasSandbox"] = $_REQUEST["hasSandbox"] === "true";
+               $_SESSION["hasAudio"] = clean($_REQUEST["hasAudio"]) === "true";
+               $_SESSION["hasSandbox"] = clean($_REQUEST["hasSandbox"]) === "true";
+               $_SESSION["hasMp3"] = clean($_REQUEST["hasMp3"]) === "true";
+               $_SESSION["clientTzOffset"] = clean($_REQUEST["clientTzOffset"]);
 
                $reply = array();
 
-               $reply['error'] = sanity_check($this->link);
+               $reply['error'] = sanity_check();
 
                if ($reply['error']['code'] == 0) {
-                       $reply['init-params'] = make_init_params($this->link);
-                       $reply['runtime-info'] = make_runtime_info($this->link);
+                       $reply['init-params'] = make_init_params();
+                       $reply['runtime-info'] = make_runtime_info(true);
                }
 
                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("tags_str" => array("id" => $id,
-                               "content" => $tags_str, "content_full" => $tags_str_full)));
-       }
-
-       function regenOPMLKey() {
-               $this->update_feed_access_key($this->link, 'OPML:Publish',
-               false, $_SESSION["uid"]);
-
-               $new_link = Opml::opml_publish_url($this->link);
-
-               print json_encode(array("link" => $new_link));
-       }
-
        function completeLabels() {
-               $search = db_escape_string($this->link, $_REQUEST["search"]);
+               $search = clean($_REQUEST["search"]);
 
-               $result = db_query($this->link, "SELECT DISTINCT caption FROM
+               $sth = $this->pdo->prepare("SELECT DISTINCT caption FROM
                                ttrss_labels2
-                               WHERE owner_uid = '".$_SESSION["uid"]."' AND
-                               LOWER(caption) LIKE LOWER('$search%') ORDER BY caption
+                               WHERE owner_uid = ? AND
+                               LOWER(caption) LIKE LOWER(?) ORDER BY caption
                                LIMIT 5");
+               $sth->execute([$_SESSION['uid'], "%$search%"]);
 
                print "<ul>";
-               while ($line = db_fetch_assoc($result)) {
+               while ($line = $sth->fetch()) {
                        print "<li>" . $line["caption"] . "</li>";
                }
                print "</ul>";
        }
 
-
-       function completeTags() {
-               $search = db_escape_string($this->link, $_REQUEST["search"]);
-
-               $result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags
-                               WHERE owner_uid = '".$_SESSION["uid"]."' AND
-                               tag_name LIKE '$search%' ORDER BY tag_name
-                               LIMIT 10");
-
-               print "<ul>";
-               while ($line = db_fetch_assoc($result)) {
-                       print "<li>" . $line["tag_name"] . "</li>";
-               }
-               print "</ul>";
-       }
-
-       function purge() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $days = sprintf("%d", $_REQUEST["days"]);
-
-               foreach ($ids as $id) {
-
-                       $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
-                               id = '$id' AND owner_uid = ".$_SESSION["uid"]);
-
-                       if (db_num_rows($result) == 1) {
-                               purge_feed($this->link, $id, $days);
-                       }
-               }
-       }
-
-       function getArticles() {
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $articles = array();
-
-               foreach ($ids as $id) {
-                       if ($id) {
-                               array_push($articles, format_article($this->link, $id, 0, false));
-                       }
-               }
-
-               print json_encode($articles);
-       }
-
-       function checkDate() {
-               $date = db_escape_string($this->link, $_REQUEST["date"]);
-               $date_parsed = strtotime($date);
-
-               print json_encode(array("result" => (bool)$date_parsed,
-                       "date" => date("c", $date_parsed)));
-       }
-
-       function assigntolabel() {
-               return $this->labelops(true);
-       }
-
-       function removefromlabel() {
-               return $this->labelops(false);
-       }
-
-       function labelops($assign) {
-               $reply = array();
-
-               $ids = explode(",", db_escape_string($this->link, $_REQUEST["ids"]));
-               $label_id = db_escape_string($this->link, $_REQUEST["lid"]);
-
-               $label = db_escape_string($this->link, label_find_caption($this->link, $label_id,
-               $_SESSION["uid"]));
-
-               $reply["info-for-headlines"] = array();
-
-               if ($label) {
-
-                       foreach ($ids as $id) {
-
-                               if ($assign)
-                                       label_add_article($this->link, $id, $label, $_SESSION["uid"]);
-                               else
-                                       label_remove_article($this->link, $id, $label, $_SESSION["uid"]);
-
-                               $labels = get_article_labels($this->link, $id, $_SESSION["uid"]);
-
-                               array_push($reply["info-for-headlines"],
-                               array("id" => $id, "labels" => format_article_labels($labels, $id)));
-
-                       }
-               }
-
-               $reply["message"] = "UPDATE_COUNTERS";
-
-               print json_encode($reply);
-       }
-
        function updateFeedBrowser() {
-               $search = db_escape_string($this->link, $_REQUEST["search"]);
-               $limit = db_escape_string($this->link, $_REQUEST["limit"]);
-               $mode = (int) db_escape_string($this->link, $_REQUEST["mode"]);
+               if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
+
+               $search = clean($_REQUEST["search"]);
+               $limit = clean($_REQUEST["limit"]);
+               $mode = (int) clean($_REQUEST["mode"]);
 
                require_once "feedbrowser.php";
 
                print json_encode(array("content" =>
-                       make_feed_browser($this->link, $search, $limit, $mode),
+                       make_feed_browser($search, $limit, $mode),
                                "mode" => $mode));
        }
 
        // Silent
        function massSubscribe() {
 
-               $payload = json_decode($_REQUEST["payload"], false);
-               $mode = $_REQUEST["mode"];
+               $payload = json_decode(clean($_REQUEST["payload"]), false);
+               $mode = clean($_REQUEST["mode"]);
 
                if (!$payload || !is_array($payload)) return;
 
                if ($mode == 1) {
                        foreach ($payload as $feed) {
 
-                               $title = db_escape_string($this->link, $feed[0]);
-                               $feed_url = db_escape_string($this->link, $feed[1]);
+                               $title = $feed[0];
+                               $feed_url = $feed[1];
 
-                               $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
-                                       feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
+                               $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
+                                       feed_url = ? AND owner_uid = ?");
+                               $sth->execute([$feed_url, $_SESSION['uid']]);
 
-                               if (db_num_rows($result) == 0) {
-                                       $result = db_query($this->link, "INSERT INTO ttrss_feeds
+                               if (!$sth->fetch()) {
+                                       $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
                                                                        (owner_uid,feed_url,title,cat_id,site_url)
-                                                                       VALUES ('".$_SESSION["uid"]."',
-                                                                       '$feed_url', '$title', NULL, '')");
+                                                                       VALUES (?, ?, ?, NULL, '')");
+
+                                       $sth->execute([$_SESSION['uid'], $feed_url, $title]);
                                }
                        }
                } else if ($mode == 2) {
                        // feed archive
                        foreach ($payload as $id) {
-                               $result = db_query($this->link, "SELECT * FROM ttrss_archived_feeds
-                                       WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
-
-                               if (db_num_rows($result) != 0) {
-                                       $site_url = db_escape_string($this->link, db_fetch_result($result, 0, "site_url"));
-                                       $feed_url = db_escape_string($this->link, db_fetch_result($result, 0, "feed_url"));
-                                       $title = db_escape_string($this->link, db_fetch_result($result, 0, "title"));
-
-                                       $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
-                                               feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
-
-                                       if (db_num_rows($result) == 0) {
-                                               $result = db_query($this->link, "INSERT INTO ttrss_feeds
-                                                                               (owner_uid,feed_url,title,cat_id,site_url)
-                                                                       VALUES ('$id','".$_SESSION["uid"]."',
-                                                                       '$feed_url', '$title', NULL, '$site_url')");
-                                       }
-                               }
-                       }
-               }
-       }
-
-       function catchupFeed() {
-               $feed_id = db_escape_string($this->link, $_REQUEST['feed_id']);
-               $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
-               $mode = db_escape_string($this->link, $_REQUEST['mode']);
-
-               catchup_feed($this->link, $feed_id, $is_cat, false, false, $mode);
-
-               print json_encode(array("message" => "UPDATE_COUNTERS"));
-       }
-
-       function quickAddCat() {
-               $cat = db_escape_string($this->link, $_REQUEST["cat"]);
-
-               add_feed_category($this->link, $cat);
-
-               $result = db_query($this->link, "SELECT id FROM ttrss_feed_categories WHERE
-                       title = '$cat' AND owner_uid = " . $_SESSION["uid"]);
-
-               if (db_num_rows($result) == 1) {
-                       $id = db_fetch_result($result, 0, "id");
-               } else {
-                       $id = 0;
-               }
-
-               print_feed_cat_select($this->link, "cat_id", $id);
-       }
-
-       function regenFeedKey() {
-               $feed_id = db_escape_string($this->link, $_REQUEST['id']);
-               $is_cat = db_escape_string($this->link, $_REQUEST['is_cat']) == "true";
-
-               $new_key = $this->update_feed_access_key($this->link, $feed_id, $is_cat);
-
-               print json_encode(array("link" => $new_key));
-       }
-
-       // Silent
-       function clearKeys() {
-               db_query($this->link, "DELETE FROM ttrss_access_keys WHERE
-                       owner_uid = " . $_SESSION["uid"]);
-       }
-
-       // Silent
-       function clearArticleKeys() {
-               db_query($this->link, "UPDATE ttrss_user_entries SET uuid = '' WHERE
-                       owner_uid = " . $_SESSION["uid"]);
-
-               return;
-       }
-
-       function verifyRegexp() {
-               $reg_exp = $_REQUEST["reg_exp"];
-
-               $status = @preg_match("/$reg_exp/i", "TEST") !== false;
-
-               print json_encode(array("status" => $status));
-       }
-
-       /* function buttonPlugin() {
-               $pclass = "button_" . basename($_REQUEST['plugin']);
-               $method = $_REQUEST['plugin_method'];
+                               $sth = $this->pdo->prepare("SELECT * FROM ttrss_archived_feeds
+                                       WHERE id = ? AND owner_uid = ?");
+                               $sth->execute([$id, $_SESSION['uid']]);
 
-               if (class_exists($pclass)) {
-                       $plugin = new $pclass($this->link);
-                       if (method_exists($plugin, $method)) {
-                               return $plugin->$method();
-                       }
-               }
-       } */
-
-       function genHash() {
-               $hash = sha1(uniqid(rand(), true));
-
-               print json_encode(array("hash" => $hash));
-       }
-
-       function batchAddFeeds() {
-               $cat_id = db_escape_string($this->link, $_REQUEST['cat']);
-               $feeds = explode("\n", db_escape_string($this->link, $_REQUEST['feeds']));
-               $login = db_escape_string($this->link, $_REQUEST['login']);
-               $pass = db_escape_string($this->link, $_REQUEST['pass']);
-
-               foreach ($feeds as $feed) {
-                       $feed = trim($feed);
+                               if ($row = $sth->fetch()) {
+                                       $site_url = $row['site_url'];
+                                       $feed_url = $row['feed_url'];
+                                       $title = $row['title'];
 
-                       if (validate_feed_url($feed)) {
+                                       $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
+                                               feed_url = ? AND owner_uid = ?");
+                                       $sth->execute([$feed_url, $_SESSION['uid']]);
 
-                               db_query($this->link, "BEGIN");
+                                       if (!$sth->fetch()) {
+                                               $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
+                                                               (owner_uid,feed_url,title,cat_id,site_url)
+                                                                       VALUES (?, ?, ?, NULL, ?)");
 
-                               if ($cat_id == "0" || !$cat_id) {
-                                       $cat_qpart = "NULL";
-                               } else {
-                                       $cat_qpart = "'$cat_id'";
-                               }
-
-                               $result = db_query($this->link,
-                                       "SELECT id FROM ttrss_feeds
-                                       WHERE feed_url = '$feed' AND owner_uid = ".$_SESSION["uid"]);
-
-                               if (db_num_rows($result) == 0) {
-                                       $result = db_query($this->link,
-                                               "INSERT INTO ttrss_feeds
-                                                       (owner_uid,feed_url,title,cat_id,auth_login,auth_pass,update_method)
-                                               VALUES ('".$_SESSION["uid"]."', '$feed',
-                                                       '[Unknown]', $cat_qpart, '$login', '$pass', 0)");
+                                               $sth->execute([$_SESSION['uid'], $feed_url, $title, $site_url]);
+                                       }
                                }
-
-                               db_query($this->link, "COMMIT");
                        }
                }
        }
 
-       function setScore() {
-               $ids = db_escape_string($this->link, $_REQUEST['id']);
-               $score = (int)db_escape_string($this->link, $_REQUEST['score']);
+       function catchupFeed() {
+               $feed_id = clean($_REQUEST['feed_id']);
+               $is_cat = clean($_REQUEST['is_cat']) == "true";
+               $mode = clean($_REQUEST['mode']);
+               $search_query = clean($_REQUEST['search_query']);
+               $search_lang = clean($_REQUEST['search_lang']);
 
-               db_query($this->link, "UPDATE ttrss_user_entries SET
-                       score = '$score' WHERE ref_id IN ($ids) AND owner_uid = " . $_SESSION["uid"]);
+               Feeds::catchup_feed($feed_id, $is_cat, false, $mode, [$search_query, $search_lang]);
 
-               print json_encode(array("id" => $id,
-                       "score_pic" => get_score_pic($score)));
+               print json_encode(array("message" => "UPDATE_COUNTERS"));
        }
 
        function setpanelmode() {
-               $wide = (int) $_REQUEST["wide"];
+               $wide = (int) clean($_REQUEST["wide"]);
 
                setcookie("ttrss_widescreen", $wide,
-                       time() + SESSION_COOKIE_LIFETIME);
+                       time() + COOKIE_LIFETIME_LONG);
 
                print json_encode(array("wide" => $wide));
        }
 
-       function updaterandomfeed() {
+       static function updaterandomfeed_real() {
+
                // Test if the feed need a update (update interval exceded).
                if (DB_TYPE == "pgsql") {
                        $update_limit_qpart = "AND ((
@@ -753,31 +470,37 @@ class RPC extends Handler_Protected {
 
                $random_qpart = sql_random_function();
 
+               $pdo = Db::pdo();
+
+               // we could be invoked from public.php with no active session
+               if ($_SESSION["uid"]) {
+                       $owner_check_qpart = "AND ttrss_feeds.owner_uid = ".$pdo->quote($_SESSION["uid"]);
+               } else {
+                       $owner_check_qpart = "";
+               }
+
                // We search for feed needing update.
-               $result = db_query($this->link, "SELECT ttrss_feeds.feed_url,ttrss_feeds.id
+               $res = $pdo->query("SELECT ttrss_feeds.feed_url,ttrss_feeds.id
                        FROM
                                ttrss_feeds, ttrss_users, ttrss_user_prefs
                        WHERE
                                ttrss_feeds.owner_uid = ttrss_users.id
                                AND ttrss_users.id = ttrss_user_prefs.owner_uid
                                AND ttrss_user_prefs.pref_name = 'DEFAULT_UPDATE_INTERVAL'
-                               AND ttrss_feeds.owner_uid = ".$_SESSION["uid"]."
-                               $update_limit_qpart $updstart_thresh_qpart
+                               $owner_check_qpart
+                               $update_limit_qpart
+                               $updstart_thresh_qpart
                        ORDER BY $random_qpart LIMIT 30");
 
-               $feed_id = -1;
-
-               require_once "rssfuncs.php";
-
                $num_updated = 0;
 
                $tstart = time();
 
-               while ($line = db_fetch_assoc($result)) {
+               while ($line = $res->fetch()) {
                        $feed_id = $line["id"];
 
                        if (time() - $tstart < ini_get("max_execution_time") * 0.7) {
-                               update_rss_feed($this->link, $feed_id, true);
+                               RSSUtils::update_rss_feed($feed_id, true);
                                ++$num_updated;
                        } else {
                                break;
@@ -785,8 +508,8 @@ class RPC extends Handler_Protected {
                }
 
                // Purge orphans and cleanup tags
-               purge_orphans($this->link);
-               cleanup_tags($this->link, 14, 50000);
+               Article::purge_orphans();
+               //cleanup_tags(14, 50000);
 
                if ($num_updated > 0) {
                        print json_encode(array("message" => "UPDATE_COUNTERS",
@@ -797,98 +520,62 @@ class RPC extends Handler_Protected {
 
        }
 
-       function update_feed_access_key($link, $feed_id, $is_cat, $owner_uid = false) {
-               if (!$owner_uid) $owner_uid = $_SESSION["uid"];
-
-               $sql_is_cat = bool_to_sql_bool($is_cat);
-
-               $result = db_query($link, "SELECT access_key FROM ttrss_access_keys
-                       WHERE feed_id = '$feed_id'      AND is_cat = $sql_is_cat
-                       AND owner_uid = " . $owner_uid);
-
-               if (db_num_rows($result) == 1) {
-                       $key = db_escape_string($this->link, sha1(uniqid(rand(), true)));
-
-                       db_query($link, "UPDATE ttrss_access_keys SET access_key = '$key'
-                               WHERE feed_id = '$feed_id' AND is_cat = $sql_is_cat
-                               AND owner_uid = " . $owner_uid);
-
-                       return $key;
-
-               } else {
-                       return get_feed_access_key($link, $feed_id, $is_cat, $owner_uid);
-               }
+       function updaterandomfeed() {
+               RPC::updaterandomfeed_real();
        }
 
-       private function markArticlesById($link, $ids, $cmode) {
-
-               $tmp_ids = array();
-
-               foreach ($ids as $id) {
-                       array_push($tmp_ids, "ref_id = '$id'");
-               }
+       private function markArticlesById($ids, $cmode) {
 
-               $ids_qpart = join(" OR ", $tmp_ids);
+               $ids_qmarks = arr_qmarks($ids);
 
                if ($cmode == 0) {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       marked = false, last_marked = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               marked = false, last_marked = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                } else if ($cmode == 1) {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       marked = true, last_marked = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               marked = true, last_marked = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                } else {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       marked = NOT marked,last_marked = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               marked = NOT marked,last_marked = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                }
-       }
 
-       private function publishArticlesById($link, $ids, $cmode) {
-
-               $tmp_ids = array();
+               $sth->execute(array_merge($ids, [$_SESSION['uid']]));
+       }
 
-               foreach ($ids as $id) {
-                       array_push($tmp_ids, "ref_id = '$id'");
-               }
+       private function publishArticlesById($ids, $cmode) {
 
-               $ids_qpart = join(" OR ", $tmp_ids);
+               $ids_qmarks = arr_qmarks($ids);
 
                if ($cmode == 0) {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       published = false,last_published = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               published = false, last_published = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                } else if ($cmode == 1) {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       published = true,last_published = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               published = true, last_published = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                } else {
-                       db_query($link, "UPDATE ttrss_user_entries SET
-                       published = NOT published,last_published = NOW()
-                       WHERE ($ids_qpart) AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("UPDATE ttrss_user_entries SET
+                               published = NOT published,last_published = NOW()
+                                       WHERE ref_id IN ($ids_qmarks) AND owner_uid = ?");
                }
 
-               if (PUBSUBHUBBUB_HUB) {
-                       $rss_link = get_self_url_prefix() .
-                               "/public.php?op=rss&id=-2&key=" .
-                               get_feed_access_key($link, -2, false);
-
-                       $p = new Publisher(PUBSUBHUBBUB_HUB);
-
-                       $pubsub_result = $p->publish_update($rss_link);
-               }
+               $sth->execute(array_merge($ids, [$_SESSION['uid']]));
        }
 
        function getlinktitlebyid() {
-               $id = db_escape_string($this->link, $_REQUEST['id']);
+               $id = clean($_REQUEST['id']);
 
-               $result = db_query($this->link, "SELECT link, title FROM ttrss_entries, ttrss_user_entries
-                       WHERE ref_id = '$id' AND ref_id = id AND owner_uid = ". $_SESSION["uid"]);
+               $sth = $this->pdo->prepare("SELECT link, title FROM ttrss_entries, ttrss_user_entries
+                       WHERE ref_id = ? AND ref_id = id AND owner_uid = ?");
+               $sth->execute([$id, $_SESSION['uid']]);
 
-               if (db_num_rows($result) != 0) {
-                       $link = db_fetch_result($result, 0, "link");
-                       $title = db_fetch_result($result, 0, "title");
+               if ($row = $sth->fetch()) {
+                       $link = $row['link'];
+                       $title = $row['title'];
 
                        echo json_encode(array("link" => $link, "title" => $title));
                } else {
@@ -896,32 +583,20 @@ class RPC extends Handler_Protected {
                }
        }
 
-       function cdmArticlePreview() {
-               $id = db_escape_string($this->link, $_REQUEST['id']);
-
-               $result = db_query($this->link, "SELECT link,
-                       ttrss_entries.title, content, feed_url
-                       FROM
-                       ttrss_entries, ttrss_user_entries
-                               LEFT JOIN ttrss_feeds ON (ttrss_user_entries.feed_id = ttrss_feeds.id)
-                       WHERE ref_id = '$id' AND ref_id = ttrss_entries.id AND
-                               ttrss_user_entries.owner_uid = ". $_SESSION["uid"]);
-
-               if (db_num_rows($result) != 0) {
-                       $link = db_fetch_result($result, 0, "link");
-                       $title = db_fetch_result($result, 0, "title");
-                       $feed_url = db_fetch_result($result, 0, "feed_url");
-
-                       $content = sanitize($this->link,
-                               db_fetch_result($result, 0, "content"), false, false, $feed_url);
+       function log() {
+               $msg = clean($_REQUEST['msg']);
+               $file = basename(clean($_REQUEST['file']));
+               $line = (int) clean($_REQUEST['line']);
+               $context = clean($_REQUEST['context']);
 
-                       print "<div class='content'>".$content."</content>";
+               if ($msg) {
+                       Logger::get()->log_error(E_USER_WARNING,
+                               $msg, 'client-js:' . $file, $line, $context);
 
+                       echo json_encode(array("message" => "HOST_ERROR_LOGGED"));
                } else {
-                       print "Article not found.";
+                       echo json_encode(array("error" => "MESSAGE_NOT_FOUND"));
                }
 
        }
-
-}
-?>
+}
\ No newline at end of file