From 7c9b5a3fe40a641af1cb6003b03b2352576a0c4b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 May 2017 15:57:40 +0300 Subject: move label stuff to Labels class fix some unresolved functions --- classes/api.php | 12 +-- classes/article.php | 16 ++-- classes/feeds.php | 10 +-- classes/labels.php | 162 ++++++++++++++++++++++++++++++++++++ classes/opml.php | 4 +- classes/pref/feeds.php | 4 +- classes/pref/labels.php | 8 +- include/functions.php | 3 +- include/labels.php | 161 ----------------------------------- include/rssfuncs.php | 4 +- plugins/auto_assign_labels/init.php | 2 +- plugins/import_export/init.php | 4 +- plugins/note/init.php | 2 +- tests/ApiTest.php | 6 +- 14 files changed, 199 insertions(+), 199 deletions(-) create mode 100644 classes/labels.php delete mode 100644 include/labels.php diff --git a/classes/api.php b/classes/api.php index cb035c86b..bffa2bf07 100644 --- a/classes/api.php +++ b/classes/api.php @@ -458,14 +458,14 @@ class API extends Handler { $checked = false; foreach ($article_labels as $al) { - if (feed_to_label_id($al[0]) == $line['id']) { + if (Labels::feed_to_label_id($al[0]) == $line['id']) { $checked = true; break; } } array_push($rv, array( - "id" => (int)label_to_feed_id($line['id']), + "id" => (int)Labels::label_to_feed_id($line['id']), "caption" => $line['caption'], "fg_color" => $line['fg_color'], "bg_color" => $line['bg_color'], @@ -481,8 +481,8 @@ class API extends Handler { $label_id = (int) $this->dbh->escape_string($_REQUEST['label_id']); $assign = (bool) ($this->dbh->escape_string($_REQUEST['assign']) == "true"); - $label = $this->dbh->escape_string(label_find_caption( - feed_to_label_id($label_id), $_SESSION["uid"])); + $label = $this->dbh->escape_string(Labels::find_caption( + Labels::feed_to_label_id($label_id), $_SESSION["uid"])); $num_updated = 0; @@ -491,9 +491,9 @@ class API extends Handler { foreach ($article_ids as $id) { if ($assign) - label_add_article($id, $label, $_SESSION["uid"]); + Labels::add_article($id, $label, $_SESSION["uid"]); else - label_remove_article($id, $label, $_SESSION["uid"]); + Labels::remove_article($id, $label, $_SESSION["uid"]); ++$num_updated; diff --git a/classes/article.php b/classes/article.php index 95f1704c9..45974a23c 100644 --- a/classes/article.php +++ b/classes/article.php @@ -154,7 +154,7 @@ class Article extends Handler_Protected { if (count($labels) != 0) { foreach ($labels as $label) { - label_add_article($ref_id, trim($label), $owner_uid); + Labels::add_article($ref_id, trim($label), $owner_uid); } } @@ -179,7 +179,7 @@ class Article extends Handler_Protected { if (count($labels) != 0) { foreach ($labels as $label) { - label_add_article($ref_id, trim($label), $owner_uid); + Labels::add_article($ref_id, trim($label), $owner_uid); } } @@ -344,7 +344,7 @@ class Article extends Handler_Protected { $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"])); $label_id = $this->dbh->escape_string($_REQUEST["lid"]); - $label = $this->dbh->escape_string(label_find_caption($label_id, + $label = $this->dbh->escape_string(Labels::find_caption($label_id, $_SESSION["uid"])); $reply["info-for-headlines"] = array(); @@ -354,9 +354,9 @@ class Article extends Handler_Protected { foreach ($ids as $id) { if ($assign) - label_add_article($id, $label, $_SESSION["uid"]); + Labels::add_article($id, $label, $_SESSION["uid"]); else - label_remove_article($id, $label, $_SESSION["uid"]); + Labels::remove_article($id, $label, $_SESSION["uid"]); $labels = $this->get_article_labels($id, $_SESSION["uid"]); @@ -955,16 +955,16 @@ class Article extends Handler_Protected { ORDER BY caption"); while ($line = db_fetch_assoc($result)) { - $rk = array(label_to_feed_id($line["label_id"]), + $rk = array(Labels::label_to_feed_id($line["label_id"]), $line["caption"], $line["fg_color"], $line["bg_color"]); array_push($rv, $rk); } if (count($rv) > 0) - label_update_cache($owner_uid, $id, $rv); + Labels::update_cache($owner_uid, $id, $rv); else - label_update_cache($owner_uid, $id, array("no-labels" => 1)); + Labels::update_cache($owner_uid, $id, array("no-labels" => 1)); return $rv; } diff --git a/classes/feeds.php b/classes/feeds.php index 740c7df43..6c85bbf31 100755 --- a/classes/feeds.php +++ b/classes/feeds.php @@ -870,7 +870,7 @@ class Feeds extends Handler_Protected { $result = false; if ($feed < LABEL_BASE_INDEX) { - $label_feed = feed_to_label_id($feed); + $label_feed = Labels::feed_to_label_id($feed); $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE id = '$label_feed' AND owner_uid = " . $_SESSION['uid']); } else if (!$cat_view && is_numeric($feed) && $feed > 0) { @@ -1354,7 +1354,7 @@ class Feeds extends Handler_Protected { } else if ($feed < LABEL_BASE_INDEX) { // label - $label_id = feed_to_label_id($feed); + $label_id = Labels::feed_to_label_id($feed); db_query("UPDATE ttrss_user_entries SET unread = false, last_read = NOW() WHERE ref_id IN @@ -1435,7 +1435,7 @@ class Feeds extends Handler_Protected { } else if ($feed < LABEL_BASE_INDEX) { - $label_id = feed_to_label_id($feed); + $label_id = Labels::feed_to_label_id($feed); return Feeds::getLabelUnread($label_id, $owner_uid); @@ -1608,7 +1608,7 @@ class Feeds extends Handler_Protected { } else if ($id == -6) { return __("Recently read"); } else if ($id < LABEL_BASE_INDEX) { - $label_id = feed_to_label_id($id); + $label_id = Labels::feed_to_label_id($id); $result = db_query("SELECT caption FROM ttrss_labels2 WHERE id = '$label_id'"); if (db_num_rows($result) == 1) { return db_fetch_result($result, 0, "caption"); @@ -1931,7 +1931,7 @@ class Feeds extends Handler_Protected { $query_strategy_part = "true"; $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; } else if ($feed <= LABEL_BASE_INDEX) { // labels - $label_id = feed_to_label_id($feed); + $label_id = Labels::feed_to_label_id($feed); $query_strategy_part = "label_id = '$label_id' AND ttrss_labels2.id = ttrss_user_labels2.label_id AND diff --git a/classes/labels.php b/classes/labels.php new file mode 100644 index 000000000..2ca623a32 --- /dev/null +++ b/classes/labels.php @@ -0,0 +1,162 @@ +dbh->escape_string($attrs->getNamedItem('label-fg-color')->nodeValue); $bg_color = $this->dbh->escape_string($attrs->getNamedItem('label-bg-color')->nodeValue); - if (!label_find_id($label_name, $_SESSION['uid'])) { + if (!Labels::find_id($label_name, $_SESSION['uid'])) { $this->opml_notice(T_sprintf("Adding label %s", htmlspecialchars($label_name))); - label_create($label_name, $fg_color, $bg_color, $owner_uid); + Labels::create($label_name, $fg_color, $bg_color, $owner_uid); } else { $this->opml_notice(T_sprintf("Duplicate label: %s", htmlspecialchars($label_name))); } diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index c12e76f6b..f1eea93f7 100755 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -171,7 +171,7 @@ class Pref_Feeds extends Handler_Protected { while ($line = $this->dbh->fetch_assoc($result)) { - $label_id = label_to_feed_id($line['id']); + $label_id = Labels::label_to_feed_id($line['id']); $feed = $this->feedlist_init_feed($label_id, false, 0); @@ -1806,7 +1806,7 @@ class Pref_Feeds extends Handler_Protected { CCache::remove($id, $owner_uid); } else { - label_remove(feed_to_label_id($id), $owner_uid); + Labels::remove(Labels::feed_to_label_id($id), $owner_uid); //CCache::remove($id, $owner_uid); don't think labels are cached } } diff --git a/classes/pref/labels.php b/classes/pref/labels.php index 26fbb02b1..5720a1f4b 100644 --- a/classes/pref/labels.php +++ b/classes/pref/labels.php @@ -136,7 +136,7 @@ class Pref_Labels extends Handler_Protected { AND owner_uid = " . $_SESSION["uid"]); } - $caption = $this->dbh->escape_string(label_find_caption($id, $_SESSION["uid"])); + $caption = $this->dbh->escape_string(Labels::find_caption($id, $_SESSION["uid"])); /* Remove cached data */ @@ -156,7 +156,7 @@ class Pref_Labels extends Handler_Protected { fg_color = '', bg_color = '' WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]); - $caption = $this->dbh->escape_string(label_find_caption($id, $_SESSION["uid"])); + $caption = $this->dbh->escape_string(Labels::find_caption($id, $_SESSION["uid"])); /* Remove cached data */ @@ -216,7 +216,7 @@ class Pref_Labels extends Handler_Protected { $ids = explode(",", $this->dbh->escape_string($_REQUEST["ids"])); foreach ($ids as $id) { - label_remove($id, $_SESSION["uid"]); + Labels::remove($id, $_SESSION["uid"]); } } @@ -227,7 +227,7 @@ class Pref_Labels extends Handler_Protected { if ($caption) { - if (label_create($caption)) { + if (Labels::create($caption)) { if (!$output) { print T_sprintf("Created label %s", htmlspecialchars($caption)); } diff --git a/include/functions.php b/include/functions.php index 1d52bc62e..58989d131 100644 --- a/include/functions.php +++ b/include/functions.php @@ -134,7 +134,6 @@ require_once 'db-prefs.php'; require_once 'version.php'; - require_once 'labels.php'; require_once 'controls.php'; define('SELF_USER_AGENT', 'Tiny Tiny RSS/' . VERSION . ' (http://tt-rss.org/)'); @@ -1169,7 +1168,7 @@ while ($line = db_fetch_assoc($result)) { - $id = label_to_feed_id($line["id"]); + $id = Labels::label_to_feed_id($line["id"]); $cv = array("id" => $id, "counter" => (int) $line["unread"], diff --git a/include/labels.php b/include/labels.php deleted file mode 100644 index f39f092db..000000000 --- a/include/labels.php +++ /dev/null @@ -1,161 +0,0 @@ - $formatted_note, "raw_length" => mb_strlen($note))); diff --git a/tests/ApiTest.php b/tests/ApiTest.php index 1f52d44a9..24f474e51 100644 --- a/tests/ApiTest.php +++ b/tests/ApiTest.php @@ -211,7 +211,7 @@ final class ApiTest extends TestCase { public function testLabels() { // create label - label_create('Test', '', '', 1); + Labels::create('Test', '', '', 1); $this->testLogin(); $ret = $this->apiCall([], "getLabels"); @@ -219,7 +219,7 @@ final class ApiTest extends TestCase { $this->assertEquals('Test', $ret['content'][0]['caption']); $label_feed_id = $ret['content'][0]['id']; - $label_id = feed_to_label_id($label_feed_id); + $label_id = Labels::feed_to_label_id($label_feed_id); $this->assertLessThan(0, $label_feed_id); $this->assertGreaterThan(0, $label_id); @@ -246,7 +246,7 @@ final class ApiTest extends TestCase { // clean up and check - label_remove($label_id, 1); + Labels::remove($label_id, 1); $ret = $this->apiCall([], "getLabels"); $this->assertEmpty($ret['content']); -- cgit v1.2.3