]> git.wh0rd.org - tt-rss.git/blame - classes/handler/public.php
add label_base_index to init params
[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);
07391e36 352 }
8361e724
AD
353
354 function sharepopup() {
61a748f8
AD
355 if (SINGLE_USER_MODE) {
356 login_sequence($this->link);
357 }
358
8361e724
AD
359 header('Content-Type: text/html; charset=utf-8');
360 print "<html>
361 <head>
362 <title>Tiny Tiny RSS</title>
363 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
364 <script type=\"text/javascript\" src=\"lib/prototype.js\"></script>
1b4d1a6b 365 <script type=\"text/javascript\" src=\"lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls\"></script>
8361e724
AD
366 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
367 </head>
368 <body id='sharepopup'>";
369
370 $action = $_REQUEST["action"];
371
372 if ($_SESSION["uid"]) {
373
d493aba2 374 if ($action == 'share') {
8361e724 375
3972bf59
AD
376 $title = db_escape_string($this->link, strip_tags($_REQUEST["title"]));
377 $url = db_escape_string($this->link, strip_tags($_REQUEST["url"]));
378 $content = db_escape_string($this->link, strip_tags($_REQUEST["content"]));
379 $labels = db_escape_string($this->link, strip_tags($_REQUEST["labels"]));
8361e724 380
50832719 381 Article::create_published_article($this->link, $title, $url, $content, $labels,
1b4d1a6b 382 $_SESSION["uid"]);
8361e724 383
d493aba2
AD
384 print "<script type='text/javascript'>";
385 print "window.close();";
386 print "</script>";
8361e724 387
d493aba2 388 } else {
8361e724
AD
389 $title = htmlspecialchars($_REQUEST["title"]);
390 $url = htmlspecialchars($_REQUEST["url"]);
391
d493aba2 392 ?>
8361e724 393
d493aba2
AD
394 <table height='100%' width='100%'><tr><td colspan='2'>
395 <h1><?php echo __("Share with Tiny Tiny RSS") ?></h1>
396 </td></tr>
8361e724 397
d493aba2 398 <form id='share_form' name='share_form'>
8361e724 399
d493aba2
AD
400 <input type="hidden" name="op" value="sharepopup">
401 <input type="hidden" name="action" value="share">
8361e724 402
22439dad 403 <tr><td align='right'><?php echo __("Title:") ?></td>
d493aba2 404 <td width='80%'><input name='title' value="<?php echo $title ?>"></td></tr>
22439dad 405 <tr><td align='right'><?php echo __("URL:") ?></td>
d493aba2 406 <td><input name='url' value="<?php echo $url ?>"></td></tr>
22439dad 407 <tr><td align='right'><?php echo __("Content:") ?></td>
d493aba2 408 <td><input name='content' value=""></td></tr>
1b4d1a6b
AD
409 <tr><td align='right'><?php echo __("Labels:") ?></td>
410 <td><input name='labels' id="labels_value"
411 placeholder='Alpha, Beta, Gamma' value="">
412 </td></tr>
413
414 <tr><td>
415 <div class="autocomplete" id="labels_choices"
416 style="display : block"></div></td></tr>
8361e724 417
d493aba2 418 <script type='text/javascript'>document.forms[0].title.focus();</script>
8361e724 419
1b4d1a6b
AD
420 <script type='text/javascript'>
421 new Ajax.Autocompleter('labels_value', 'labels_choices',
422 "backend.php?op=rpc&method=completeLabels",
423 { tokens: ',', paramName: "search" });
424 </script>
425
d493aba2
AD
426 <tr><td colspan='2'>
427 <div style='float : right' class='insensitive-small'>
428 <?php echo __("Shared article will appear in the Published feed.") ?>
429 </div>
430 <button type="submit"><?php echo __('Share') ?></button>
431 <button onclick="return window.close()"><?php echo __('Cancel') ?></button>
432 </div>
8361e724 433
d493aba2
AD
434 </form>
435 </td></tr></table>
436 </body></html>
437 <?php
8361e724 438
8361e724
AD
439 }
440
441 } else {
442
d493aba2
AD
443 $return = urlencode($_SERVER["REQUEST_URI"])
444 ?>
445
446 <form action="public.php?return=<?php echo $return ?>"
22439dad 447 method="POST" id="loginForm" name="loginForm">
d493aba2
AD
448
449 <input type="hidden" name="op" value="login">
450
451 <table height='100%' width='100%'><tr><td colspan='2'>
22439dad 452 <h1><?php echo __("Not logged in") ?></h1></td></tr>
d493aba2
AD
453
454 <tr><td align="right"><?php echo __("Login:") ?></td>
455 <td align="right"><input name="login"
456 value="<?php echo $_SESSION["fake_login"] ?>"></td></tr>
457 <tr><td align="right"><?php echo __("Password:") ?></td>
458 <td align="right"><input type="password" name="password"
459 value="<?php echo $_SESSION["fake_password"] ?>"></td></tr>
460 <tr><td align="right"><?php echo __("Language:") ?></td>
461 <td align="right">
462 <?php
463 print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
464 "style='width : 100%''");
465
466 ?>
467 </td></tr>
468 <tr><td colspan='2'>
469 <button type="submit">
470 <?php echo __('Log in') ?></button>
471
472 <button onclick="return window.close()">
473 <?php echo __('Cancel') ?></button>
474 </td></tr>
475 </table>
476
477 </form>
478 <?php
8361e724
AD
479 }
480 }
481
97acbaf1
AD
482 function login() {
483
97acbaf1
AD
484 $_SESSION["prefs_cache"] = array();
485
486 if (!SINGLE_USER_MODE) {
487
3972bf59 488 $login = db_escape_string($this->link, $_POST["login"]);
97acbaf1
AD
489 $password = $_POST["password"];
490 $remember_me = $_POST["remember_me"];
491
492 if (authenticate_user($this->link, $login, $password)) {
493 $_POST["password"] = "";
494
495 $_SESSION["language"] = $_POST["language"];
496 $_SESSION["ref_schema_version"] = get_schema_version($this->link, true);
497 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
498
499 if ($_POST["profile"]) {
500
3972bf59 501 $profile = db_escape_string($this->link, $_POST["profile"]);
97acbaf1
AD
502
503 $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
504 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
505
506 if (db_num_rows($result) != 0) {
507 $_SESSION["profile"] = $profile;
508 $_SESSION["prefs_cache"] = array();
509 }
510 }
511 } else {
512 $_SESSION["login_error_msg"] = __("Incorrect username or password");
513 }
514
515 if ($_REQUEST['return']) {
516 header("Location: " . $_REQUEST['return']);
517 } else {
518 header("Location: " . SELF_URL_PATH);
519 }
520 }
521 }
522
523 function subscribe() {
61a748f8
AD
524 if (SINGLE_USER_MODE) {
525 login_sequence($this->link);
526 }
527
97acbaf1
AD
528 if ($_SESSION["uid"]) {
529
3972bf59 530 $feed_url = db_escape_string($this->link, trim($_REQUEST["feed_url"]));
97acbaf1
AD
531
532 header('Content-Type: text/html; charset=utf-8');
533 print "<html>
534 <head>
535 <title>Tiny Tiny RSS</title>
536 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
537 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
538 </head>
539 <body>
540 <img class=\"floatingLogo\" src=\"images/logo_wide.png\"
541 alt=\"Tiny Tiny RSS\"/>
542 <h1>".__("Subscribe to feed...")."</h1>";
543
544 $rc = subscribe_to_feed($this->link, $feed_url);
545
546 switch ($rc['code']) {
547 case 0:
548 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
549 break;
550 case 1:
551 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
552 break;
553 case 2:
554 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
555 break;
556 case 3:
557 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
558 break;
559 case 4:
560 print_notice(__("Multiple feed URLs found."));
759e5132 561 $feed_urls = $rc["feeds"];
97acbaf1
AD
562 break;
563 case 5:
564 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
565 break;
566 }
567
568 if ($feed_urls) {
569
570 print "<form action=\"public.php\">";
571 print "<input type=\"hidden\" name=\"op\" value=\"subscribe\">";
572
573 print "<select name=\"feed_url\">";
574
575 foreach ($feed_urls as $url => $name) {
576 $url = htmlspecialchars($url);
577 $name = htmlspecialchars($name);
578
579 print "<option value=\"$url\">$name</option>";
580 }
581
582 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed").
583 "\">";
584
585 print "</form>";
586 }
587
588 $tp_uri = get_self_url_prefix() . "/prefs.php";
589 $tt_uri = get_self_url_prefix();
590
591 if ($rc['code'] <= 2){
592 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
593 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
594
595 $feed_id = db_fetch_result($result, 0, "id");
596 } else {
597 $feed_id = 0;
598 }
599 print "<p>";
600
601 if ($feed_id) {
602 print "<form method=\"GET\" style='display: inline'
603 action=\"$tp_uri\">
604 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
605 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
606 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
607 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
608 </form>";
609 }
610
611 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
612 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
613 </form></p>";
614
615 print "</body></html>";
616
617 } else {
618 render_login_form($this->link);
619 }
620 }
621
622 function subscribe2() {
3972bf59
AD
623 $feed_url = db_escape_string($this->link, trim($_REQUEST["feed_url"]));
624 $cat_id = db_escape_string($this->link, $_REQUEST["cat_id"]);
625 $from = db_escape_string($this->link, $_REQUEST["from"]);
97acbaf1
AD
626
627 /* only read authentication information from POST */
628
3972bf59
AD
629 $auth_login = db_escape_string($this->link, trim($_POST["auth_login"]));
630 $auth_pass = db_escape_string($this->link, trim($_POST["auth_pass"]));
97acbaf1
AD
631
632 $rc = subscribe_to_feed($this->link, $feed_url, $cat_id, $auth_login, $auth_pass);
633
634 switch ($rc) {
635 case 1:
636 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
637 break;
638 case 2:
639 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
640 break;
641 case 3:
642 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
643 break;
644 case 0:
645 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
646 break;
647 case 4:
648 print_notice(__("Multiple feed URLs found."));
649
650 $feed_urls = get_feeds_from_html($feed_url);
651 break;
652 case 5:
653 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
654 break;
655 }
656
657 if ($feed_urls) {
658 print "<form action=\"backend.php\">";
659 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
660 print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
661 print "<input type=\"hidden\" name=\"method\" value=\"add\">";
662
663 print "<select name=\"feed_url\">";
664
665 foreach ($feed_urls as $url => $name) {
666 $url = htmlspecialchars($url);
667 $name = htmlspecialchars($name);
668 print "<option value=\"$url\">$name</option>";
669 }
670
671 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed")."\">";
672 print "</form>";
673 }
674
675 $tp_uri = get_self_url_prefix() . "/prefs.php";
676 $tt_uri = get_self_url_prefix();
677
678 if ($rc <= 2){
679 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
680 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
681
682 $feed_id = db_fetch_result($result, 0, "id");
683 } else {
684 $feed_id = 0;
685 }
686
687 print "<p>";
688
689 if ($feed_id) {
690 print "<form method=\"GET\" style='display: inline'
691 action=\"$tp_uri\">
692 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
693 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
694 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
695 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
696 </form>";
697 }
698
699 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
700 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
701 </form></p>";
702
703 print "</body></html>";
704 }
705
706 function index() {
707 header("Content-Type: text/plain");
708 print json_encode(array("error" => array("code" => 7)));
709 }
710
f43e9e97
AD
711 function forgotpass() {
712 header('Content-Type: text/html; charset=utf-8');
713 print "<html>
714 <head>
715 <title>Tiny Tiny RSS</title>
716 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
717 <script type=\"text/javascript\" src=\"lib/prototype.js\"></script>
718 <script type=\"text/javascript\" src=\"lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls\"></script>
719 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
720 </head>
721 <body id='forgotpass'>";
722
723 print '<div class="floatingLogo"><img src="images/logo_wide.png"></div>';
724 print "<h1>".__("Reset password")."</h1>";
725
726 @$method = $_POST['method'];
727
728 if (!$method) {
729 $secretkey = uniqid();
730 $_SESSION["secretkey"] = $secretkey;
731
732 print "<form method='POST' action='public.php'>";
733 print "<input type='hidden' name='secretkey' value='$secretkey'>";
734 print "<input type='hidden' name='method' value='do'>";
735 print "<input type='hidden' name='op' value='forgotpass'>";
736
737 print "<fieldset>";
738 print "<label>".__("Login:")."</label>";
739 print "<input type='text' name='login' value='' required>";
740 print "</fieldset>";
741
742 print "<fieldset>";
743 print "<label>".__("Email:")."</label>";
744 print "<input type='email' name='email' value='' required>";
745 print "</fieldset>";
746
747 print "<fieldset>";
748 print "<label>".__("How much is two plus two:")."</label>";
749 print "<input type='text' name='test' value='' required>";
750 print "</fieldset>";
751
752 print "<p/>";
753 print "<button type='submit'>".__("Reset password")."</button>";
754
755 print "</form>";
756 } else if ($method == 'do') {
757
758 $secretkey = $_POST["secretkey"];
759 $login = db_escape_string($this->link, $_POST["login"]);
760 $email = db_escape_string($this->link, $_POST["email"]);
761 $test = db_escape_string($this->link, $_POST["test"]);
762
763 if (($test != 4 && $test != 'four') || !$email || !$login) {
764 print_error(__('Some of the required form parameters are missing or incorrect.'));
765
766 print "<p><a href=\"public.php?op=forgotpass\">".__("Go back")."</a></p>";
767
768 } else if ($_SESSION["secretkey"] == $secretkey) {
769
770 $result = db_query($this->link, "SELECT id FROM ttrss_users
771 WHERE login = '$login' AND email = '$email'");
772
773 if (db_num_rows($result) != 0) {
774 $id = db_fetch_result($result, 0, "id");
775
776 Pref_Users::resetUserPassword($this->link, $id, false);
777
778 print "<p>".__("Completed.")."</p>";
779
780 } else {
781 print_error(__("Sorry, login and email combination not found."));
782 print "<p><a href=\"public.php?op=forgotpass\">".__("Go back")."</a></p>";
783 }
784
785 } else {
786 print_error(__("Form secret key incorrect. Please enable cookies and try again."));
787 print "<p><a href=\"public.php?op=forgotpass\">".__("Go back")."</a></p>";
788
789 }
790
791 }
792
793 print "</body>";
794 print "</html>";
795
796 }
797
5f0a3741
AD
798}
799?>