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