From 0809065e077be405fec8db2cae2e569bb3efcc35 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 8 Jun 2007 08:01:42 +0100 Subject: mobile: add search --- mobile/functions.php | 298 +++++++++++++++------------------------------------ mobile/mobile.css | 3 + mobile/tt-rss.php | 2 + 3 files changed, 92 insertions(+), 211 deletions(-) (limited to 'mobile') diff --git a/mobile/functions.php b/mobile/functions.php index a8e3a099b..a9a4887d4 100644 --- a/mobile/functions.php +++ b/mobile/functions.php @@ -17,7 +17,9 @@ print "Feeds (View tags, "; } - + + print "Search, "; + print "Logout)"; print ""; @@ -300,6 +302,7 @@ if (!$view_mode) $view_mode = "Adaptive"; if (!$limit) $limit = 30; + if (!$feed) $feed = 0; if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) { @@ -344,227 +347,33 @@ } } } - - $search = db_escape_string($_GET["search"]); - $search_mode = db_escape_string($_GET["smode"]); - if ($search) { - $search_query_part = "(upper(ttrss_entries.title) LIKE upper('%$search%') - OR ttrss_entries.content LIKE '%$search%') AND"; - } else { - $search_query_part = ""; - } - $view_query_part = ""; + /// START ///////////////////////////////////////////////////////////////////////////////// - if ($view_mode == "Adaptive") { - if ($search) { - $view_query_part = " "; - } else if ($feed != -1) { - $unread = getFeedUnread($link, $feed); - if ($unread > 0) { - $view_query_part = " unread = true AND "; - } - } - } + $search = db_escape_string($_GET["query"]); + $search_mode = db_escape_string($_GET["search_mode"]); + $match_on = db_escape_string($_GET["match_on"]); - if ($view_mode == "Starred") { - $view_query_part = " marked = true AND "; + if (!$match_on) { + $match_on = "both"; } - if ($view_mode == "Unread") { - $view_query_part = " unread = true AND "; - } - - if ($limit && $limit != "All") { - $limit_query_part = "LIMIT " . $limit; - } - - $vfeed_query_part = ""; + $real_offset = $offset * $limit; - // override query strategy and enable feed display when searching globally - if ($search && $search_mode == "All feeds") { - $query_strategy_part = "ttrss_entries.id > 0"; - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; - } else if (preg_match("/^-?[0-9][0-9]*$/", $feed) == false) { - $query_strategy_part = "ttrss_entries.id > 0"; - $vfeed_query_part = "(SELECT title FROM ttrss_feeds WHERE - id = feed_id) as feed_title,"; - } else if ($feed >= 0 && $search && $search_mode == "This category") { + if ($_GET["debug"]) $timing_info = print_checkpoint("H0", $timing_info); - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; + $qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view, + $search, $search_mode, $match_on, false, $real_offset); - $tmp_result = db_query($link, "SELECT id - FROM ttrss_feeds WHERE cat_id = - (SELECT cat_id FROM ttrss_feeds WHERE id = '$feed') AND id != '$feed'"); - - $cat_siblings = array(); - - if (db_num_rows($tmp_result) > 0) { - while ($p = db_fetch_assoc($tmp_result)) { - array_push($cat_siblings, "feed_id = " . $p["id"]); - } - - $query_strategy_part = sprintf("(feed_id = %d OR %s)", - $feed, implode(" OR ", $cat_siblings)); - - } else { - $query_strategy_part = "ttrss_entries.id > 0"; - } - - } else if ($feed >= 0) { - - if ($cat_view) { - - if ($feed > 0) { - $query_strategy_part = "cat_id = '$feed'"; - } else { - $query_strategy_part = "cat_id IS NULL"; - } + if ($_GET["debug"]) $timing_info = print_checkpoint("H1", $timing_info); - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; - - } else { - $tmp_result = db_query($link, "SELECT id - FROM ttrss_feeds WHERE parent_feed = '$feed' - ORDER BY cat_id,title"); - - $parent_ids = array(); - - if (db_num_rows($tmp_result) > 0) { - while ($p = db_fetch_assoc($tmp_result)) { - array_push($parent_ids, "feed_id = " . $p["id"]); - } - - $query_strategy_part = sprintf("(feed_id = %d OR %s)", - $feed, implode(" OR ", $parent_ids)); - - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; - } else { - $query_strategy_part = "feed_id = '$feed'"; - } - } - } else if ($feed == -1) { // starred virtual feed - $query_strategy_part = "marked = true"; - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; - } else if ($feed <= -10) { // labels - $label_id = -$feed - 11; - - $tmp_result = db_query($link, "SELECT sql_exp FROM ttrss_labels - WHERE id = '$label_id'"); + $result = $qfh_ret[0]; + $feed_title = $qfh_ret[1]; + $feed_site_url = $qfh_ret[2]; + $last_error = $qfh_ret[3]; - $query_strategy_part = db_fetch_result($tmp_result, 0, "sql_exp"); - - $vfeed_query_part = "ttrss_feeds.title AS feed_title,"; - } else { - $query_strategy_part = "id > 0"; // dumb - } - - $order_by = "updated DESC"; - -// if ($feed < -10) { -// $order_by = "feed_id,updated DESC"; -// } - - $feed_title = ""; - - if ($search && $search_mode == "All feeds") { - $feed_title = "Global search results ($search)"; - } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) { - $feed_title = "Feed search results ($search, $feed)"; - } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) { - $feed_title = $feed; - } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) { - - if ($cat_view) { - - if ($feed != 0) { - $result = db_query($link, "SELECT title FROM ttrss_feed_categories - WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]); - $feed_title = db_fetch_result($result, 0, "title"); - } else { - $feed_title = "Uncategorized"; - } - } else { - - $result = db_query($link, "SELECT title,site_url,last_error FROM ttrss_feeds - WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]); - - $feed_title = db_fetch_result($result, 0, "title"); - $feed_site_url = db_fetch_result($result, 0, "site_url"); - $last_error = db_fetch_result($result, 0, "last_error"); - - } - - } else if ($feed == -1) { - $feed_title = "Starred articles"; - } else if ($feed < -10) { - $label_id = -$feed - 11; - $result = db_query($link, "SELECT description FROM ttrss_labels - WHERE id = '$label_id'"); - $feed_title = db_fetch_result($result, 0, "description"); - } else { - $feed_title = "?"; - } - - if ($feed < -10) error_reporting (0); - - if (preg_match("/^-?[0-9][0-9]*$/", $feed) != false) { - - if ($feed >= 0) { - $feed_kind = "Feeds"; - } else { - $feed_kind = "Labels"; - } - - $query = "SELECT - ttrss_entries.id,ttrss_entries.title, - SUBSTRING(updated,1,16) as updated, - unread,feed_id,marked,link,last_read, - SUBSTRING(last_read,1,19) as last_read_noms, - $vfeed_query_part - SUBSTRING(updated,1,19) as updated_noms - FROM - ttrss_entries,ttrss_user_entries,ttrss_feeds - WHERE - ttrss_feeds.hidden = false AND - ttrss_user_entries.feed_id = ttrss_feeds.id AND - ttrss_user_entries.ref_id = ttrss_entries.id AND - ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND - $search_query_part - $view_query_part - $query_strategy_part ORDER BY $order_by - $limit_query_part"; - - $result = db_query($link, $query); - - if ($_GET["debug"]) print $query; - - } else { - // browsing by tag - - $feed_kind = "Tags"; - - $result = db_query($link, "SELECT - ttrss_entries.id as id,title, - SUBSTRING(updated,1,16) as updated, - unread,feed_id, - marked,link,last_read, - SUBSTRING(last_read,1,19) as last_read_noms, - $vfeed_query_part - $content_query_part - SUBSTRING(updated,1,19) as updated_noms - FROM - ttrss_entries,ttrss_user_entries,ttrss_tags - WHERE - ref_id = ttrss_entries.id AND - ttrss_user_entries.owner_uid = '".$_SESSION["uid"]."' AND - post_int_id = int_id AND tag_name = '$feed' AND - $view_query_part - $search_query_part - $query_strategy_part ORDER BY $order_by - $limit_query_part"); - } + /// STOP ////////////////////////////////////////////////////////////////////////////////// if (!$result) { print "
@@ -579,10 +388,12 @@ print "$feed_title ("; print "Back, "; + print "Search, "; print "Update"; # print "Mark as read: "; # print "Page, "; # print "Feed"; + print ")"; print "
"; @@ -776,4 +587,69 @@ print ""; } + function render_search_form($link, $active_feed_id = false, $is_cat = false) { + + print "
"; + + print "Search + (Go back)
"; + + print "
"; + + print ""; + print ""; + print ""; + + print ""; + + print ""; + + print "
".__('Search:').""; + print "
".__('Where:').""; + + print "
".__('Match on:').""; + + $search_fields = array( + "title" => __("Title"), + "content" => __("Content"), + "both" => __("Title or content")); + + print_select_hash("match_on", 3, $search_fields); + + print "
"; + + print ""; + + print "
"; + + print ""; + } + ?> diff --git a/mobile/mobile.css b/mobile/mobile.css index 83da7da22..27a06d68a 100644 --- a/mobile/mobile.css +++ b/mobile/mobile.css @@ -180,3 +180,6 @@ div.footerAddon { margin : 0.5em; } +form.searchForm { + margin : 5px; +} diff --git a/mobile/tt-rss.php b/mobile/tt-rss.php index d75796a39..637e5d559 100644 --- a/mobile/tt-rss.php +++ b/mobile/tt-rss.php @@ -66,6 +66,8 @@ render_headlines($link); } else if ($go == "view") { render_article($link); + } else if ($go == "sform") { + render_search_form($link, $_GET["aid"], $_GET["ic"]); } else { print __("Internal error: Function not implemented"); } -- cgit v1.2.3