]> git.wh0rd.org Git - tt-rss.git/commitdiff
prevent article filters from modifying article GUID; add separate plugin_data field...
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 21 Feb 2013 18:24:06 +0000 (22:24 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 21 Feb 2013 18:24:06 +0000 (22:24 +0400)
include/rssfuncs.php
plugins/af_buttersafe/init.php
plugins/af_explosm/init.php
plugins/af_gocomics/init.php
plugins/af_pennyarcade/init.php
plugins/af_unburn/init.php

index a2e2a08c4030259cbe44b1b92303c9cefadc3f04..5cb22f8b855359a11791b7ccad10985558619bf3 100644 (file)
                                        _debug("update_rss_feed: applying plugin filters..");
                                }
 
+                               // Todo unify with id checking below
+                               $result = db_query($link, "SELECT plugin_data FROM ttrss_entries
+                                       WHERE guid = '".db_escape_string($entry_guid)."'");
+
+                               if (db_num_rows($result) != 0) {
+                                       $entry_plugin_data = db_fetch_result($result, 0, "plugin_data");
+                               } else {
+                                       $entry_plugin_data = "";
+                               }
+
                                $article = array("owner_uid" => $owner_uid, // read only
-                                       "guid" => $entry_guid,
+                                       "guid" => $entry_guid, // read only
                                        "title" => $entry_title,
                                        "content" => $entry_content,
                                        "link" => $entry_link,
                                        "tags" => $entry_tags,
+                                       "plugin_data" => $entry_plugin_data,
                                        "author" => $entry_author);
 
                                foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) {
                                }
 
                                $entry_tags = $article["tags"];
-                               $entry_guid = db_escape_string($article["guid"]);
+                               $entry_guid = db_escape_string($entry_guid);
                                $entry_content = db_escape_string($article["content"], false);
                                $entry_title = db_escape_string($article["title"]);
                                $entry_author = db_escape_string($article["author"]);
                                $entry_link = db_escape_string($article["link"]);
+                               $entry_plugin_data = db_escape_string($article["plugin_data"]);
+
+                               if ($debug_enabled) {
+                                       _debug("update_rss_feed: plugin data: $entry_plugin_data");
+                               }
 
                                if ($cache_images && is_writable(CACHE_DIR . '/images'))
                                        $entry_content = cache_images($entry_content, $site_url, $debug_enabled);
                                                        date_entered,
                                                        comments,
                                                        num_comments,
+                                                       plugin_data,
                                                        author)
                                                VALUES
                                                        ('$entry_title',
                                                        NOW(),
                                                        '$entry_comments',
                                                        '$num_comments',
+                                                       '$entry_plugin_data',
                                                        '$entry_author')");
 
                                        $article_labels = array();
                                // now it should exist, if not - bad luck then
 
                                $result = db_query($link, "SELECT
-                                               id,content_hash,no_orig_date,title,
+                                               id,content_hash,no_orig_date,title,plugin_data,
                                                ".SUBSTRING_FOR_DATE."(date_updated,1,19) as date_updated,
                                                ".SUBSTRING_FOR_DATE."(updated,1,19) as updated,
                                                num_comments
                                        $orig_num_comments = db_fetch_result($result, 0, "num_comments");
                                        $orig_date_updated = strtotime(db_fetch_result($result,
                                                0, "date_updated"));
+                                       $orig_plugin_data = db_fetch_result($result, 0, "plugin_data");
 
                                        $ref_id = db_fetch_result($result, 0, "id");
                                        $entry_ref_id = $ref_id;
                                                $update_insignificant = true;
                                        }
 
+                                       if ($entry_plugin_data != $orig_plugin_data) {
+                                               $post_needs_update = true;
+                                               $update_insignificant = true;
+                                       }
+
                                        if ($content_hash != $orig_content_hash) {
                                                $post_needs_update = true;
                                                $update_insignificant = false;
                                                        SET title = '$entry_title', content = '$entry_content',
                                                                content_hash = '$content_hash',
                                                                updated = '$entry_timestamp_fmt',
-                                                               num_comments = '$num_comments'
+                                                               num_comments = '$num_comments',
+                                                               plugin_data = '$entry_plugin_data'
                                                        WHERE id = '$ref_id'");
 
                                                if (!$update_insignificant) {
index 2b42795012bdf497c43df94d5f107a5705221b8b..0715be3aaa930addf623cf4fda515dbeba621675 100644 (file)
@@ -21,7 +21,7 @@ class Af_Buttersafe extends Plugin {
                $owner_uid = $article["owner_uid"];
 
                if (strpos($article["guid"], "buttersafe.com") !== FALSE &&
-                               strpos($article["guid"], "buttersafe,$owner_uid:") === FALSE) {
+                               strpos($article["plugin_data"], "buttersafe,$owner_uid:") === FALSE) {
 
                        $doc = new DOMDocument();
                        @$doc->loadHTML(fetch_file_contents($article["link"]));
@@ -48,7 +48,7 @@ class Af_Buttersafe extends Plugin {
                                }
                        }
 
-                       $article["guid"] = "buttersafe,$owner_uid:" . $article["guid"];
+                       $article["plugin_data"] = "buttersafe,$owner_uid:" . $article["plugin_data"];
                }
 
                return $article;
index cd6efb2eecb9a96e9dcbc524e337f8182562b166..b848bb0fbfbd08e1b97a39f4060c8affc9ca879c 100644 (file)
@@ -21,7 +21,7 @@ class Af_Explosm extends Plugin {
                $owner_uid = $article["owner_uid"];
 
                if (strpos($article["link"], "explosm.net/comics") !== FALSE &&
-                               strpos($article["guid"], "explosm,$owner_uid:") === FALSE) {
+                               strpos($article["plugin_data"], "explosm,$owner_uid:") === FALSE) {
 
                        $doc = new DOMDocument();
                        @$doc->loadHTML(fetch_file_contents($article["link"]));
@@ -48,7 +48,7 @@ class Af_Explosm extends Plugin {
                                }
                        }
 
-                       $article["guid"] = "explosm,$owner_uid:" . $article["guid"];
+                       $article["plugin_data"] = "explosm,$owner_uid:" . $article["plugin_data"];
                }
 
                return $article;
index 2a5d3ba3c872734d1c0753d87cc289cbdcd71777..829dda9999b8f35d04df81b2c35d44a0dc27aead 100644 (file)
@@ -20,7 +20,7 @@ class Af_GoComics extends Plugin {
        function hook_article_filter($article) {
                $owner_uid = $article["owner_uid"];
 
-               if (strpos($article["guid"], "gocomics.com") !== FALSE && strpos($article["guid"], "gocomics,$owner_uid:") === FALSE) {
+               if (strpos($article["guid"], "gocomics.com") !== FALSE && strpos($article["plugin_data"], "gocomics,$owner_uid:") === FALSE) {
                        $doc = new DOMDocument();
                        @$doc->loadHTML(fetch_file_contents($article["link"]));
 
@@ -47,7 +47,7 @@ class Af_GoComics extends Plugin {
                                }
                        }
 
-                       $article["guid"] = "gocomics,$owner_uid:" . $article["guid"];
+                       $article["plugin_data"] = "gocomics,$owner_uid:" . $article["plugin_data"];
                }
 
                return $article;
index e8c623f5eb156008e5c4446504a88cacbbec3762..5ac629914c5f7bd195b0a1688115a75b30897be3 100644 (file)
@@ -21,7 +21,7 @@ class Af_PennyArcade extends Plugin {
                $owner_uid = $article["owner_uid"];
 
                if (strpos($article["link"], "penny-arcade.com") !== FALSE && strpos($article["title"], "Comic:") !== FALSE &&
-                               strpos($article["guid"], "pennyarcade,$owner_uid:") === FALSE) {
+                               strpos($article["plugin_data"], "pennyarcade,$owner_uid:") === FALSE) {
 
                        $doc = new DOMDocument();
                        @$doc->loadHTML(fetch_file_contents($article["link"]));
@@ -48,7 +48,7 @@ class Af_PennyArcade extends Plugin {
                                }
                        }
 
-                       $article["guid"] = "pennyarcade,$owner_uid:" . $article["guid"];
+                       $article["plugin_data"] = "pennyarcade,$owner_uid:" . $article["plugin_data"];
                }
 
                return $article;
index d2bcf75d04b2eddf51c7d385885baeb2a99f48ed..d09e2ad3615ec07ceda44d9b9db9c5c34a1b9035 100644 (file)
@@ -26,7 +26,7 @@ class Af_Unburn extends Plugin {
                if ((strpos($article["link"], "feedproxy.google.com") !== FALSE ||
                                strpos($article["link"], "/~r/") !== FALSE ||
                                strpos($article["link"], "feedsportal.com") !== FALSE)  &&
-                       strpos($article["guid"], "unburn,$owner_uid:") === FALSE) {
+                       strpos($article["plugin_data"], "unburn,$owner_uid:") === FALSE) {
 
                        $ch = curl_init($article["link"]);
                        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
@@ -62,7 +62,7 @@ class Af_Unburn extends Plugin {
 
                                $real_url = preg_replace("/\?$/", "", $real_url);
 
-                               $article["guid"] = "unburn,$owner_uid:" . $article["guid"];
+                               $article["plugin_data"] = "unburn,$owner_uid:" . $article["plugin_data"];
                                $article["link"] = $real_url;
                        }
                }