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