From 3a933f22b1c0107e240327c9f9ceae1881920d6a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 21 Nov 2005 08:38:28 +0100 Subject: [PATCH] filters are now actually applied separately for each user --- functions.php | 21 ++++++++++++++------- schema/ttrss_schema_mysql.sql | 2 ++ schema/ttrss_schema_pgsql.sql | 2 ++ 3 files changed, 18 insertions(+), 7 deletions(-) diff --git a/functions.php b/functions.php index 0d4ee78d..f1c56e98 100644 --- a/functions.php +++ b/functions.php @@ -293,12 +293,6 @@ // base post entry does not exist, create it - error_reporting(0); - if (is_filtered($entry_title, $entry_content, $filters)) { - continue; - } - error_reporting (E_ERROR | E_WARNING | E_PARSE); - $result = db_query($link, "INSERT INTO ttrss_entries (title, @@ -350,6 +344,12 @@ $dupcheck_qpart = ""; } + error_reporting(0); + if (is_filtered($entry_title, $entry_content, $entry_link, $filters)) { + continue; + } + error_reporting (E_ERROR | E_WARNING | E_PARSE); + $result = db_query($link, "SELECT ref_id FROM ttrss_user_entries WHERE ref_id = '$ref_id' AND owner_uid = '$owner_uid' @@ -470,7 +470,7 @@ print ""; } - function is_filtered($title, $content, $filters) { + function is_filtered($title, $content, $link, $filters) { if ($filters["title"]) { foreach ($filters["title"] as $title_filter) { @@ -493,6 +493,13 @@ } } + if ($filters["link"]) { + foreach ($filters["link"] as $link_filter) { + if (preg_match("/$link_filter/i", $link)) + return true; + } + } + return false; } diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 3b1a18b4..e2b9c705 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -77,6 +77,8 @@ insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title' insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content'); insert into ttrss_filter_types (id,name,description) values (3, 'both', 'Title or Content'); +insert into ttrss_filter_types (id,name,description) values (4, 'link', + 'Link'); create table ttrss_filters (id integer not null primary key auto_increment, owner_uid integer not null, diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index a6c19bed..f7461d90 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -78,6 +78,8 @@ insert into ttrss_filter_types (id,name,description) values (1, 'title', 'Title' insert into ttrss_filter_types (id,name,description) values (2, 'content', 'Content'); insert into ttrss_filter_types (id,name,description) values (3, 'both', 'Title or Content'); +insert into ttrss_filter_types (id,name,description) values (4, 'link', + 'Link'); create table ttrss_filters (id serial not null primary key, owner_uid integer not null references ttrss_users(id) on delete cascade,