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