]> git.wh0rd.org - tt-rss.git/blob - classes/handler/public.php
move db-prefs to OO
[tt-rss.git] / classes / handler / public.php
1 <?php
2 class Handler_Public extends Handler {
3
4 private function generate_syndicated_feed($owner_uid, $feed, $is_cat,
5 $limit, $offset, $search, $search_mode,
6 $view_mode = false, $format = 'atom') {
7
8 require_once "lib/MiniTemplator.class.php";
9
10 $note_style = "background-color : #fff7d5;
11 border-width : 1px; ".
12 "padding : 5px; border-style : dashed; border-color : #e7d796;".
13 "margin-bottom : 1em; color : #9a8c59;";
14
15 if (!$limit) $limit = 60;
16
17 $date_sort_field = "date_entered DESC, updated DESC";
18
19 if ($feed == -2)
20 $date_sort_field = "last_published DESC";
21 else if ($feed == -1)
22 $date_sort_field = "last_marked DESC";
23
24 $qfh_ret = queryFeedHeadlines($feed,
25 1, $view_mode, $is_cat, $search, $search_mode,
26 $date_sort_field, $offset, $owner_uid,
27 false, 0, false, true);
28
29 $result = $qfh_ret[0];
30
31 if ($this->dbh->num_rows($result) != 0) {
32 $ts = strtotime($this->dbh->fetch_result($result, 0, "date_entered"));
33
34 if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) &&
35 strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= $ts) {
36 header('HTTP/1.0 304 Not Modified');
37 return;
38 }
39
40 $last_modified = gmdate("D, d M Y H:i:s", $ts) . " GMT";
41 header("Last-Modified: $last_modified", true);
42 }
43
44 $qfh_ret = queryFeedHeadlines($feed,
45 $limit, $view_mode, $is_cat, $search, $search_mode,
46 $date_sort_field, $offset, $owner_uid,
47 false, 0, false, true);
48
49
50 $result = $qfh_ret[0];
51 $feed_title = htmlspecialchars($qfh_ret[1]);
52 $feed_site_url = $qfh_ret[2];
53 $last_error = $qfh_ret[3];
54
55 $feed_self_url = get_self_url_prefix() .
56 "/public.php?op=rss&id=-2&key=" .
57 get_feed_access_key(-2, false, $owner_uid);
58
59 if (!$feed_site_url) $feed_site_url = get_self_url_prefix();
60
61 if ($format == 'atom') {
62 $tpl = new MiniTemplator;
63
64 $tpl->readTemplateFromFile("templates/generated_feed.txt");
65
66 $tpl->setVariable('FEED_TITLE', $feed_title, true);
67 $tpl->setVariable('VERSION', VERSION, true);
68 $tpl->setVariable('FEED_URL', htmlspecialchars($feed_self_url), true);
69
70 if (PUBSUBHUBBUB_HUB && $feed == -2) {
71 $tpl->setVariable('HUB_URL', htmlspecialchars(PUBSUBHUBBUB_HUB), true);
72 $tpl->addBlock('feed_hub');
73 }
74
75 $tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
76
77 while ($line = $this->dbh->fetch_assoc($result)) {
78
79 $tpl->setVariable('ARTICLE_ID', htmlspecialchars($line['link']), true);
80 $tpl->setVariable('ARTICLE_LINK', htmlspecialchars($line['link']), true);
81 $tpl->setVariable('ARTICLE_TITLE', htmlspecialchars($line['title']), true);
82 $tpl->setVariable('ARTICLE_EXCERPT',
83 truncate_string(strip_tags($line["content_preview"]), 100, '...'), true);
84
85 $content = sanitize($line["content_preview"], false, $owner_uid);
86
87 if ($line['note']) {
88 $content = "<div style=\"$note_style\">Article note: " . $line['note'] . "</div>" .
89 $content;
90 $tpl->setVariable('ARTICLE_NOTE', htmlspecialchars($line['note']), true);
91 }
92
93 $tpl->setVariable('ARTICLE_CONTENT', $content, true);
94
95 $tpl->setVariable('ARTICLE_UPDATED_ATOM',
96 date('c', strtotime($line["updated"])), true);
97 $tpl->setVariable('ARTICLE_UPDATED_RFC822',
98 date(DATE_RFC822, strtotime($line["updated"])), true);
99
100 $tpl->setVariable('ARTICLE_AUTHOR', htmlspecialchars($line['author']), true);
101
102 $tags = get_article_tags($line["id"], $owner_uid);
103
104 foreach ($tags as $tag) {
105 $tpl->setVariable('ARTICLE_CATEGORY', htmlspecialchars($tag), true);
106 $tpl->addBlock('category');
107 }
108
109 $enclosures = get_article_enclosures($line["id"]);
110
111 foreach ($enclosures as $e) {
112 $type = htmlspecialchars($e['content_type']);
113 $url = htmlspecialchars($e['content_url']);
114 $length = $e['duration'];
115
116 $tpl->setVariable('ARTICLE_ENCLOSURE_URL', $url, true);
117 $tpl->setVariable('ARTICLE_ENCLOSURE_TYPE', $type, true);
118 $tpl->setVariable('ARTICLE_ENCLOSURE_LENGTH', $length, true);
119
120 $tpl->addBlock('enclosure');
121 }
122
123 $tpl->addBlock('entry');
124 }
125
126 $tmp = "";
127
128 $tpl->addBlock('feed');
129 $tpl->generateOutputToString($tmp);
130
131 if (@!$_REQUEST["noxml"]) {
132 header("Content-Type: text/xml; charset=utf-8");
133 } else {
134 header("Content-Type: text/plain; charset=utf-8");
135 }
136
137 print $tmp;
138 } else if ($format == 'json') {
139
140 $feed = array();
141
142 $feed['title'] = $feed_title;
143 $feed['version'] = VERSION;
144 $feed['feed_url'] = $feed_self_url;
145
146 if (PUBSUBHUBBUB_HUB && $feed == -2) {
147 $feed['hub_url'] = PUBSUBHUBBUB_HUB;
148 }
149
150 $feed['self_url'] = get_self_url_prefix();
151
152 $feed['articles'] = array();
153
154 while ($line = $this->dbh->fetch_assoc($result)) {
155 $article = array();
156
157 $article['id'] = $line['link'];
158 $article['link'] = $line['link'];
159 $article['title'] = $line['title'];
160 $article['excerpt'] = truncate_string(strip_tags($line["content_preview"]), 100, '...');
161 $article['content'] = sanitize($line["content_preview"], false, $owner_uid);
162 $article['updated'] = date('c', strtotime($line["updated"]));
163
164 if ($line['note']) $article['note'] = $line['note'];
165 if ($article['author']) $article['author'] = $line['author'];
166
167 $tags = get_article_tags($line["id"], $owner_uid);
168
169 if (count($tags) > 0) {
170 $article['tags'] = array();
171
172 foreach ($tags as $tag) {
173 array_push($article['tags'], $tag);
174 }
175 }
176
177 $enclosures = get_article_enclosures($line["id"]);
178
179 if (count($enclosures) > 0) {
180 $article['enclosures'] = array();
181
182 foreach ($enclosures as $e) {
183 $type = $e['content_type'];
184 $url = $e['content_url'];
185 $length = $e['duration'];
186
187 array_push($article['enclosures'], array("url" => $url, "type" => $type, "length" => $length));
188 }
189 }
190
191 array_push($feed['articles'], $article);
192 }
193
194 header("Content-Type: text/json; charset=utf-8");
195 print json_encode($feed);
196
197 } else {
198 header("Content-Type: text/plain; charset=utf-8");
199 print json_encode(array("error" => array("message" => "Unknown format")));
200 }
201 }
202
203 function getUnread() {
204 $login = $this->dbh->escape_string($_REQUEST["login"]);
205 $fresh = $_REQUEST["fresh"] == "1";
206
207 $result = $this->dbh->query("SELECT id FROM ttrss_users WHERE login = '$login'");
208
209 if ($this->dbh->num_rows($result) == 1) {
210 $uid = $this->dbh->fetch_result($result, 0, "id");
211
212 print getGlobalUnread($uid);
213
214 if ($fresh) {
215 print ";";
216 print getFeedArticles(-3, false, true, $uid);
217 }
218
219 } else {
220 print "-1;User not found";
221 }
222
223 }
224
225 function getProfiles() {
226 $login = $this->dbh->escape_string($_REQUEST["login"]);
227
228 $result = $this->dbh->query("SELECT * FROM ttrss_settings_profiles,ttrss_users
229 WHERE ttrss_users.id = ttrss_settings_profiles.owner_uid AND login = '$login' ORDER BY title");
230
231 print "<select dojoType='dijit.form.Select' style='width : 220px; margin : 0px' name='profile'>";
232
233 print "<option value='0'>" . __("Default profile") . "</option>";
234
235 while ($line = $this->dbh->fetch_assoc($result)) {
236 $id = $line["id"];
237 $title = $line["title"];
238
239 print "<option value='$id'>$title</option>";
240 }
241
242 print "</select>";
243 }
244
245 function pubsub() {
246 $mode = $this->dbh->escape_string($_REQUEST['hub_mode']);
247 $feed_id = (int) $this->dbh->escape_string($_REQUEST['id']);
248 $feed_url = $this->dbh->escape_string($_REQUEST['hub_topic']);
249
250 if (!PUBSUBHUBBUB_ENABLED) {
251 header('HTTP/1.0 404 Not Found');
252 echo "404 Not found";
253 return;
254 }
255
256 // TODO: implement hub_verifytoken checking
257
258 $result = $this->dbh->query("SELECT feed_url FROM ttrss_feeds
259 WHERE id = '$feed_id'");
260
261 if ($this->dbh->num_rows($result) != 0) {
262
263 $check_feed_url = $this->dbh->fetch_result($result, 0, "feed_url");
264
265 if ($check_feed_url && ($check_feed_url == $feed_url || !$feed_url)) {
266 if ($mode == "subscribe") {
267
268 $this->dbh->query("UPDATE ttrss_feeds SET pubsub_state = 2
269 WHERE id = '$feed_id'");
270
271 print $_REQUEST['hub_challenge'];
272 return;
273
274 } else if ($mode == "unsubscribe") {
275
276 $this->dbh->query("UPDATE ttrss_feeds SET pubsub_state = 0
277 WHERE id = '$feed_id'");
278
279 print $_REQUEST['hub_challenge'];
280 return;
281
282 } else if (!$mode) {
283
284 // Received update ping, schedule feed update.
285 //update_rss_feed($feed_id, true, true);
286
287 $this->dbh->query("UPDATE ttrss_feeds SET
288 last_update_started = '1970-01-01',
289 last_updated = '1970-01-01' WHERE id = '$feed_id'");
290
291 }
292 } else {
293 header('HTTP/1.0 404 Not Found');
294 echo "404 Not found";
295 }
296 } else {
297 header('HTTP/1.0 404 Not Found');
298 echo "404 Not found";
299 }
300
301 }
302
303 function logout() {
304 logout_user();
305 header("Location: index.php");
306 }
307
308 function share() {
309 $uuid = $this->dbh->escape_string($_REQUEST["key"]);
310
311 $result = $this->dbh->query("SELECT ref_id, owner_uid FROM ttrss_user_entries WHERE
312 uuid = '$uuid'");
313
314 if ($this->dbh->num_rows($result) != 0) {
315 header("Content-Type: text/html");
316
317 $id = $this->dbh->fetch_result($result, 0, "ref_id");
318 $owner_uid = $this->dbh->fetch_result($result, 0, "owner_uid");
319
320 $article = format_article($id, false, true, $owner_uid);
321
322 print_r($article['content']);
323
324 } else {
325 print "Article not found.";
326 }
327
328 }
329
330 function rss() {
331 $feed = $this->dbh->escape_string($_REQUEST["id"]);
332 $key = $this->dbh->escape_string($_REQUEST["key"]);
333 $is_cat = $_REQUEST["is_cat"] != false;
334 $limit = (int)$this->dbh->escape_string($_REQUEST["limit"]);
335 $offset = (int)$this->dbh->escape_string($_REQUEST["offset"]);
336
337 $search = $this->dbh->escape_string($_REQUEST["q"]);
338 $search_mode = $this->dbh->escape_string($_REQUEST["smode"]);
339 $view_mode = $this->dbh->escape_string($_REQUEST["view-mode"]);
340
341 $format = $this->dbh->escape_string($_REQUEST['format']);
342
343 if (!$format) $format = 'atom';
344
345 if (SINGLE_USER_MODE) {
346 authenticate_user("admin", null);
347 }
348
349 $owner_id = false;
350
351 if ($key) {
352 $result = $this->dbh->query("SELECT owner_uid FROM
353 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
354
355 if ($this->dbh->num_rows($result) == 1)
356 $owner_id = $this->dbh->fetch_result($result, 0, "owner_uid");
357 }
358
359 if ($owner_id) {
360 $this->generate_syndicated_feed($owner_id, $feed, $is_cat, $limit,
361 $offset, $search, $search_mode, $view_mode, $format);
362 } else {
363 header('HTTP/1.1 403 Forbidden');
364 }
365 }
366
367 function globalUpdateFeeds() {
368 include "rssfuncs.php";
369 // Update all feeds needing a update.
370 update_daemon_common(0, true, false);
371
372 // Update feedbrowser
373 update_feedbrowser_cache();
374
375 // Purge orphans and cleanup tags
376 purge_orphans();
377
378 cleanup_tags(14, 50000);
379
380 global $pluginhost;
381 $pluginhost->run_hooks($pluginhost::HOOK_UPDATE_TASK, "hook_update_task", $op);
382
383 }
384
385 function sharepopup() {
386 if (SINGLE_USER_MODE) {
387 login_sequence();
388 }
389
390 header('Content-Type: text/html; charset=utf-8');
391 print "<html><head><title>Tiny Tiny RSS</title>";
392
393 print stylesheet_tag("utility.css");
394 print javascript_tag("lib/prototype.js");
395 print javascript_tag("lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls");
396 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
397 </head><body id='sharepopup'>";
398
399 $action = $_REQUEST["action"];
400
401 if ($_SESSION["uid"]) {
402
403 if ($action == 'share') {
404
405 $title = $this->dbh->escape_string(strip_tags($_REQUEST["title"]));
406 $url = $this->dbh->escape_string(strip_tags($_REQUEST["url"]));
407 $content = $this->dbh->escape_string(strip_tags($_REQUEST["content"]));
408 $labels = $this->dbh->escape_string(strip_tags($_REQUEST["labels"]));
409
410 Article::create_published_article($title, $url, $content, $labels,
411 $_SESSION["uid"]);
412
413 print "<script type='text/javascript'>";
414 print "window.close();";
415 print "</script>";
416
417 } else {
418 $title = htmlspecialchars($_REQUEST["title"]);
419 $url = htmlspecialchars($_REQUEST["url"]);
420
421 ?>
422
423 <table height='100%' width='100%'><tr><td colspan='2'>
424 <h1><?php echo __("Share with Tiny Tiny RSS") ?></h1>
425 </td></tr>
426
427 <form id='share_form' name='share_form'>
428
429 <input type="hidden" name="op" value="sharepopup">
430 <input type="hidden" name="action" value="share">
431
432 <tr><td align='right'><?php echo __("Title:") ?></td>
433 <td width='80%'><input name='title' value="<?php echo $title ?>"></td></tr>
434 <tr><td align='right'><?php echo __("URL:") ?></td>
435 <td><input name='url' value="<?php echo $url ?>"></td></tr>
436 <tr><td align='right'><?php echo __("Content:") ?></td>
437 <td><input name='content' value=""></td></tr>
438 <tr><td align='right'><?php echo __("Labels:") ?></td>
439 <td><input name='labels' id="labels_value"
440 placeholder='Alpha, Beta, Gamma' value="">
441 </td></tr>
442
443 <tr><td>
444 <div class="autocomplete" id="labels_choices"
445 style="display : block"></div></td></tr>
446
447 <script type='text/javascript'>document.forms[0].title.focus();</script>
448
449 <script type='text/javascript'>
450 new Ajax.Autocompleter('labels_value', 'labels_choices',
451 "backend.php?op=rpc&method=completeLabels",
452 { tokens: ',', paramName: "search" });
453 </script>
454
455 <tr><td colspan='2'>
456 <div style='float : right' class='insensitive-small'>
457 <?php echo __("Shared article will appear in the Published feed.") ?>
458 </div>
459 <button type="submit"><?php echo __('Share') ?></button>
460 <button onclick="return window.close()"><?php echo __('Cancel') ?></button>
461 </div>
462
463 </form>
464 </td></tr></table>
465 </body></html>
466 <?php
467
468 }
469
470 } else {
471
472 $return = urlencode($_SERVER["REQUEST_URI"])
473 ?>
474
475 <form action="public.php?return=<?php echo $return ?>"
476 method="POST" id="loginForm" name="loginForm">
477
478 <input type="hidden" name="op" value="login">
479
480 <table height='100%' width='100%'><tr><td colspan='2'>
481 <h1><?php echo __("Not logged in") ?></h1></td></tr>
482
483 <tr><td align="right"><?php echo __("Login:") ?></td>
484 <td align="right"><input name="login"
485 value="<?php echo $_SESSION["fake_login"] ?>"></td></tr>
486 <tr><td align="right"><?php echo __("Password:") ?></td>
487 <td align="right"><input type="password" name="password"
488 value="<?php echo $_SESSION["fake_password"] ?>"></td></tr>
489 <tr><td align="right"><?php echo __("Language:") ?></td>
490 <td align="right">
491 <?php
492 print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
493 "style='width : 100%''");
494
495 ?>
496 </td></tr>
497 <tr><td colspan='2'>
498 <button type="submit">
499 <?php echo __('Log in') ?></button>
500
501 <button onclick="return window.close()">
502 <?php echo __('Cancel') ?></button>
503 </td></tr>
504 </table>
505
506 </form>
507 <?php
508 }
509 }
510
511 function login() {
512 if (!SINGLE_USER_MODE) {
513
514 $login = $this->dbh->escape_string($_POST["login"]);
515 $password = $_POST["password"];
516 $remember_me = $_POST["remember_me"];
517
518 if ($remember_me) {
519 session_set_cookie_params(SESSION_COOKIE_LIFETIME);
520 } else {
521 session_set_cookie_params(0);
522 }
523
524 @session_start();
525
526 if (authenticate_user($login, $password)) {
527 $_POST["password"] = "";
528
529 $_SESSION["language"] = $_POST["language"];
530 $_SESSION["ref_schema_version"] = get_schema_version(true);
531 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
532
533 if ($_POST["profile"]) {
534
535 $profile = $this->dbh->escape_string($_POST["profile"]);
536
537 $result = $this->dbh->query("SELECT id FROM ttrss_settings_profiles
538 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
539
540 if ($this->dbh->num_rows($result) != 0) {
541 $_SESSION["profile"] = $profile;
542 }
543 }
544 } else {
545 $_SESSION["login_error_msg"] = __("Incorrect username or password");
546 }
547
548 if ($_REQUEST['return']) {
549 header("Location: " . $_REQUEST['return']);
550 } else {
551 header("Location: " . SELF_URL_PATH);
552 }
553 }
554 }
555
556 function subscribe() {
557 if (SINGLE_USER_MODE) {
558 login_sequence();
559 }
560
561 if ($_SESSION["uid"]) {
562
563 $feed_url = $this->dbh->escape_string(trim($_REQUEST["feed_url"]));
564
565 header('Content-Type: text/html; charset=utf-8');
566 print "<html>
567 <head>
568 <title>Tiny Tiny RSS</title>
569 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
570 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
571 </head>
572 <body>
573 <img class=\"floatingLogo\" src=\"images/logo_small.png\"
574 alt=\"Tiny Tiny RSS\"/>
575 <h1>".__("Subscribe to feed...")."</h1><div class='content'>";
576
577 $rc = subscribe_to_feed($feed_url);
578
579 switch ($rc['code']) {
580 case 0:
581 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
582 break;
583 case 1:
584 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
585 break;
586 case 2:
587 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
588 break;
589 case 3:
590 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
591 break;
592 case 4:
593 print_notice(__("Multiple feed URLs found."));
594 $feed_urls = $rc["feeds"];
595 break;
596 case 5:
597 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
598 break;
599 }
600
601 if ($feed_urls) {
602
603 print "<form action=\"public.php\">";
604 print "<input type=\"hidden\" name=\"op\" value=\"subscribe\">";
605
606 print "<select name=\"feed_url\">";
607
608 foreach ($feed_urls as $url => $name) {
609 $url = htmlspecialchars($url);
610 $name = htmlspecialchars($name);
611
612 print "<option value=\"$url\">$name</option>";
613 }
614
615 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed").
616 "\">";
617
618 print "</form>";
619 }
620
621 $tp_uri = get_self_url_prefix() . "/prefs.php";
622 $tt_uri = get_self_url_prefix();
623
624 if ($rc['code'] <= 2){
625 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
626 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
627
628 $feed_id = $this->dbh->fetch_result($result, 0, "id");
629 } else {
630 $feed_id = 0;
631 }
632 print "<p>";
633
634 if ($feed_id) {
635 print "<form method=\"GET\" style='display: inline'
636 action=\"$tp_uri\">
637 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
638 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
639 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
640 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
641 </form>";
642 }
643
644 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
645 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
646 </form></p>";
647
648 print "</div></body></html>";
649
650 } else {
651 render_login_form();
652 }
653 }
654
655 function subscribe2() {
656 $feed_url = $this->dbh->escape_string(trim($_REQUEST["feed_url"]));
657 $cat_id = $this->dbh->escape_string($_REQUEST["cat_id"]);
658 $from = $this->dbh->escape_string($_REQUEST["from"]);
659
660 /* only read authentication information from POST */
661
662 $auth_login = $this->dbh->escape_string(trim($_POST["auth_login"]));
663 $auth_pass = $this->dbh->escape_string(trim($_POST["auth_pass"]));
664
665 $rc = subscribe_to_feed($feed_url, $cat_id, $auth_login, $auth_pass);
666
667 switch ($rc) {
668 case 1:
669 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
670 break;
671 case 2:
672 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
673 break;
674 case 3:
675 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
676 break;
677 case 0:
678 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
679 break;
680 case 4:
681 print_notice(__("Multiple feed URLs found."));
682
683 $feed_urls = get_feeds_from_html($feed_url);
684 break;
685 case 5:
686 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
687 break;
688 }
689
690 if ($feed_urls) {
691 print "<form action=\"backend.php\">";
692 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
693 print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
694 print "<input type=\"hidden\" name=\"method\" value=\"add\">";
695
696 print "<select name=\"feed_url\">";
697
698 foreach ($feed_urls as $url => $name) {
699 $url = htmlspecialchars($url);
700 $name = htmlspecialchars($name);
701 print "<option value=\"$url\">$name</option>";
702 }
703
704 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed")."\">";
705 print "</form>";
706 }
707
708 $tp_uri = get_self_url_prefix() . "/prefs.php";
709 $tt_uri = get_self_url_prefix();
710
711 if ($rc <= 2){
712 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
713 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
714
715 $feed_id = $this->dbh->fetch_result($result, 0, "id");
716 } else {
717 $feed_id = 0;
718 }
719
720 print "<p>";
721
722 if ($feed_id) {
723 print "<form method=\"GET\" style='display: inline'
724 action=\"$tp_uri\">
725 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
726 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
727 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
728 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
729 </form>";
730 }
731
732 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
733 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
734 </form></p>";
735
736 print "</body></html>";
737 }
738
739 function index() {
740 header("Content-Type: text/plain");
741 print json_encode(array("error" => array("code" => 7)));
742 }
743
744 function forgotpass() {
745 header('Content-Type: text/html; charset=utf-8');
746 print "<html><head><title>Tiny Tiny RSS</title>";
747
748 print stylesheet_tag("utility.css");
749 print javascript_tag("lib/prototype.js");
750
751 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
752 </head><body id='forgotpass'>";
753
754 print '<div class="floatingLogo"><img src="images/logo_small.png"></div>';
755 print "<h1>".__("Password recovery")."</h1>";
756 print "<div class='content'>";
757
758 @$method = $_POST['method'];
759
760 if (!$method) {
761 print_notice(__("You will need to provide valid account name and email. New password will be sent on your email address."));
762
763 print "<form method='POST' action='public.php'>";
764 print "<input type='hidden' name='method' value='do'>";
765 print "<input type='hidden' name='op' value='forgotpass'>";
766
767 print "<fieldset>";
768 print "<label>".__("Login:")."</label>";
769 print "<input type='text' name='login' value='' required>";
770 print "</fieldset>";
771
772 print "<fieldset>";
773 print "<label>".__("Email:")."</label>";
774 print "<input type='email' name='email' value='' required>";
775 print "</fieldset>";
776
777 print "<fieldset>";
778 print "<label>".__("How much is two plus two:")."</label>";
779 print "<input type='text' name='test' value='' required>";
780 print "</fieldset>";
781
782 print "<p/>";
783 print "<button type='submit'>".__("Reset password")."</button>";
784
785 print "</form>";
786 } else if ($method == 'do') {
787
788 $login = $this->dbh->escape_string($_POST["login"]);
789 $email = $this->dbh->escape_string($_POST["email"]);
790 $test = $this->dbh->escape_string($_POST["test"]);
791
792 if (($test != 4 && $test != 'four') || !$email || !$login) {
793 print_error(__('Some of the required form parameters are missing or incorrect.'));
794
795 print "<form method=\"GET\" action=\"public.php\">
796 <input type=\"hidden\" name=\"op\" value=\"forgotpass\">
797 <input type=\"submit\" value=\"".__("Go back")."\">
798 </form>";
799
800 } else {
801
802 $result = $this->dbh->query("SELECT id FROM ttrss_users
803 WHERE login = '$login' AND email = '$email'");
804
805 if ($this->dbh->num_rows($result) != 0) {
806 $id = $this->dbh->fetch_result($result, 0, "id");
807
808 Pref_Users::resetUserPassword($id, false);
809
810 print "<p>";
811
812 print "<p>"."Completed."."</p>";
813
814 print "<form method=\"GET\" action=\"index.php\">
815 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
816 </form>";
817
818 } else {
819 print_error(__("Sorry, login and email combination not found."));
820
821 print "<form method=\"GET\" action=\"public.php\">
822 <input type=\"hidden\" name=\"op\" value=\"forgotpass\">
823 <input type=\"submit\" value=\"".__("Go back")."\">
824 </form>";
825
826 }
827 }
828
829 }
830
831 print "</div>";
832 print "</body>";
833 print "</html>";
834
835 }
836
837 function dbupdate() {
838 if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
839 $_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
840 render_login_form();
841 exit;
842 }
843
844 ?><html>
845 <head>
846 <title>Database Updater</title>
847 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
848 <link rel="stylesheet" type="text/css" href="utility.css"/>
849 </head>
850 <style type="text/css">
851 span.ok { color : #009000; font-weight : bold; }
852 span.err { color : #ff0000; font-weight : bold; }
853 </style>
854 <body>
855 <script type='text/javascript'>
856 function confirmOP() {
857 return confirm("Update the database?");
858 }
859 </script>
860
861 <div class="floatingLogo"><img src="images/logo_small.png"></div>
862
863 <h1><?php echo __("Database Updater") ?></h1>
864
865 <div class="content">
866
867 <?php
868 @$op = $_REQUEST["subop"];
869 $updater = new DbUpdater(Db::get(), DB_TYPE, SCHEMA_VERSION);
870
871 if ($op == "performupdate") {
872 if ($updater->isUpdateRequired()) {
873
874 print "<h2>Performing updates</h2>";
875
876 print "<h3>Updating to schema version " . SCHEMA_VERSION . "</h3>";
877
878 print "<ul>";
879
880 for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
881 print "<li>Performing update up to version $i...";
882
883 $result = $updater->performUpdateTo($i);
884
885 if (!$result) {
886 print "<span class='err'>FAILED!</span></li></ul>";
887
888 print_warning("One of the updates failed. Either retry the process or perform updates manually.");
889 print "<p><form method=\"GET\" action=\"index.php\">
890 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
891 </form>";
892
893 break;
894 } else {
895 print "<span class='ok'>OK!</span></li>";
896 }
897 }
898
899 print "</ul>";
900
901 print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
902
903 print "<p><form method=\"GET\" action=\"index.php\">
904 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
905 </form>";
906
907 } else {
908 print "<h2>Your database is up to date.</h2>";
909
910 print "<p><form method=\"GET\" action=\"index.php\">
911 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
912 </form>";
913 }
914 } else {
915 if ($updater->isUpdateRequired()) {
916
917 print "<h2>Database update required</h2>";
918
919 print "<h3>";
920 printf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.",
921 $updater->getSchemaVersion(), SCHEMA_VERSION);
922 print "</h3>";
923
924 print_warning("Please backup your database before proceeding.");
925
926 print "<form method='POST'>
927 <input type='hidden' name='subop' value='performupdate'>
928 <input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'>
929 </form>";
930
931 } else {
932
933 print "<h2>" . "Tiny Tiny RSS database is up to date." . "</h2>";
934
935 print "<p><form method=\"GET\" action=\"index.php\">
936 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
937 </form>";
938
939 }
940 }
941 ?>
942
943 </div>
944 </body>
945 </html>
946 <?php
947 }
948
949 }
950 ?>