]> git.wh0rd.org - tt-rss.git/blob - classes/feeds.php
Merge branch 'af-readability' into 'master'
[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 $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";
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 .= "<span class=\"sel_links\">
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 .= "</span> ";
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, $check_first_id = false,
152 $skip_first_id_check = false) {
153
154 $disable_cache = false;
155
156 $reply = array();
157
158 $rgba_cache = array();
159
160 $timing_info = microtime(true);
161
162 $topmost_article_ids = array();
163
164 if (!$offset) $offset = 0;
165 if ($method == "undefined") $method = "";
166
167 $method_split = explode(":", $method);
168
169 if ($method == "ForceUpdate" && $feed > 0 && is_numeric($feed)) {
170 // Update the feed if required with some basic flood control
171
172 $result = $this->dbh->query(
173 "SELECT cache_images,".SUBSTRING_FOR_DATE."(last_updated,1,19) AS last_updated
174 FROM ttrss_feeds WHERE id = '$feed'");
175
176 if ($this->dbh->num_rows($result) != 0) {
177 $last_updated = strtotime($this->dbh->fetch_result($result, 0, "last_updated"));
178 $cache_images = sql_bool_to_bool($this->dbh->fetch_result($result, 0, "cache_images"));
179
180 if (!$cache_images && time() - $last_updated > 120) {
181 include "rssfuncs.php";
182 update_rss_feed($feed, true, true);
183 } else {
184 $this->dbh->query("UPDATE ttrss_feeds SET last_updated = '1970-01-01', last_update_started = '1970-01-01'
185 WHERE id = '$feed'");
186 }
187 }
188 }
189
190 if ($method_split[0] == "MarkAllReadGR") {
191 catchup_feed($method_split[1], false);
192 }
193
194 // FIXME: might break tag display?
195
196 if (is_numeric($feed) && $feed > 0 && !$cat_view) {
197 $result = $this->dbh->query(
198 "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
199
200 if ($this->dbh->num_rows($result) == 0) {
201 $reply['content'] = "<div align='center'>".__('Feed not found.')."</div>";
202 }
203 }
204
205 @$search = $this->dbh->escape_string($_REQUEST["query"]);
206 @$search_language = $this->dbh->escape_string($_REQUEST["search_language"]); // PGSQL only
207
208 if ($search) {
209 $disable_cache = true;
210 }
211
212 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
213
214
215 if (!$cat_view && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
216 $handler = PluginHost::getInstance()->get_feed_handler(
217 PluginHost::feed_to_pfeed_id($feed));
218
219 if ($handler) {
220 $options = array(
221 "limit" => $limit,
222 "view_mode" => $view_mode,
223 "cat_view" => $cat_view,
224 "search" => $search,
225 "override_order" => $override_order,
226 "offset" => $offset,
227 "owner_uid" => $_SESSION["uid"],
228 "filter" => false,
229 "since_id" => 0,
230 "include_children" => $include_children);
231
232 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
233 $options);
234 }
235
236 } else {
237 /*$qfh_ret = queryFeedHeadlines($feed, $limit, $view_mode, $cat_view,
238 $search, false, $override_order, $offset, 0,
239 false, 0, $include_children, $topid);*/
240
241 //function queryFeedHeadlines($feed, $limit,
242 // $view_mode, $cat_view, $search, $search_mode,
243 // $override_order = false, $offset = 0, $owner_uid = 0, $filter = false, $since_id = 0, $include_children = false,
244 // $ignore_vfeed_group = false, $override_strategy = false, $override_vfeed = false, $start_ts = false, $check_top_id = false) {
245
246 $params = array(
247 "feed" => $feed,
248 "limit" => $limit,
249 "view_mode" => $view_mode,
250 "cat_view" => $cat_view,
251 "search" => $search,
252 "search_language" => $search_language,
253 "override_order" => $override_order,
254 "offset" => $offset,
255 "include_children" => $include_children,
256 "check_first_id" => $check_first_id,
257 "skip_first_id_check" => $skip_first_id_check
258 );
259
260 $qfh_ret = queryFeedHeadlines($params);
261 }
262
263 $vfeed_group_enabled = get_pref("VFEED_GROUP_BY_FEED") && $feed != -6;
264
265 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
266
267 $result = $qfh_ret[0];
268 $feed_title = $qfh_ret[1];
269 $feed_site_url = $qfh_ret[2];
270 $last_error = $qfh_ret[3];
271 $last_updated = strpos($qfh_ret[4], '1970-') === FALSE ?
272 make_local_datetime($qfh_ret[4], false) : __("Never");
273 $highlight_words = $qfh_ret[5];
274 $reply['first_id'] = $qfh_ret[6];
275
276 $vgroup_last_feed = $vgr_last_feed;
277
278 $reply['toolbar'] = $this->format_headline_subtoolbar($feed_site_url,
279 $feed_title,
280 $feed, $cat_view, $search, $view_mode,
281 $last_error, $last_updated);
282
283 $headlines_count = is_numeric($result) ? 0 : $this->dbh->num_rows($result);
284
285 if ($offset == 0) {
286 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_HEADLINES_BEFORE) as $p) {
287 $reply['content'] .= $p->hook_headlines_before($feed, $cat_view, $qfh_ret);
288 }
289 }
290
291 $reply['content'] = '';
292
293 if ($headlines_count > 0) {
294
295 $lnum = $offset;
296
297 $num_unread = 0;
298 $cur_feed_title = '';
299
300 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PS", $timing_info);
301
302 $expand_cdm = get_pref('CDM_EXPANDED');
303
304 while ($line = $this->dbh->fetch_assoc($result)) {
305
306 $line["content_preview"] = "&mdash; " . truncate_string(strip_tags($line["content"]), 250);
307
308 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
309 $line = $p->hook_query_headlines($line, 250, false);
310 }
311
312 if (get_pref('SHOW_CONTENT_PREVIEW')) {
313 $content_preview = $line["content_preview"];
314 }
315
316 $id = $line["id"];
317 $feed_id = $line["feed_id"];
318 $label_cache = $line["label_cache"];
319 $labels = false;
320
321 if ($label_cache) {
322 $label_cache = json_decode($label_cache, true);
323
324 if ($label_cache) {
325 if ($label_cache["no-labels"] == 1)
326 $labels = array();
327 else
328 $labels = $label_cache;
329 }
330 }
331
332 if (!is_array($labels)) $labels = get_article_labels($id);
333
334 $labels_str = "<span class=\"HLLCTR-$id\">";
335 $labels_str .= format_article_labels($labels, $id);
336 $labels_str .= "</span>";
337
338 if (count($topmost_article_ids) < 3) {
339 array_push($topmost_article_ids, $id);
340 }
341
342 $class = "";
343
344 if (sql_bool_to_bool($line["unread"])) {
345 $class .= " Unread";
346 ++$num_unread;
347 }
348
349 if (sql_bool_to_bool($line["marked"])) {
350 $marked_pic = "<img
351 src=\"images/mark_set.png\"
352 class=\"markedPic\" alt=\"Unstar article\"
353 onclick='toggleMark($id)'>";
354 $class .= " marked";
355 } else {
356 $marked_pic = "<img
357 src=\"images/mark_unset.png\"
358 class=\"markedPic\" alt=\"Star article\"
359 onclick='toggleMark($id)'>";
360 }
361
362 if (sql_bool_to_bool($line["published"])) {
363 $published_pic = "<img src=\"images/pub_set.png\"
364 class=\"pubPic\"
365 alt=\"Unpublish article\" onclick='togglePub($id)'>";
366 $class .= " published";
367 } else {
368 $published_pic = "<img src=\"images/pub_unset.png\"
369 class=\"pubPic\"
370 alt=\"Publish article\" onclick='togglePub($id)'>";
371 }
372
373 # $content_link = "<a target=\"_blank\" href=\"".$line["link"]."\">" .
374 # $line["title"] . "</a>";
375
376 # $content_link = "<a
377 # href=\"" . htmlspecialchars($line["link"]) . "\"
378 # onclick=\"view($id,$feed_id);\">" .
379 # $line["title"] . "</a>";
380
381 # $content_link = "<a href=\"javascript:viewContentUrl('".$line["link"]."');\">" .
382 # $line["title"] . "</a>";
383
384 $updated_fmt = make_local_datetime($line["updated"], false, false, false, true);
385 $date_entered_fmt = T_sprintf("Imported at %s",
386 make_local_datetime($line["date_entered"], false));
387
388 $score = $line["score"];
389
390 $score_pic = "images/" . get_score_pic($score);
391
392 /* $score_title = __("(Click to change)");
393 $score_pic = "<img class='hlScorePic' src=\"images/$score_pic\"
394 onclick=\"adjustArticleScore($id, $score)\" title=\"$score $score_title\">"; */
395
396 $score_pic = "<img class='hlScorePic' score='$score' onclick='changeScore($id, this)' src=\"$score_pic\"
397 title=\"$score\">";
398
399 if ($score > 500) {
400 $hlc_suffix = "high";
401 } else if ($score < -100) {
402 $hlc_suffix = "low";
403 } else {
404 $hlc_suffix = "";
405 }
406
407 $entry_author = $line["author"];
408
409 if ($entry_author) {
410 $entry_author = " &mdash; $entry_author";
411 }
412
413 $has_feed_icon = feed_has_icon($feed_id);
414
415 if ($has_feed_icon) {
416 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
417 } else {
418 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/pub_set.png\" alt=\"\">";
419 }
420
421 $entry_site_url = $line["site_url"];
422
423 //setting feed headline background color, needs to change text color based on dark/light
424 $fav_color = $line['favicon_avg_color'];
425
426 require_once "colors.php";
427
428 if ($fav_color && $fav_color != 'fail') {
429 if (!isset($rgba_cache[$feed_id])) {
430 $rgba_cache[$feed_id] = join(",", _color_unpack($fav_color));
431 }
432 }
433
434 if (!get_pref('COMBINED_DISPLAY_MODE')) {
435
436 if ($vfeed_group_enabled) {
437 if ($feed_id != $vgroup_last_feed && $line["feed_title"]) {
438
439 $cur_feed_title = $line["feed_title"];
440 $vgroup_last_feed = $feed_id;
441
442 $cur_feed_title = htmlspecialchars($cur_feed_title);
443
444 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
445
446 $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
447 "<div style='float : right'>$feed_icon_img</div>".
448 "<a class='title' href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
449 $line["feed_title"]."</a>
450 $vf_catchup_link</div>";
451
452
453 }
454 }
455
456 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
457 onmouseout='postMouseOut($id)'";
458
459 $reply['content'] .= "<div class='hl $class' orig-feed-id='$feed_id' id='RROW-$id' $mouseover_attrs>";
460
461 $reply['content'] .= "<div class='hlLeft'>";
462
463 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
464 type=\"checkbox\" onclick=\"toggleSelectRow2(this)\"
465 class='rchk'>";
466
467 $reply['content'] .= "$marked_pic";
468 $reply['content'] .= "$published_pic";
469
470 $reply['content'] .= "</div>";
471
472 $reply['content'] .= "<div onclick='return hlClicked(event, $id)'
473 class=\"hlTitle\"><span class='hlContent $hlc_suffix'>";
474 $reply['content'] .= "<a id=\"RTITLE-$id\" class=\"title $hlc_suffix\"
475 href=\"" . htmlspecialchars($line["link"]) . "\"
476 onclick=\"\">" .
477 truncate_string($line["title"], 200);
478
479 if (get_pref('SHOW_CONTENT_PREVIEW')) {
480 $reply['content'] .= "<span class=\"contentPreview\">" . $line["content_preview"] . "</span>";
481 }
482
483 $reply['content'] .= "</a></span>";
484
485 $reply['content'] .= $labels_str;
486
487 $reply['content'] .= "</div>";
488
489 if (!$vfeed_group_enabled) {
490 if (@$line["feed_title"]) {
491 $rgba = @$rgba_cache[$feed_id];
492
493 $reply['content'] .= "<span class=\"hlFeed\"><a style=\"background : rgba($rgba, 0.3)\" href=\"#\" onclick=\"viewfeed({feed:$feed_id})\">".
494 truncate_string($line["feed_title"],30)."</a></span>";
495 }
496 }
497
498
499 $reply['content'] .= "<span class=\"hlUpdated\">";
500
501 $reply['content'] .= "<div title='$date_entered_fmt'>$updated_fmt</div>
502 </span>";
503
504 $reply['content'] .= "<div class=\"hlRight\">";
505
506 $reply['content'] .= $score_pic;
507
508 if ($line["feed_title"] && !$vfeed_group_enabled) {
509
510 $reply['content'] .= "<span onclick=\"viewfeed({feed:$feed_id})\"
511 style=\"cursor : pointer\"
512 title=\"".htmlspecialchars($line['feed_title'])."\">
513 $feed_icon_img</span>";
514 }
515
516 $reply['content'] .= "</div>";
517 $reply['content'] .= "</div>";
518
519 } else {
520
521 if ($line["tag_cache"])
522 $tags = explode(",", $line["tag_cache"]);
523 else
524 $tags = false;
525
526 $line["content"] = sanitize($line["content"],
527 sql_bool_to_bool($line['hide_images']), false, $entry_site_url, $highlight_words, $line["id"]);
528
529 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_RENDER_ARTICLE_CDM) as $p) {
530 $line = $p->hook_render_article_cdm($line);
531 }
532
533 if ($vfeed_group_enabled && $line["feed_title"]) {
534 if ($feed_id != $vgroup_last_feed) {
535
536 $cur_feed_title = $line["feed_title"];
537 $vgroup_last_feed = $feed_id;
538
539 $cur_feed_title = htmlspecialchars($cur_feed_title);
540
541 $vf_catchup_link = "<a class='catchup' onclick='catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
542
543 $has_feed_icon = feed_has_icon($feed_id);
544
545 if ($has_feed_icon) {
546 $feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"".ICONS_URL."/$feed_id.ico\" alt=\"\">";
547 } else {
548 //$feed_icon_img = "<img class=\"tinyFeedIcon\" src=\"images/blank_icon.gif\" alt=\"\">";
549 }
550
551 $reply['content'] .= "<div id='FTITLE-$feed_id' class='cdmFeedTitle'>".
552 "<div style=\"float : right\">$feed_icon_img</div>".
553 "<a href=\"#\" class='title' onclick=\"viewfeed({feed:$feed_id})\">".
554 $line["feed_title"]."</a> $vf_catchup_link</div>";
555
556 }
557 }
558
559 $mouseover_attrs = "onmouseover='postMouseIn(event, $id)'
560 onmouseout='postMouseOut($id)'";
561
562 $expanded_class = $expand_cdm ? "expanded" : "expandable";
563
564 $reply['content'] .= "<div class=\"cdm $hlc_suffix $expanded_class $class\"
565 id=\"RROW-$id\" orig-feed-id='$feed_id' $mouseover_attrs>";
566
567 $reply['content'] .= "<div class=\"cdmHeader\">";
568 $reply['content'] .= "<div style=\"vertical-align : middle\">";
569
570 $reply['content'] .= "<input dojoType=\"dijit.form.CheckBox\"
571 type=\"checkbox\" onclick=\"toggleSelectRow2(this, false, true)\"
572 class='rchk'>";
573
574 $reply['content'] .= "$marked_pic";
575 $reply['content'] .= "$published_pic";
576
577 $reply['content'] .= "</div>";
578
579 if ($highlight_words && count($highlight_words > 0)) {
580 foreach ($highlight_words as $word) {
581 $line["title"] = preg_replace("/(\Q$word\E)/i",
582 "<span class=\"highlight\">$1</span>", $line["title"]);
583 }
584 }
585
586 $reply['content'] .= "<span id=\"RTITLE-$id\"
587 onclick=\"return cdmClicked(event, $id);\"
588 class=\"titleWrap $hlc_suffix\">
589 <a class=\"title $hlc_suffix\"
590 title=\"".htmlspecialchars($line["title"])."\"
591 target=\"_blank\" href=\"".
592 htmlspecialchars($line["link"])."\">".
593 $line["title"] .
594 "</a> <span class=\"author\">$entry_author</span>";
595
596 $reply['content'] .= $labels_str;
597
598 $reply['content'] .= "<span class='collapseBtn' style='display : none'>
599 <img src=\"images/collapse.png\" onclick=\"cdmCollapseArticle(event, $id)\"
600 title=\"".__("Collapse article")."\"/></span>";
601
602 if (!$expand_cdm)
603 $content_hidden = "style=\"display : none\"";
604 else
605 $excerpt_hidden = "style=\"display : none\"";
606
607 $reply['content'] .= "<span $excerpt_hidden id=\"CEXC-$id\" class=\"cdmExcerpt\">" . $content_preview . "</span>";
608
609 $reply['content'] .= "</span>";
610
611 if (!$vfeed_group_enabled) {
612 if (@$line["feed_title"]) {
613 $rgba = @$rgba_cache[$feed_id];
614
615 $reply['content'] .= "<div class=\"hlFeed\">
616 <a href=\"#\" style=\"background-color: rgba($rgba,0.3)\"
617 onclick=\"viewfeed({feed:$feed_id})\">".
618 truncate_string($line["feed_title"],30)."</a>
619 </div>";
620 }
621 }
622
623 $reply['content'] .= "<span class='updated' title='$date_entered_fmt'>
624 $updated_fmt</span>";
625
626 $reply['content'] .= "<div class='scoreWrap' style=\"vertical-align : middle\">";
627 $reply['content'] .= "$score_pic";
628
629 if (!get_pref("VFEED_GROUP_BY_FEED") && $line["feed_title"]) {
630 $reply['content'] .= "<span style=\"cursor : pointer\"
631 title=\"".htmlspecialchars($line["feed_title"])."\"
632 onclick=\"viewfeed({feed:$feed_id})\">$feed_icon_img</span>";
633 }
634 $reply['content'] .= "</div>";
635
636 $reply['content'] .= "</div>";
637
638 $reply['content'] .= "<div class=\"cdmContent\" $content_hidden
639 onclick=\"return cdmClicked(event, $id);\"
640 id=\"CICD-$id\">";
641
642 $reply['content'] .= "<div id=\"POSTNOTE-$id\">";
643 if ($line['note']) {
644 $reply['content'] .= format_article_note($id, $line['note']);
645 }
646 $reply['content'] .= "</div>";
647
648 if (!$line['lang']) $line['lang'] = 'en';
649
650 $reply['content'] .= "<div class=\"cdmContentInner\" lang=\"".$line['lang']."\">";
651
652 if ($line["orig_feed_id"]) {
653
654 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_archived_feeds
655 WHERE id = ".$line["orig_feed_id"]);
656
657 if ($this->dbh->num_rows($tmp_result) != 0) {
658
659 $reply['content'] .= "<div clear='both'>";
660 $reply['content'] .= __("Originally from:");
661
662 $reply['content'] .= "&nbsp;";
663
664 $tmp_line = $this->dbh->fetch_assoc($tmp_result);
665
666 $reply['content'] .= "<a target='_blank'
667 href=' " . htmlspecialchars($tmp_line['site_url']) . "'>" .
668 $tmp_line['title'] . "</a>";
669
670 $reply['content'] .= "&nbsp;";
671
672 $reply['content'] .= "<a target='_blank' href='" . htmlspecialchars($tmp_line['feed_url']) . "'>";
673 $reply['content'] .= "<img title='".__('Feed URL')."'class='tinyFeedIcon' src='images/pub_unset.png'></a>";
674
675 $reply['content'] .= "</div>";
676 }
677 }
678
679 $reply['content'] .= "<span id=\"CWRAP-$id\">";
680
681 // if (!$expand_cdm) {
682 $reply['content'] .= "<span id=\"CENCW-$id\" style=\"display : none\">";
683 $reply['content'] .= htmlspecialchars($line["content"]);
684 $reply['content'] .= "</span.";
685
686 // } else {
687 // $reply['content'] .= $line["content"];
688 // }
689
690 $reply['content'] .= "</span>";
691
692 $reply['content'] .= "</div>";
693
694 $reply['content'] .= "<div class=\"cdmIntermediate\">";
695
696 $always_display_enclosures = sql_bool_to_bool($line["always_display_enclosures"]);
697 $reply['content'] .= format_article_enclosures($id, $always_display_enclosures, $line["content"], sql_bool_to_bool($line["hide_images"]));
698
699 $reply['content'] .= "</div>";
700
701 $reply['content'] .= "<div class=\"cdmFooter\" onclick=\"cdmFooterClick(event)\">";
702
703 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_LEFT_BUTTON) as $p) {
704 $reply['content'] .= $p->hook_article_left_button($line);
705 }
706
707 $tags_str = format_tags_string($tags, $id);
708
709 $reply['content'] .= "<span class='left'>";
710
711 $reply['content'] .= "<img src='images/tag.png' alt='Tags' title='Tags'>
712 <span id=\"ATSTR-$id\">$tags_str</span>
713 <a title=\"".__('Edit tags for this article')."\"
714 href=\"#\" onclick=\"editArticleTags($id)\">(+)</a>";
715
716 $num_comments = $line["num_comments"];
717 $entry_comments = "";
718
719 if ($num_comments > 0) {
720 if ($line["comments"]) {
721 $comments_url = htmlspecialchars($line["comments"]);
722 } else {
723 $comments_url = htmlspecialchars($line["link"]);
724 }
725 $entry_comments = "<a class=\"postComments\"
726 target='_blank' href=\"$comments_url\">$num_comments ".
727 _ngettext("comment", "comments", $num_comments)."</a>";
728
729 } else {
730 if ($line["comments"] && $line["link"] != $line["comments"]) {
731 $entry_comments = "<a class=\"postComments\" target='_blank' href=\"".htmlspecialchars($line["comments"])."\">".__("comments")."</a>";
732 }
733 }
734
735 if ($entry_comments) $reply['content'] .= "&nbsp;($entry_comments)";
736
737 $reply['content'] .= "</span>";
738 $reply['content'] .= "<div>";
739
740 // $reply['content'] .= "$marked_pic";
741 // $reply['content'] .= "$published_pic";
742
743 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_BUTTON) as $p) {
744 $reply['content'] .= $p->hook_article_button($line);
745 }
746
747 $reply['content'] .= "</div>";
748 $reply['content'] .= "</div>";
749
750 $reply['content'] .= "</div>";
751
752 $reply['content'] .= "</div>";
753
754 }
755
756 ++$lnum;
757 }
758
759 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("PE", $timing_info);
760
761 } else if (!is_numeric($result)) {
762 $message = "";
763
764 switch ($view_mode) {
765 case "unread":
766 $message = __("No unread articles found to display.");
767 break;
768 case "updated":
769 $message = __("No updated articles found to display.");
770 break;
771 case "marked":
772 $message = __("No starred articles found to display.");
773 break;
774 default:
775 if ($feed < LABEL_BASE_INDEX) {
776 $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.");
777 } else {
778 $message = __("No articles found to display.");
779 }
780 }
781
782 if (!$offset && $message) {
783 $reply['content'] = "<div class='whiteBox'>$message";
784
785 $reply['content'] .= "<p><span class=\"insensitive\">";
786
787 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
788 WHERE owner_uid = " . $_SESSION['uid']);
789
790 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
791 $last_updated = make_local_datetime($last_updated, false);
792
793 $reply['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
794
795 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
796 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
797
798 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
799
800 if ($num_errors > 0) {
801 $reply['content'] .= "<br/>";
802 $reply['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
803 __('Some feeds have update errors (click for details)')."</a>";
804 }
805 $reply['content'] .= "</span></p></div>";
806
807 }
808 } else if (is_numeric($result) && $result == -1) {
809 $reply['first_id_changed'] = true;
810 }
811
812 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H2", $timing_info);
813
814 return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
815 $vgroup_last_feed, $reply);
816 }
817
818 function catchupAll() {
819 $this->dbh->query("UPDATE ttrss_user_entries SET
820 last_read = NOW(), unread = false WHERE unread = true AND owner_uid = " . $_SESSION["uid"]);
821 ccache_zero_all($_SESSION["uid"]);
822 }
823
824 function view() {
825 $timing_info = microtime(true);
826
827 $reply = array();
828
829 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("0", $timing_info);
830
831 $feed = $this->dbh->escape_string($_REQUEST["feed"]);
832 $method = $this->dbh->escape_string($_REQUEST["m"]);
833 $view_mode = $this->dbh->escape_string($_REQUEST["view_mode"]);
834 $limit = 30;
835 @$cat_view = $_REQUEST["cat"] == "true";
836 @$next_unread_feed = $this->dbh->escape_string($_REQUEST["nuf"]);
837 @$offset = $this->dbh->escape_string($_REQUEST["skip"]);
838 @$vgroup_last_feed = $this->dbh->escape_string($_REQUEST["vgrlf"]);
839 $order_by = $this->dbh->escape_string($_REQUEST["order_by"]);
840 $check_first_id = $this->dbh->escape_string($_REQUEST["fid"]);
841
842 if (is_numeric($feed)) $feed = (int) $feed;
843
844 /* Feed -5 is a special case: it is used to display auxiliary information
845 * when there's nothing to load - e.g. no stuff in fresh feed */
846
847 if ($feed == -5) {
848 print json_encode($this->generate_dashboard_feed());
849 return;
850 }
851
852 $result = false;
853
854 if ($feed < LABEL_BASE_INDEX) {
855 $label_feed = feed_to_label_id($feed);
856 $result = $this->dbh->query("SELECT id FROM ttrss_labels2 WHERE
857 id = '$label_feed' AND owner_uid = " . $_SESSION['uid']);
858 } else if (!$cat_view && is_numeric($feed) && $feed > 0) {
859 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
860 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
861 } else if ($cat_view && is_numeric($feed) && $feed > 0) {
862 $result = $this->dbh->query("SELECT id FROM ttrss_feed_categories WHERE
863 id = '$feed' AND owner_uid = " . $_SESSION['uid']);
864 }
865
866 if ($result && $this->dbh->num_rows($result) == 0) {
867 print json_encode($this->generate_error_feed(__("Feed not found.")));
868 return;
869 }
870
871 /* Updating a label ccache means recalculating all of the caches
872 * so for performance reasons we don't do that here */
873
874 if ($feed >= 0) {
875 ccache_update($feed, $_SESSION["uid"], $cat_view);
876 }
877
878 set_pref("_DEFAULT_VIEW_MODE", $view_mode);
879 set_pref("_DEFAULT_VIEW_ORDER_BY", $order_by);
880
881 /* bump login timestamp if needed */
882 if (time() - $_SESSION["last_login_update"] > 3600) {
883 $this->dbh->query("UPDATE ttrss_users SET last_login = NOW() WHERE id = " .
884 $_SESSION["uid"]);
885 $_SESSION["last_login_update"] = time();
886 }
887
888 if (!$cat_view && is_numeric($feed) && $feed > 0) {
889 $this->dbh->query("UPDATE ttrss_feeds SET last_viewed = NOW()
890 WHERE id = '$feed' AND owner_uid = ".$_SESSION["uid"]);
891 }
892
893 $reply['headlines'] = array();
894
895 $override_order = false;
896 $skip_first_id_check = false;
897
898 switch ($order_by) {
899 case "title":
900 $override_order = "ttrss_entries.title";
901 break;
902 case "date_reverse":
903 $override_order = "score DESC, date_entered, updated";
904 $skip_first_id_check = true;
905 break;
906 case "feed_dates":
907 $override_order = "updated DESC";
908 break;
909 }
910
911 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("04", $timing_info);
912
913 $ret = $this->format_headlines_list($feed, $method,
914 $view_mode, $limit, $cat_view, $next_unread_feed, $offset,
915 $vgroup_last_feed, $override_order, true, $check_first_id, $skip_first_id_check);
916
917 //$topmost_article_ids = $ret[0];
918 $headlines_count = $ret[1];
919 /* $returned_feed = $ret[2]; */
920 $disable_cache = $ret[3];
921 $vgroup_last_feed = $ret[4];
922
923 //$reply['headlines']['content'] =& $ret[5]['content'];
924 //$reply['headlines']['toolbar'] =& $ret[5]['toolbar'];
925
926 $reply['headlines'] = $ret[5];
927
928 if (!$next_unread_feed)
929 $reply['headlines']['id'] = $feed;
930 else
931 $reply['headlines']['id'] = $next_unread_feed;
932
933 $reply['headlines']['is_cat'] = (bool) $cat_view;
934
935 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("05", $timing_info);
936
937 $reply['headlines-info'] = array("count" => (int) $headlines_count,
938 "vgroup_last_feed" => $vgroup_last_feed,
939 "disable_cache" => (bool) $disable_cache);
940
941 if ($_REQUEST["debug"]) $timing_info = print_checkpoint("30", $timing_info);
942
943 $reply['runtime-info'] = make_runtime_info();
944
945 print json_encode($reply);
946
947 }
948
949 private function generate_dashboard_feed() {
950 $reply = array();
951
952 $reply['headlines']['id'] = -5;
953 $reply['headlines']['is_cat'] = false;
954
955 $reply['headlines']['toolbar'] = '';
956
957 $reply['headlines']['content'] = "<div class='whiteBox'>".__('No feed selected.');
958
959 $reply['headlines']['content'] .= "<p><span class=\"insensitive\">";
960
961 $result = $this->dbh->query("SELECT ".SUBSTRING_FOR_DATE."(MAX(last_updated), 1, 19) AS last_updated FROM ttrss_feeds
962 WHERE owner_uid = " . $_SESSION['uid']);
963
964 $last_updated = $this->dbh->fetch_result($result, 0, "last_updated");
965 $last_updated = make_local_datetime($last_updated, false);
966
967 $reply['headlines']['content'] .= sprintf(__("Feeds last updated at %s"), $last_updated);
968
969 $result = $this->dbh->query("SELECT COUNT(id) AS num_errors
970 FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
971
972 $num_errors = $this->dbh->fetch_result($result, 0, "num_errors");
973
974 if ($num_errors > 0) {
975 $reply['headlines']['content'] .= "<br/>";
976 $reply['headlines']['content'] .= "<a class=\"insensitive\" href=\"#\" onclick=\"showFeedsWithErrors()\">".
977 __('Some feeds have update errors (click for details)')."</a>";
978 }
979 $reply['headlines']['content'] .= "</span></p>";
980
981 $reply['headlines-info'] = array("count" => 0,
982 "vgroup_last_feed" => '',
983 "unread" => 0,
984 "disable_cache" => true);
985
986 return $reply;
987 }
988
989 private function generate_error_feed($error) {
990 $reply = array();
991
992 $reply['headlines']['id'] = -7;
993 $reply['headlines']['is_cat'] = false;
994
995 $reply['headlines']['toolbar'] = '';
996 $reply['headlines']['content'] = "<div class='whiteBox'>". $error . "</div>";
997
998 $reply['headlines-info'] = array("count" => 0,
999 "vgroup_last_feed" => '',
1000 "unread" => 0,
1001 "disable_cache" => true);
1002
1003 return $reply;
1004 }
1005
1006 function quickAddFeed() {
1007 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1008 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"addfeed\">";
1009
1010 print "<div id='fadd_multiple_notify' style='display : none'>";
1011 print_notice("Provided URL is a HTML page referencing multiple feeds, please select required feed from the dropdown menu below.");
1012 print "<p></div>";
1013
1014 print "<div class=\"dlgSec\">".__("Feed or site URL")."</div>";
1015 print "<div class=\"dlgSecCont\">";
1016
1017 print "<div style='float : right'>
1018 <img style='display : none'
1019 id='feed_add_spinner' src='images/indicator_white.gif'></div>";
1020
1021 print "<input style=\"font-size : 16px; width : 20em;\"
1022 placeHolder=\"".__("Feed or site URL")."\"
1023 dojoType=\"dijit.form.ValidationTextBox\" required=\"1\" name=\"feed\" id=\"feedDlg_feedUrl\">";
1024
1025 print "<hr/>";
1026
1027 if (get_pref('ENABLE_FEED_CATS')) {
1028 print __('Place in category:') . " ";
1029 print_feed_cat_select("cat", false, 'dojoType="dijit.form.Select"');
1030 }
1031
1032 print "</div>";
1033
1034 print '<div id="feedDlg_feedsContainer" style="display : none">
1035
1036 <div class="dlgSec">' . __('Available feeds') . '</div>
1037 <div class="dlgSecCont">'.
1038 '<select id="feedDlg_feedContainerSelect"
1039 dojoType="dijit.form.Select" size="3">
1040 <script type="dojo/method" event="onChange" args="value">
1041 dijit.byId("feedDlg_feedUrl").attr("value", value);
1042 </script>
1043 </select>'.
1044 '</div></div>';
1045
1046 print "<div id='feedDlg_loginContainer' style='display : none'>
1047
1048 <div class=\"dlgSec\">".__("Authentication")."</div>
1049 <div class=\"dlgSecCont\">".
1050
1051 " <input dojoType=\"dijit.form.TextBox\" name='login'\"
1052 placeHolder=\"".__("Login")."\"
1053 style=\"width : 10em;\"> ".
1054 " <input
1055 placeHolder=\"".__("Password")."\"
1056 dojoType=\"dijit.form.TextBox\" type='password'
1057 style=\"width : 10em;\" name='pass'\">
1058 </div></div>";
1059
1060
1061 print "<div style=\"clear : both\">
1062 <input type=\"checkbox\" name=\"need_auth\" dojoType=\"dijit.form.CheckBox\" id=\"feedDlg_loginCheck\"
1063 onclick='checkboxToggleElement(this, \"feedDlg_loginContainer\")'>
1064 <label for=\"feedDlg_loginCheck\">".
1065 __('This feed requires authentication.')."</div>";
1066
1067 print "</form>";
1068
1069 print "<div class=\"dlgButtons\">
1070 <button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').execute()\">".__('Subscribe')."</button>";
1071
1072 if (!(defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER)) {
1073 print "<button dojoType=\"dijit.form.Button\" onclick=\"return feedBrowser()\">".__('More feeds')."</button>";
1074 }
1075
1076 print "<button dojoType=\"dijit.form.Button\" onclick=\"return dijit.byId('feedAddDlg').hide()\">".__('Cancel')."</button>
1077 </div>";
1078
1079 //return;
1080 }
1081
1082 function feedBrowser() {
1083 if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
1084
1085 $browser_search = $this->dbh->escape_string($_REQUEST["search"]);
1086
1087 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"op\" value=\"rpc\">";
1088 print "<input dojoType=\"dijit.form.TextBox\" style=\"display : none\" name=\"method\" value=\"updateFeedBrowser\">";
1089
1090 print "<div dojoType=\"dijit.Toolbar\">
1091 <div style='float : right'>
1092 <img style='display : none'
1093 id='feed_browser_spinner' src='images/indicator_white.gif'>
1094 <input name=\"search\" dojoType=\"dijit.form.TextBox\" size=\"20\" type=\"search\"
1095 onchange=\"dijit.byId('feedBrowserDlg').update()\" value=\"$browser_search\">
1096 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').update()\">".__('Search')."</button>
1097 </div>";
1098
1099 print " <select name=\"mode\" dojoType=\"dijit.form.Select\" onchange=\"dijit.byId('feedBrowserDlg').update()\">
1100 <option value='1'>" . __('Popular feeds') . "</option>
1101 <option value='2'>" . __('Feed archive') . "</option>
1102 </select> ";
1103
1104 print __("limit:");
1105
1106 print " <select dojoType=\"dijit.form.Select\" name=\"limit\" onchange=\"dijit.byId('feedBrowserDlg').update()\">";
1107
1108 foreach (array(25, 50, 100, 200) as $l) {
1109 //$issel = ($l == $limit) ? "selected=\"1\"" : "";
1110 print "<option value=\"$l\">$l</option>";
1111 }
1112
1113 print "</select> ";
1114
1115 print "</div>";
1116
1117 require_once "feedbrowser.php";
1118
1119 print "<ul class='browseFeedList' id='browseFeedList'>";
1120 print make_feed_browser("", 25);
1121 print "</ul>";
1122
1123 print "<div align='center'>
1124 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').execute()\">".__('Subscribe')."</button>
1125 <button dojoType=\"dijit.form.Button\" style='display : none' id='feed_archive_remove' onclick=\"dijit.byId('feedBrowserDlg').removeFromArchive()\">".__('Remove')."</button>
1126 <button dojoType=\"dijit.form.Button\" onclick=\"dijit.byId('feedBrowserDlg').hide()\" >".__('Cancel')."</button></div>";
1127
1128 }
1129
1130 function search() {
1131 $this->params = explode(":", $this->dbh->escape_string($_REQUEST["param"]), 2);
1132
1133 $active_feed_id = sprintf("%d", $this->params[0]);
1134 $is_cat = $this->params[1] != "false";
1135
1136 print "<div class=\"dlgSec\">".__('Look for')."</div>";
1137
1138 print "<div class=\"dlgSecCont\">";
1139
1140 print "<input dojoType=\"dijit.form.ValidationTextBox\"
1141 style=\"font-size : 16px; width : 20em;\"
1142 required=\"1\" name=\"query\" type=\"search\" value=''>";
1143
1144 print "<hr/><span style='float : right'>".T_sprintf('in %s', getFeedTitle($active_feed_id, $is_cat))."</span>";
1145
1146 if (DB_TYPE == "pgsql") {
1147 print "<hr/>";
1148 print_select("search_language", "", Pref_Feeds::$feed_languages,
1149 "dojoType='dijit.form.Select' title=\"".__('Used for word stemming')."\"");
1150 }
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 ?>