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