]> git.wh0rd.org - tt-rss.git/blame - classes/feeds.php
fix warning when creating feed last updated timestamp
[tt-rss.git] / classes / feeds.php
CommitLineData
6afcbcd1
AD
1<?php
2require_once "colors.php";
3
4class Feeds extends Handler_Protected {
5
6 function csrf_ignore($method) {
1c9bda91 7 $csrf_ignored = array("index", "feedbrowser", "quickaddfeed", "search");
6afcbcd1
AD
8
9 return array_search($method, $csrf_ignored) !== false;
10 }
11
6afcbcd1 12 private function format_headline_subtoolbar($feed_site_url, $feed_title,
ca5d9be4 13 $feed_id, $is_cat, $search,
6e3e8db9 14 $search_mode, $view_mode, $error, $feed_last_updated) {
6afcbcd1
AD
15
16 $page_prev_link = "viewFeedGoPage(-1)";
17 $page_next_link = "viewFeedGoPage(1)";
18 $page_first_link = "viewFeedGoPage(0)";
19
20 $catchup_page_link = "catchupPage()";
21 $catchup_feed_link = "catchupCurrentFeed()";
22 $catchup_sel_link = "catchupSelection()";
23
24 $archive_sel_link = "archiveSelection()";
25 $delete_sel_link = "deleteSelection()";
26
27 $sel_all_link = "selectArticles('all')";
28 $sel_unread_link = "selectArticles('unread')";
29 $sel_none_link = "selectArticles('none')";
30 $sel_inv_link = "selectArticles('invert')";
31
32 $tog_unread_link = "selectionToggleUnread()";
33 $tog_marked_link = "selectionToggleMarked()";
34 $tog_published_link = "selectionTogglePublished()";
35
36 $set_score_link = "setSelectionScore()";
37
38 if ($is_cat) $cat_q = "&is_cat=$is_cat";
39
40 if ($search) {
ca5d9be4 41 $search_q = "&q=$search&smode=$search_mode";
6afcbcd1
AD
42 } else {
43 $search_q = "";
44 }
45
46 $rss_link = htmlspecialchars(get_self_url_prefix() .
47 "/public.php?op=rss&id=$feed_id$cat_q$search_q");
48
49 // right part
50
51 $reply .= "<span class='r'>";
e43a9c4a 52 $reply .= "<span id='selected_prompt'></span>";
6afcbcd1
AD
53 $reply .= "<span id='feed_title'>";
54
55 if ($feed_site_url) {
6e3e8db9
AD
56 $last_updated = T_sprintf("Last updated: %s",
57 $feed_last_updated);
58
6afcbcd1 59 $target = "target=\"_blank\"";
6e3e8db9 60 $reply .= "<a title=\"$last_updated\" $target href=\"$feed_site_url\">".
6afcbcd1
AD
61 truncate_string($feed_title,30)."</a>";
62
63 if ($error) {
64 $reply .= " (<span class=\"error\" title=\"$error\">Error</span>)";
65 }
66
67 } else {
68 $reply .= $feed_title;
69 }
70
71 $reply .= "</span>";
72
73 $reply .= "
74 <a href=\"#\"
75 title=\"".__("View as RSS feed")."\"
fb54e3b1 76 onclick=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">
6afcbcd1
AD
77 <img class=\"noborder\" style=\"vertical-align : middle\" src=\"images/pub_set.svg\"></a>";
78
79 $reply .= "</span>";
80
81 // left part
82
83 $reply .= __('Select:')."
84 <a href=\"#\" onclick=\"$sel_all_link\">".__('All')."</a>,
85 <a href=\"#\" onclick=\"$sel_unread_link\">".__('Unread')."</a>,
86 <a href=\"#\" onclick=\"$sel_inv_link\">".__('Invert')."</a>,
87 <a href=\"#\" onclick=\"$sel_none_link\">".__('None')."</a></li>";
88
89 $reply .= " ";
90
91 $reply .= "<select dojoType=\"dijit.form.Select\"
92 onchange=\"headlineActionsChange(this)\">";
93 $reply .= "<option value=\"false\">".__('More...')."</option>";
94
95 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection toggle:')."</option>";
96
97 $reply .= "<option value=\"$tog_unread_link\">".__('Unread')."</option>
98 <option value=\"$tog_marked_link\">".__('Starred')."</option>
99 <option value=\"$tog_published_link\">".__('Published')."</option>";
100
101 $reply .= "<option value=\"0\" disabled=\"1\">".__('Selection:')."</option>";
102
103 $reply .= "<option value=\"$catchup_sel_link\">".__('Mark as read')."</option>";
104 $reply .= "<option value=\"$set_score_link\">".__('Set score')."</option>";
105
106 if ($feed_id != "0") {
107 $reply .= "<option value=\"$archive_sel_link\">".__('Archive')."</option>";
108 } else {
109 $reply .= "<option value=\"$archive_sel_link\">".__('Move back')."</option>";
110 $reply .= "<option value=\"$delete_sel_link\">".__('Delete')."</option>";
111
112 }
113
1ffe3391 114 if (PluginHost::getInstance()->get_plugin("mail")) {
6afcbcd1
AD
115 $reply .= "<option value=\"emailArticle(false)\">".__('Forward by email').
116 "</option>";
117 }
118
1ffe3391 119 if (PluginHost::getInstance()->get_plugin("mailto")) {
1d5cf085
AD
120 $reply .= "<option value=\"mailtoArticle(false)\">".__('Forward by email').
121 "</option>";
122 }
123
6afcbcd1
AD
124 $reply .= "<option value=\"0\" disabled=\"1\">".__('Feed:')."</option>";
125
3dd0306f 126 //$reply .= "<option value=\"catchupPage()\">".__('Mark as read')."</option>";
6afcbcd1 127
fb54e3b1 128 $reply .= "<option value=\"displayDlg('".__("View as RSS")."','generatedFeed', '$feed_id:$is_cat:$rss_link')\">".__('View as RSS')."</option>";
6afcbcd1
AD
129
130 $reply .= "</select>";
131
132 //$reply .= "</div>";
133
134 //$reply .= "</h2";
135
1ffe3391 136 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINE_TOOLBAR_BUTTON) as $p) {
ceb78471
AD
137 echo $p->hook_headline_toolbar_button($feed_id, $is_cat);
138 }
139
6afcbcd1
AD
140 return $reply;
141 }
142
143 private function format_headlines_list($feed, $method, $view_mode, $limit, $cat_view,
144 $next_unread_feed, $offset, $vgr_last_feed = false,
145 $override_order = false, $include_children = false) {
146
147 if (isset($_REQUEST["DevForceUpdate"]))
148 header("Content-Type: text/plain");
149
150 $disable_cache = false;
151
152 $reply = array();
153
e0deff39
AD
154 $rgba_cache = array();
155
fa9e88c3 156 $timing_info = microtime(true);
6afcbcd1
AD
157
158 $topmost_article_ids = array();
159
160 if (!$offset) $offset = 0;
161 if ($method == "undefined") $method = "";
162
163 $method_split = explode(":", $method);
164
165 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
166 // Update the feed if required with some basic flood control
167
d9c85e0f 168 $result = $this->dbh->query(
8349a32e 169 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
6afcbcd1
AD
170 FROM ttrss_feeds WHERE id = '$feed'");
171
d9c85e0f
AD
172 if ($this->dbh->num_rows($result) != 0) {
173 $last_updated = strtotime($this->dbh->fetch_result($result, 0, "last_updated"));
174 $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
6afcbcd1 175
8349a32e 176 if (!$cache_images && time() - $last_updated > 120 || isset($_REQUEST['DevForceUpdate'])) {
6afcbcd1 177 include "rssfuncs.php";
a42c55f0 178 update_rss_feed($feed, true, true);
6afcbcd1 179 } else {
d9c85e0f 180 $this->dbh->query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
6afcbcd1
AD
181 WHERE id = '$feed'");
182 }
183 }
184 }
185
186 if ($method_split[0] == "MarkAllReadGR") {
a42c55f0 187 catchup_feed($method_split[1], false);
6afcbcd1
AD
188 }
189
190 // FIXME: might break tag display?
191
192 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
d9c85e0f 193 $result = $this->dbh->query(
6afcbcd1
AD
194 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
195
d9c85e0f 196 if ($this->dbh->num_rows($result) == 0) {
6afcbcd1
AD
197 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
198 }
199 }
200
d9c85e0f 201 @$search = $this->dbh->escape_string($_REQUEST["query"]);
6afcbcd1
AD
202
203 if ($search) {
204 $disable_cache = true;
205 }
206
d9c85e0f 207 @$search_mode = $this->dbh->escape_string($_REQUEST["search_mode"]);
6afcbcd1
AD
208
209 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
210
211// error_log("format_headlines_list: [" . $feed . "] method [" . $method . "]");
a42c55f0 212 if($search_mode == '' && $method != '' ){
6afcbcd1
AD
213 $search_mode = $method;
214 }
215// error_log("search_mode: " . $search_mode);
a413f53e 216
e92a353b 217 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
1ffe3391 218 $handler = PluginHost::getInstance()->get_feed_handler(
a413f53e
AD
219 PluginHost::feed_to_pfeed_id($feed));
220
6322ac79 221 // function queryFeedHeadlines($feed, $limit, $view_mode, $cat_view, $search, $search_mode, $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false, $ignore_vfeed_group = false) {
a413f53e
AD
222
223 if ($handler) {
224 $options = array(
225 "limit" => $limit,
226 "view_mode" => $view_mode,
227 "cat_view" => $cat_view,
228 "search" => $search,
229 "search_mode" => $search_mode,
230 "override_order" => $override_order,
231 "offset" => $offset,
232 "owner_uid" => $_SESSION["uid"],
233 "filter" => false,
234 "since_id" => 0,
235 "include_children" => $include_children);
236
237 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
238 $options);
239 }
240
241 } else {
a42c55f0 242 $qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
a413f53e
AD
243 $search, $search_mode, $override_order, $offset, 0,
244 false, 0, $include_children);
245 }
6afcbcd1
AD
246
247 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
248
249 $result = $qfh_ret[0];
250 $feed_title = $qfh_ret[1];
251 $feed_site_url = $qfh_ret[2];
252 $last_error = $qfh_ret[3];
90a372f5 253 $last_updated = make_local_datetime($qfh_ret[4], false);
6afcbcd1
AD
254
255 $vgroup_last_feed = $vgr_last_feed;
256
257 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
258 $feed_title,
ca5d9be4 259 $feed, $cat_view, $search, $search_mode, $view_mode,
6e3e8db9 260 $last_error, $last_updated);
6afcbcd1 261
d9c85e0f 262 $headlines_count = $this->dbh->num_rows($result);
6afcbcd1 263
a42c55f0 264 /* if (get_pref('COMBINED_DISPLAY_MODE')) {
6afcbcd1
AD
265 $button_plugins = array();
266 foreach (explode(",", ARTICLE_BUTTON_PLUGINS) as $p) {
267 $pclass = "button_" . trim($p);
268
269 if (class_exists($pclass)) {
6322ac79 270 $plugin = new $pclass();
6afcbcd1
AD
271 array_push($button_plugins, $plugin);
272 }
273 }
274 } */
275
d9c85e0f 276 if ($this->dbh->num_rows($result) > 0) {
6afcbcd1
AD
277
278 $lnum = $offset;
279
280 $num_unread = 0;
281 $cur_feed_title = '';
282
a42c55f0 283 $fresh_intl = get_pref("FRESH_ARTICLE_MAX_AGE") * 60 * 60;
6afcbcd1
AD
284
285 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
286
a42c55f0 287 $expand_cdm = get_pref('CDM_EXPANDED');
f0540b59 288
d9c85e0f 289 while ($line = $this->dbh->fetch_assoc($result)) {
6afcbcd1
AD
290 $class = ($lnum % 2) ? "even" : "odd";
291
292 $id = $line["id"];
293 $feed_id = $line["feed_id"];
294 $label_cache = $line["label_cache"];
295 $labels = false;
6afcbcd1
AD
296
297 if ($label_cache) {
298 $label_cache = json_decode($label_cache, true);
299
300 if ($label_cache) {
301 if ($label_cache["no-labels"] == 1)
302 $labels = array();
303 else
304 $labels = $label_cache;
305 }
306 }
307
a42c55f0 308 if (!is_array($labels)) $labels = get_article_labels($id);
6afcbcd1 309
6afcbcd1
AD
310 $labels_str = "<span id=\"HLLCTR-$id\">";
311 $labels_str .= format_article_labels($labels, $id);
312 $labels_str .= "</span>";
313
314 if (count($topmost_article_ids) < 3) {
315 array_push($topmost_article_ids, $id);
316 }
317
035d7a5a 318 if (sql_bool_to_bool($line["unread"])) {
6afcbcd1
AD
319 $class .= " Unread";
320 ++$num_unread;
6afcbcd1
AD
321 }
322
035d7a5a
AD
323 if (sql_bool_to_bool($line["marked"])) {
324 $marked_pic = "<img
2a3b6de0 325 src=\"images/mark_set.svg\"
6afcbcd1 326 class=\"markedPic\" alt=\"Unstar article\"
035d7a5a
AD
327 onclick='toggleMark($id)'>";
328 $class .= " marked";
6afcbcd1 329 } else {
035d7a5a 330 $marked_pic = "<img
2a3b6de0 331 src=\"images/mark_unset.svg\"
6afcbcd1 332 class=\"markedPic\" alt=\"Star article\"
035d7a5a 333 onclick='toggleMark($id)'>";
6afcbcd1
AD
334 }
335
035d7a5a
AD
336 if (sql_bool_to_bool($line["published"])) {
337 $published_pic = "<img src=\"images/pub_set.svg\"
338 class=\"pubPic\"
339 alt=\"Unpublish article\" onclick='togglePub($id)'>";
340 $class .= " published";
6afcbcd1 341 } else {
035d7a5a
AD
342 $published_pic = "<img src=\"images/pub_unset.svg\"
343 class=\"pubPic\"
344 alt=\"Publish article\" onclick='togglePub($id)'>";
6afcbcd1
AD
345 }
346
347# $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
348# $line["title"] . "</a>";
349
350# $content_link = "<a
351# href=\"" . htmlspecialchars($line["link"]) . "\"
352# onclick=\"view($id,$feed_id);\">" .
353# $line["title"] . "</a>";
354
355# $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
356# $line["title"] . "</a>";
357
a42c55f0 358 $updated_fmt = make_local_datetime($line["updated"], false);
be574731 359 $date_entered_fmt = T_sprintf("Imported at %s",
a42c55f0 360 make_local_datetime($line["date_entered"], false));
6afcbcd1 361
a42c55f0 362 if (get_pref('SHOW_CONTENT_PREVIEW')) {
6afcbcd1
AD
363 $content_preview = truncate_string(strip_tags($line["content_preview"]),
364 100);
365 }
366
367 $score = $line["score"];
368
2a3b6de0 369 $score_pic = "images/" . get_score_pic($score);
6afcbcd1
AD
370
371/* $score_title = __("(Click to change)");
372 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
373 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
374
375 $score_pic = "<img class='hlScorePic' score='$score' onclick='changeScore($id, this)' src=\"$score_pic\"
376 title=\"$score\">";
377
378 if ($score > 500) {
379 $hlc_suffix = "H";
380 } else if ($score < -100) {
381 $hlc_suffix = "L";
382 } else {
383 $hlc_suffix = "";
384 }
385
386 $entry_author = $line["author"];
387
388 if ($entry_author) {
884f2aee 389 $entry_author = " &mdash; $entry_author";
6afcbcd1
AD
390 }
391
392 $has_feed_icon = feed_has_icon($feed_id);
393
394 if ($has_feed_icon) {
395 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
396 } else {
397 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.svg\" alt=\"\">";
398 }
399
08dfc223
AD
400 $entry_site_url = $line["site_url"];
401
bfaf90e3
AD
402 //setting feed headline background color, needs to change text color based on dark/light
403 $fav_color = $line['favicon_avg_color'];
404
405 require_once "colors.php";
406
db29ea0d 407 if ($fav_color && $fav_color != 'fail') {
e7480cc1 408 if (!isset($rgba_cache[$feed_id])) {
12a6bd28 409 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
e7480cc1 410 }
bfaf90e3
AD
411
412 $rgba = $rgba_cache[$feed_id];
413
86f7d2a9
AD
414 if (sql_bool_to_bool($line["unread"]))
415 $endalpha = '0.3';
416 else
417 $endalpha = '0.1';
418
bfaf90e3 419 // W3C definition seems to work in FF and Chrome
86f7d2a9 420 $row_background = "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba($rgba, $endalpha) 100%);";
bfaf90e3
AD
421
422 /* $row_background = "background-image : -moz-linear-gradient(left, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);".
423 "background-image : linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgba($rgba, 0.2) 100%);";
a42c55f0 424 "background-image : -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255,255,255,0)),
bfaf90e3
AD
425 color-stop(100%, rgba($rgba, 0.2)));"; */
426 } else {
427 $row_background = "";
428 }
429
a42c55f0 430 if (!get_pref('COMBINED_DISPLAY_MODE')) {
6afcbcd1 431
a42c55f0 432 if (get_pref('VFEED_GROUP_BY_FEED')) {
6afcbcd1
AD
433 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
434
435 $cur_feed_title = $line["feed_title"];
436 $vgroup_last_feed = $feed_id;
437
438 $cur_feed_title = htmlspecialchars($cur_feed_title);
439
36b4cf2f 440 $vf_catchup_link = "(<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('Mark as read')."</a>)";
6afcbcd1
AD
441
442 $reply['content'] .= "<div class='cdmFeedTitle'>".
443 "<div style=\"float : right\">$feed_icon_img</div>".
36b4cf2f 444 "<a class='title' href=\"#\" onclick=\"viewfeed($feed_id)\">".
6afcbcd1
AD
445 $line["feed_title"]."</a> $vf_catchup_link</div>";
446
447 }
448 }
449
d2f3467b 450 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
451 onmouseout='postMouseOut($id)'";
452
bfaf90e3 453 $reply['content'] .= "<div class='hl $class' id='RROW-$id' $mouseover_attrs style='$row_background'>";
6afcbcd1
AD
454
455 $reply['content'] .= "<div class='hlLeft'>";
456
524de8dc
AD
457 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
458 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
7e27c914 459 class='rchk'>";
6afcbcd1
AD
460
461 $reply['content'] .= "$marked_pic";
462 $reply['content'] .= "$published_pic";
463
464 $reply['content'] .= "</div>";
465
466 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
814fa4ef
AD
467 class=\"hlTitle\"><span class='hlContent$hlc_suffix'>";
468 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title\"
bf1dc420 469 href=\"" . htmlspecialchars($line["link"]) . "\"
6afcbcd1
AD
470 onclick=\"\">" .
471 truncate_string($line["title"], 200);
472
a42c55f0 473 if (get_pref('SHOW_CONTENT_PREVIEW')) {
6afcbcd1
AD
474 if ($content_preview) {
475 $reply['content'] .= "<span class=\"contentPreview\"> - $content_preview</span>";
476 }
477 }
478
479 $reply['content'] .= "</a></span>";
480
481 $reply['content'] .= $labels_str;
482
e17e99fb
AD
483 $reply['content'] .= "</div>";
484
485 $reply['content'] .= "<span class=\"hlUpdated\">";
486
a42c55f0 487 if (!get_pref('VFEED_GROUP_BY_FEED')) {
b830cca7 488 if (@$line["feed_title"]) {
cf2f643e 489 $reply['content'] .= "<div class=\"hlFeed\">
e17e99fb 490 <a href=\"#\" onclick=\"viewfeed($feed_id)\">".
af2941db 491 truncate_string($line["feed_title"],30)."</a>
cf2f643e 492 </div>";
6afcbcd1 493 }
b830cca7 494 }
6afcbcd1 495
be574731
AD
496 $reply['content'] .= "<span title='$date_entered_fmt'>$updated_fmt</span>
497 </span>";
498
6afcbcd1
AD
499 $reply['content'] .= "<div class=\"hlRight\">";
500
501 $reply['content'] .= $score_pic;
502
a42c55f0 503 if ($line["feed_title"] && !get_pref('VFEED_GROUP_BY_FEED')) {
6afcbcd1
AD
504
505 $reply['content'] .= "<span onclick=\"viewfeed($feed_id)\"
506 style=\"cursor : pointer\"
507 title=\"".htmlspecialchars($line['feed_title'])."\">
508 $feed_icon_img<span>";
509 }
510
511 $reply['content'] .= "</div>";
512 $reply['content'] .= "</div>";
513
514 } else {
515
a42c55f0 516 $line["tags"] = get_article_tags($id, $_SESSION["uid"], $line["tag_cache"]);
84d952f1
AD
517 unset($line["tag_cache"]);
518
a42c55f0 519 $line["content"] = sanitize($line["content_preview"],
bfd61d3f 520 sql_bool_to_bool($line['hide_images']), false, $entry_site_url);
84d952f1 521
1ffe3391 522 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
84d952f1
AD
523 $line = $p->hook_render_article_cdm($line);
524 }
525
a42c55f0 526 if (get_pref('VFEED_GROUP_BY_FEED') && $line["feed_title"]) {
6afcbcd1
AD
527 if ($feed_id != $vgroup_last_feed) {
528
529 $cur_feed_title = $line["feed_title"];
530 $vgroup_last_feed = $feed_id;
531
532 $cur_feed_title = htmlspecialchars($cur_feed_title);
533
36b4cf2f 534 $vf_catchup_link = "(<a class='catchup' onclick='javascript:catchupFeedInGroup($feed_id);' href='#'>".__('mark as read')."</a>)";
6afcbcd1
AD
535
536 $has_feed_icon = feed_has_icon($feed_id);
537
538 if ($has_feed_icon) {
539 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
540 } else {
541 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
542 }
543
544 $reply['content'] .= "<div class='cdmFeedTitle'>".
545 "<div style=\"float : right\">$feed_icon_img</div>".
36b4cf2f 546 "<a href=\"#\" class='title' onclick=\"viewfeed($feed_id)\">".
6afcbcd1
AD
547 $line["feed_title"]."</a> $vf_catchup_link</div>";
548 }
549 }
550
d2f3467b 551 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
6afcbcd1
AD
552 onmouseout='postMouseOut($id)'";
553
a0ddecb9 554 $expanded_class = $expand_cdm ? "expanded" : "expandable";
3ac153f1
AD
555
556 $reply['content'] .= "<div class=\"cdm $expanded_class $class\"
6704bb2c 557 id=\"RROW-$id\" $mouseover_attrs>";
6afcbcd1 558
e0deff39 559 $reply['content'] .= "<div class=\"cdmHeader\" style=\"$row_background\">";
bdb7d62e 560 $reply['content'] .= "<div style=\"vertical-align : middle\">";
6afcbcd1 561
524de8dc
AD
562 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
563 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
7e27c914 564 class='rchk'>";
6afcbcd1
AD
565
566 $reply['content'] .= "$marked_pic";
567 $reply['content'] .= "$published_pic";
568
569 $reply['content'] .= "</div>";
570
814fa4ef 571 $reply['content'] .= "<span id=\"RTITLE-$id\"
6afcbcd1
AD
572 onclick=\"return cdmClicked(event, $id);\"
573 class=\"titleWrap$hlc_suffix\">
574 <a class=\"title\"
6afcbcd1
AD
575 target=\"_blank\" href=\"".
576 htmlspecialchars($line["link"])."\">".
577 $line["title"] .
82d69730 578 " <span class=\"author\">$entry_author</span></a>";
6afcbcd1
AD
579
580 $reply['content'] .= $labels_str;
581
414191d4
AD
582 $reply['content'] .= "<span class='collapseBtn' style='display : none'>
583 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
584 title=\"".__("Collapse article")."\"/></span>";
585
6afcbcd1
AD
586 if (!$expand_cdm)
587 $content_hidden = "style=\"display : none\"";
588 else
589 $excerpt_hidden = "style=\"display : none\"";
590
591 $reply['content'] .= "<span $excerpt_hidden
592 id=\"CEXC-$id\" class=\"cdmExcerpt\"> - $content_preview</span>";
6afcbcd1
AD
593 $reply['content'] .= "</span>";
594
a42c55f0 595 if (!get_pref('VFEED_GROUP_BY_FEED')) {
d56ec700
AD
596 if (@$line["feed_title"]) {
597 $reply['content'] .= "<div class=\"hlFeed\">
598 <a href=\"#\" onclick=\"viewfeed($feed_id)\">".
af2941db 599 truncate_string($line["feed_title"],30)."</a>
d56ec700
AD
600 </div>";
601 }
602 }
603
be574731
AD
604 $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
605 $updated_fmt</span>";
e17e99fb
AD
606
607 $reply['content'] .= "<div style=\"vertical-align : middle\">";
6afcbcd1
AD
608 $reply['content'] .= "$score_pic";
609
a42c55f0 610 if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
6afcbcd1
AD
611 $reply['content'] .= "<span style=\"cursor : pointer\"
612 title=\"".htmlspecialchars($line["feed_title"])."\"
613 onclick=\"viewfeed($feed_id)\">$feed_icon_img</span>";
614 }
615 $reply['content'] .= "</div>";
616
617 $reply['content'] .= "</div>";
618
619 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
620 onclick=\"return cdmClicked(event, $id);\"
621 id=\"CICD-$id\">";
622
b999f4c7
AD
623 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
624 if ($line['note']) {
625 $reply['content'] .= format_article_note($id, $line['note']);
626 }
627 $reply['content'] .= "</div>";
628
629
6afcbcd1
AD
630 $reply['content'] .= "<div class=\"cdmContentInner\">";
631
632 if ($line["orig_feed_id"]) {
633
d9c85e0f 634 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
6afcbcd1
AD
635 WHERE id = ".$line["orig_feed_id"]);
636
d9c85e0f 637 if ($this->dbh->num_rows($tmp_result) != 0) {
6afcbcd1
AD
638
639 $reply['content'] .= "<div clear='both'>";
640 $reply['content'] .= __("Originally from:");
641
642 $reply['content'] .= "&nbsp;";
643
d9c85e0f 644 $tmp_line = $this->dbh->fetch_assoc($tmp_result);
6afcbcd1
AD
645
646 $reply['content'] .= "<a target='_blank'
647 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
648 $tmp_line['title'] . "</a>";
649
650 $reply['content'] .= "&nbsp;";
651
652 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
653 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.svg'></a>";
654
655 $reply['content'] .= "</div>";
656 }
657 }
658
6afcbcd1 659 $reply['content'] .= "<span id=\"CWRAP-$id\">";
6afcbcd1 660
b74c5134
AD
661// if (!$expand_cdm) {
662 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
f0540b59
AD
663 $reply['content'] .= htmlspecialchars($line["content"]);
664 $reply['content'] .= "</span.";
665
b74c5134
AD
666// } else {
667// $reply['content'] .= $line["content"];
668// }
6afcbcd1 669
f0540b59 670 $reply['content'] .= "</span>";
6afcbcd1
AD
671
672 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
673
a42c55f0 674 $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
6afcbcd1
AD
675
676 $reply['content'] .= "</div>";
677
678 $reply['content'] .= "<div class=\"cdmFooter\">";
679
1ffe3391 680 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
ccb2b8dd
AD
681 $reply['content'] .= $p->hook_article_left_button($line);
682 }
683
42ecc25b 684 $tags_str = format_tags_string($line["tags"], $id);
6afcbcd1 685
2a3b6de0 686 $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
6afcbcd1
AD
687 <span id=\"ATSTR-$id\">$tags_str</span>
688 <a title=\"".__('Edit tags for this article')."\"
689 href=\"#\" onclick=\"editArticleTags($id, $feed_id, true)\">(+)</a>";
690
691 $num_comments = $line["num_comments"];
692 $entry_comments = "";
693
694 if ($num_comments > 0) {
695 if ($line["comments"]) {
696 $comments_url = htmlspecialchars($line["comments"]);
697 } else {
698 $comments_url = htmlspecialchars($line["link"]);
699 }
700 $entry_comments = "<a target='_blank' href=\"$comments_url\">$num_comments comments</a>";
701 } else {
702 if ($line["comments"] && $line["link"] != $line["comments"]) {
703 $entry_comments = "<a target='_blank' href=\"".htmlspecialchars($line["comments"])."\">comments</a>";
704 }
705 }
706
707 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
708
709 $reply['content'] .= "<div style=\"float : right\">";
710
035d7a5a
AD
711// $reply['content'] .= "$marked_pic";
712// $reply['content'] .= "$published_pic";
713
1ffe3391 714 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
6afcbcd1
AD
715 $reply['content'] .= $p->hook_article_button($line);
716 }
717
718 $reply['content'] .= "</div>";
719 $reply['content'] .= "</div>";
720
721 $reply['content'] .= "</div>";
722
723 $reply['content'] .= "</div>";
724
725 }
726
727 ++$lnum;
728 }
729
730 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
731
732 } else {
733 $message = "";
734
735 switch ($view_mode) {
736 case "unread":
737 $message = __("No unread articles found to display.");
738 break;
739 case "updated":
740 $message = __("No updated articles found to display.");
741 break;
742 case "marked":
743 $message = __("No starred articles found to display.");
744 break;
745 default:
f822a8e5 746 if ($feed < LABEL_BASE_INDEX) {
8d192d02 747 $message = __("No articles found to display. You can assign articles to labels manually from article header context menu (applies to all selected articles) or use a filter.");
6afcbcd1
AD
748 } else {
749 $message = __("No articles found to display.");
750 }
751 }
752
753 if (!$offset && $message) {
754 $reply['content'] .= "<div class='whiteBox'>$message";
755
919984a4 756 $reply['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1 757
d9c85e0f 758 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6afcbcd1
AD
759 WHERE owner_uid = " . $_SESSION['uid']);
760
d9c85e0f 761 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
a42c55f0 762 $last_updated = make_local_datetime($last_updated, false);
6afcbcd1
AD
763
764 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
765
d9c85e0f 766 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
6afcbcd1
AD
767 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
768
d9c85e0f 769 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
6afcbcd1
AD
770
771 if ($num_errors > 0) {
772 $reply['content'] .= "<br/>";
773 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
774 __('Some feeds have update errors (click for details)')."</a>";
775 }
776 $reply['content'] .= "</span></p></div>";
777 }
778 }
779
780 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
781
782 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
783 $vgroup_last_feed, $reply);
784 }
785
786 function catchupAll() {
d9c85e0f 787 $this->dbh->query("UPDATE ttrss_user_entries SET
1bad74ea 788 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
a42c55f0 789 ccache_zero_all($_SESSION["uid"]);
6afcbcd1
AD
790 }
791
6afcbcd1 792 function view() {
fa9e88c3 793 $timing_info = microtime(true);
6afcbcd1
AD
794
795 $reply = array();
796
797 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
798
d9c85e0f 799 $omode = $this->dbh->escape_string($_REQUEST["omode"]);
6afcbcd1 800
d9c85e0f
AD
801 $feed = $this->dbh->escape_string($_REQUEST["feed"]);
802 $method = $this->dbh->escape_string($_REQUEST["m"]);
803 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
f17cac6b 804 $limit = 30;
6afcbcd1 805 @$cat_view = $_REQUEST["cat"] == "true";
d9c85e0f
AD
806 @$next_unread_feed = $this->dbh->escape_string($_REQUEST["nuf"]);
807 @$offset = $this->dbh->escape_string($_REQUEST["skip"]);
808 @$vgroup_last_feed = $this->dbh->escape_string($_REQUEST["vgrlf"]);
809 $order_by = $this->dbh->escape_string($_REQUEST["order_by"]);
6afcbcd1
AD
810
811 if (is_numeric($feed)) $feed = (int) $feed;
812
813 /* Feed -5 is a special case: it is used to display auxiliary information
814 * when there's nothing to load - e.g. no stuff in fresh feed */
815
816 if ($feed == -5) {
6322ac79 817 print json_encode($this->generate_dashboard_feed());
6afcbcd1
AD
818 return;
819 }
820
821 $result = false;
822
f822a8e5
AD
823 if ($feed < LABEL_BASE_INDEX) {
824 $label_feed = feed_to_label_id($feed);
d9c85e0f 825 $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE
6afcbcd1
AD
826 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
827 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 828 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
6afcbcd1
AD
829 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
830 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 831 $result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
6afcbcd1
AD
832 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
833 }
834
d9c85e0f 835 if ($result && $this->dbh->num_rows($result) == 0) {
a42c55f0 836 print json_encode($this->generate_error_feed(__("Feed not found.")));
6afcbcd1
AD
837 return;
838 }
839
840 /* Updating a label ccache means recalculating all of the caches
841 * so for performance reasons we don't do that here */
842
843 if ($feed >= 0) {
a42c55f0 844 ccache_update($feed, $_SESSION["uid"], $cat_view);
6afcbcd1
AD
845 }
846
a42c55f0
AD
847 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
848 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
6afcbcd1 849
06b0777f
AD
850 /* bump login timestamp if needed */
851 if (time() - $_SESSION["last_login_update"] > 3600) {
d9c85e0f 852 $this->dbh->query("UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
06b0777f
AD
853 $_SESSION["uid"]);
854 $_SESSION["last_login_update"] = time();
855 }
856
6afcbcd1 857 if (!$cat_view && is_numeric($feed) && $feed > 0) {
d9c85e0f 858 $this->dbh->query("UPDATE ttrss_feeds SET last_viewed = NOW()
6afcbcd1
AD
859 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
860 }
861
862 $reply['headlines'] = array();
863
864 if (!$next_unread_feed)
865 $reply['headlines']['id'] = $feed;
866 else
867 $reply['headlines']['id'] = $next_unread_feed;
868
869 $reply['headlines']['is_cat'] = (bool) $cat_view;
870
871 $override_order = false;
872
6afcbcd1 873 switch ($order_by) {
f3b2e7d4
AD
874 case "title":
875 $override_order = "ttrss_entries.title";
876 break;
877 case "date_reverse":
878 $override_order = "date_entered, updated";
879 break;
880 case "feed_dates":
881 $override_order = "updated DESC";
882 break;
6afcbcd1
AD
883 }
884
885 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
886
887 $ret = $this->format_headlines_list($feed, $method,
888 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
889 $vgroup_last_feed, $override_order, true);
890
b389aeb7 891 //$topmost_article_ids = $ret[0];
6afcbcd1
AD
892 $headlines_count = $ret[1];
893 $returned_feed = $ret[2];
894 $disable_cache = $ret[3];
895 $vgroup_last_feed = $ret[4];
896
897 $reply['headlines']['content'] =& $ret[5]['content'];
898 $reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
899
900 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
901
902 $reply['headlines-info'] = array("count" => (int) $headlines_count,
903 "vgroup_last_feed" => $vgroup_last_feed,
904 "disable_cache" => (bool) $disable_cache);
905
6afcbcd1
AD
906 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
907
6322ac79 908 $reply['runtime-info'] = make_runtime_info();
6afcbcd1
AD
909
910 print json_encode($reply);
911
912 }
913
6322ac79 914 private function generate_dashboard_feed() {
6afcbcd1
AD
915 $reply = array();
916
917 $reply['headlines']['id'] = -5;
918 $reply['headlines']['is_cat'] = false;
919
920 $reply['headlines']['toolbar'] = '';
921 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
922
919984a4 923 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
6afcbcd1 924
d9c85e0f 925 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
6afcbcd1
AD
926 WHERE owner_uid = " . $_SESSION['uid']);
927
d9c85e0f 928 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
a42c55f0 929 $last_updated = make_local_datetime($last_updated, false);
6afcbcd1
AD
930
931 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
932
d9c85e0f 933 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
6afcbcd1
AD
934 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
935
d9c85e0f 936 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
6afcbcd1
AD
937
938 if ($num_errors > 0) {
939 $reply['headlines']['content'] .= "<br/>";
940 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
941 __('Some feeds have update errors (click for details)')."</a>";
942 }
943 $reply['headlines']['content'] .= "</span></p>";
944
945 $reply['headlines-info'] = array("count" => 0,
946 "vgroup_last_feed" => '',
947 "unread" => 0,
948 "disable_cache" => true);
949
950 return $reply;
951 }
952
a42c55f0 953 private function generate_error_feed($error) {
6afcbcd1
AD
954 $reply = array();
955
956 $reply['headlines']['id'] = -6;
957 $reply['headlines']['is_cat'] = false;
958
959 $reply['headlines']['toolbar'] = '';
960 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
961
962 $reply['headlines-info'] = array("count" => 0,
963 "vgroup_last_feed" => '',
964 "unread" => 0,
965 "disable_cache" => true);
966
967 return $reply;
968 }
969
1c9bda91
AD
970 function quickAddFeed() {
971 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
972 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
973
974 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
975 print "<div class=\"dlgSecCont\">";
976
977 print "<div style='float : right'>
978 <img style='display : none'
979 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
980
981 print "<input style=\"font-size : 16px; width : 20em;\"
982 placeHolder=\"".__("Feed or site URL")."\"
983 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
984
985 print "<hr/>";
986
a42c55f0 987 if (get_pref('ENABLE_FEED_CATS')) {
1c9bda91 988 print __('Place in category:') . " ";
a42c55f0 989 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1c9bda91
AD
990 }
991
992 print "</div>";
993
994 print '<div id="feedDlg_feedsContainer" style="display : none">
995
996 <div class="dlgSec">' . __('Available feeds') . '</div>
997 <div class="dlgSecCont">'.
998 '<select id="feedDlg_feedContainerSelect"
999 dojoType="dijit.form.Select" size="3">
1000 <script type="dojo/method" event="onChange" args="value">
1001 dijit.byId("feedDlg_feedUrl").attr("value", value);
1002 </script>
1003 </select>'.
1004 '</div></div>';
1005
1006 print "<div id='feedDlg_loginContainer' style='display : none'>
1007
1008 <div class=\"dlgSec\">".__("Authentication")."</div>
1009 <div class=\"dlgSecCont\">".
1010
1011 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1012 placeHolder=\"".__("Login")."\"
1013 style=\"width : 10em;\"> ".
1014 " <input
1015 placeHolder=\"".__("Password")."\"
1016 dojoType=\"dijit.form.TextBox\" type='password'
1017 style=\"width : 10em;\" name='pass'\">
1018 </div></div>";
1019
1020
1021 print "<div style=\"clear : both\">
1022 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1023 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1024 <label for=\"feedDlg_loginCheck\">".
1025 __('This feed requires authentication.')."</div>";
1026
1027 print "</form>";
1028
1029 print "<div class=\"dlgButtons\">
1030 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1031
1032 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1033 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1034 }
1035
1036 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1037 </div>";
1038
1039 //return;
1040 }
1041
1042 function feedBrowser() {
1043 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1044
d9c85e0f 1045 $browser_search = $this->dbh->escape_string($_REQUEST["search"]);
1c9bda91
AD
1046
1047 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1048 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
1049
1050 print "<div dojoType=\"dijit.Toolbar\">
1051 <div style='float : right'>
1052 <img style='display : none'
1053 id='feed_browser_spinner' src='images/indicator_white.gif'>
1054 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1055 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1056 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1057 </div>";
1058
1059 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1060 <option value='1'>" . __('Popular feeds') . "</option>
1061 <option value='2'>" . __('Feed archive') . "</option>
1062 </select> ";
1063
1064 print __("limit:");
1065
1066 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1067
1068 foreach (array(25, 50, 100, 200) as $l) {
1069 $issel = ($l == $limit) ? "selected=\"1\"" : "";
1070 print "<option $issel value=\"$l\">$l</option>";
1071 }
1072
1073 print "</select> ";
1074
1075 print "</div>";
1076
1077 $owner_uid = $_SESSION["uid"];
1078
1079 require_once "feedbrowser.php";
1080
1081 print "<ul class='browseFeedList' id='browseFeedList'>";
a42c55f0 1082 print make_feed_browser($search, 25);
1c9bda91
AD
1083 print "</ul>";
1084
1085 print "<div align='center'>
1086 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1087 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1088 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1089
1090 }
1091
1092 function search() {
d9c85e0f 1093 $this->params = explode(":", $this->dbh->escape_string($_REQUEST["param"]), 2);
1c9bda91
AD
1094
1095 $active_feed_id = sprintf("%d", $this->params[0]);
1096 $is_cat = $this->params[1] != "false";
1097
1098 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1099
1100 print "<div class=\"dlgSecCont\">";
1101
1102 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1103 style=\"font-size : 16px; width : 20em;\"
1104 required=\"1\" name=\"query\" type=\"search\" value=''>";
1105
1106 print "<hr/>".__('Limit search to:')." ";
1107
1108 print "<select name=\"search_mode\" dojoType=\"dijit.form.Select\">
1109 <option value=\"all_feeds\">".__('All feeds')."</option>";
1110
a42c55f0 1111 $feed_title = getFeedTitle($active_feed_id);
1c9bda91
AD
1112
1113 if (!$is_cat) {
a42c55f0 1114 $feed_cat_title = getFeedCatTitle($active_feed_id);
1c9bda91 1115 } else {
a42c55f0 1116 $feed_cat_title = getCategoryTitle($active_feed_id);
1c9bda91
AD
1117 }
1118
1119 if ($active_feed_id && !$is_cat) {
1120 print "<option selected=\"1\" value=\"this_feed\">$feed_title</option>";
1121 } else {
1122 print "<option disabled=\"1\" value=\"false\">".__('This feed')."</option>";
1123 }
1124
1125 if ($is_cat) {
1126 $cat_preselected = "selected=\"1\"";
1127 }
1128
a42c55f0 1129 if (get_pref('ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
1c9bda91
AD
1130 print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
1131 } else {
1132 //print "<option disabled>".__('This category')."</option>";
1133 }
1134
1135 print "</select>";
1136
1137 print "</div>";
1138
1139 print "<div class=\"dlgButtons\">";
1140
1141 if (!SPHINX_ENABLED) {
1142 print "<div style=\"float : left\">
1143 <a class=\"visibleLink\" target=\"_blank\" href=\"http://tt-rss.org/wiki/SearchSyntax\">Search syntax</a>
1144 </div>";
1145 }
1146
1147 print "<button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').execute()\">".__('Search')."</button>
1148 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('searchDlg').hide()\">".__('Cancel')."</button>
1149 </div>";
1150 }
1151
1152
6afcbcd1
AD
1153}
1154?>