]> git.wh0rd.org - tt-rss.git/blame - classes/handler/public.php
generate_syndicated_feed: add support for virtual feeds provided by plugins
[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,
9090b874 5 $limit, $offset, $search,
d1e631f3 6 $view_mode = false, $format = 'atom', $order = false, $orig_guid = false, $start_ts = false) {
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
2faef834 15 if (!$limit) $limit = 60;
79178062 16
8aa01d79 17 $date_sort_field = "date_entered DESC, updated DESC";
79178062 18
84c53d0e 19 if ($feed == -2 && !$is_cat) {
7ef7dd31 20 $date_sort_field = "last_published DESC";
84c53d0e 21 } else if ($feed == -1 && !$is_cat) {
7ef7dd31 22 $date_sort_field = "last_marked DESC";
84c53d0e 23 }
008ebad9 24
25051fb8
AD
25 switch ($order) {
26 case "title":
81d96c0d 27 $date_sort_field = "ttrss_entries.title, date_entered, updated";
25051fb8
AD
28 break;
29 case "date_reverse":
30 $date_sort_field = "date_entered, updated";
31 break;
32 case "feed_dates":
33 $date_sort_field = "updated DESC";
34 break;
35 }
253dbd48 36
f5a0fb8b
AD
37 $params = array(
38 "owner_uid" => $owner_uid,
39 "feed" => $feed,
40 "limit" => $limit,
41 "view_mode" => $view_mode,
42 "cat_view" => $is_cat,
43 "search" => $search,
44 "override_order" => $date_sort_field,
45 "include_children" => true,
46 "ignore_vfeed_group" => true,
47 "offset" => $offset,
48 "start_ts" => $start_ts
49 );
50
253dbd48
AD
51 if (!$is_cat && is_numeric($feed) && $feed < PLUGIN_FEED_BASE_INDEX && $feed > LABEL_BASE_INDEX) {
52
53 $user_plugins = get_pref("_ENABLED_PLUGINS", $owner_uid);
54
55 $tmppluginhost = new PluginHost();
56 $tmppluginhost->load(PLUGINS, PluginHost::KIND_ALL);
57 $tmppluginhost->load($user_plugins, PluginHost::KIND_USER, $owner_uid);
58 $tmppluginhost->load_data();
59
60 $handler = $tmppluginhost->get_feed_handler(
61 PluginHost::feed_to_pfeed_id($feed));
62
63 if ($handler) {
64 $qfh_ret = $handler->get_headlines(PluginHost::feed_to_pfeed_id($feed),
65 $options);
66 }
67
68 } else {
69 $qfh_ret = Feeds::queryFeedHeadlines($params);
70 }
2e35a707 71
79178062
AD
72 $result = $qfh_ret[0];
73 $feed_title = htmlspecialchars($qfh_ret[1]);
74 $feed_site_url = $qfh_ret[2];
4a80c57c 75 /* $last_error = $qfh_ret[3]; */
79178062
AD
76
77 $feed_self_url = get_self_url_prefix() .
39119f02
JT
78 "/public.php?op=rss&id=$feed&key=" .
79 get_feed_access_key($feed, false, $owner_uid);
79178062
AD
80
81 if (!$feed_site_url) $feed_site_url = get_self_url_prefix();
82
2ebf38a9
AD
83 if ($format == 'atom') {
84 $tpl = new MiniTemplator;
79178062 85
2ebf38a9 86 $tpl->readTemplateFromFile("templates/generated_feed.txt");
79178062 87
2ebf38a9
AD
88 $tpl->setVariable('FEED_TITLE', $feed_title, true);
89 $tpl->setVariable('VERSION', VERSION, true);
90 $tpl->setVariable('FEED_URL', htmlspecialchars($feed_self_url), true);
79178062 91
2ebf38a9 92 $tpl->setVariable('SELF_URL', htmlspecialchars(get_self_url_prefix()), true);
dc393a58 93 while ($line = $result->fetch()) {
399678a1 94
2f1a29d9 95 $line["content_preview"] = sanitize(truncate_string(strip_tags($line["content"]), 100, '...'));
bc262b67 96
891e36f5 97 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
98 $line = $p->hook_query_headlines($line);
99 }
2e35a707 100
399678a1 101 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
92322838 102 $line = $p->hook_article_export_feed($line, $feed, $is_cat);
399678a1
AD
103 }
104
fcf6bfba
AD
105 $tpl->setVariable('ARTICLE_ID',
106 htmlspecialchars($orig_guid ? $line['link'] :
f75e7c64 107 $this->make_article_tag_uri($line['id'], $line['date_entered'])), true);
2ebf38a9
AD
108 $tpl->setVariable('ARTICLE_LINK', htmlspecialchars($line['link']), true);
109 $tpl->setVariable('ARTICLE_TITLE', htmlspecialchars($line['title']), true);
67631438 110 $tpl->setVariable('ARTICLE_EXCERPT', $line["content_preview"], true);
79178062 111
4b19d4ac 112 $content = sanitize($line["content"], false, $owner_uid,
3261dbfa 113 $feed_site_url, false, $line["id"]);
79178062 114
2ebf38a9
AD
115 if ($line['note']) {
116 $content = "<div style=\"$note_style\">Article note: " . $line['note'] . "</div>" .
117 $content;
e9c6e27d 118 $tpl->setVariable('ARTICLE_NOTE', htmlspecialchars($line['note']), true);
119 }
2ebf38a9
AD
120
121 $tpl->setVariable('ARTICLE_CONTENT', $content, true);
122
123 $tpl->setVariable('ARTICLE_UPDATED_ATOM',
124 date('c', strtotime($line["updated"])), true);
125 $tpl->setVariable('ARTICLE_UPDATED_RFC822',
126 date(DATE_RFC822, strtotime($line["updated"])), true);
127
128 $tpl->setVariable('ARTICLE_AUTHOR', htmlspecialchars($line['author']), true);
129
4b7391de 130 $tpl->setVariable('ARTICLE_SOURCE_LINK', htmlspecialchars($line['site_url'] ? $line["site_url"] : get_self_url_prefix()), true);
0ee126ee 131 $tpl->setVariable('ARTICLE_SOURCE_TITLE', htmlspecialchars($line['feed_title'] ? $line['feed_title'] : $feed_title), true);
2ebf38a9 132
7e5f8d9f 133 $tags = Article::get_article_tags($line["id"], $owner_uid);
2ebf38a9
AD
134
135 foreach ($tags as $tag) {
136 $tpl->setVariable('ARTICLE_CATEGORY', htmlspecialchars($tag), true);
137 $tpl->addBlock('category');
138 }
79178062 139
7e5f8d9f 140 $enclosures = Article::get_article_enclosures($line["id"]);
79178062 141
2ebf38a9
AD
142 foreach ($enclosures as $e) {
143 $type = htmlspecialchars($e['content_type']);
144 $url = htmlspecialchars($e['content_url']);
4b7391de 145 $length = $e['duration'] ? $e['duration'] : 1;
9c97041d 146
2ebf38a9
AD
147 $tpl->setVariable('ARTICLE_ENCLOSURE_URL', $url, true);
148 $tpl->setVariable('ARTICLE_ENCLOSURE_TYPE', $type, true);
149 $tpl->setVariable('ARTICLE_ENCLOSURE_LENGTH', $length, true);
79178062 150
2ebf38a9
AD
151 $tpl->addBlock('enclosure');
152 }
79178062 153
2ebf38a9 154 $tpl->addBlock('entry');
79178062
AD
155 }
156
2ebf38a9
AD
157 $tmp = "";
158
159 $tpl->addBlock('feed');
160 $tpl->generateOutputToString($tmp);
161
e6532439 162 if (@!clean($_REQUEST["noxml"])) {
10bdeb4b
AD
163 header("Content-Type: text/xml; charset=utf-8");
164 } else {
165 header("Content-Type: text/plain; charset=utf-8");
166 }
2ebf38a9
AD
167
168 print $tmp;
169 } else if ($format == 'json') {
79178062 170
2ebf38a9 171 $feed = array();
79178062 172
2ebf38a9
AD
173 $feed['title'] = $feed_title;
174 $feed['version'] = VERSION;
175 $feed['feed_url'] = $feed_self_url;
79178062 176
2ebf38a9
AD
177 $feed['self_url'] = get_self_url_prefix();
178
179 $feed['articles'] = array();
180
dc393a58 181 while ($line = $result->fetch()) {
399678a1 182
2f1a29d9 183 $line["content_preview"] = sanitize(truncate_string(strip_tags($line["content_preview"]), 100, '...'));
399678a1 184
891e36f5 185 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_QUERY_HEADLINES) as $p) {
186 $line = $p->hook_query_headlines($line, 100);
187 }
399678a1
AD
188
189 foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
92322838 190 $line = $p->hook_article_export_feed($line, $feed, $is_cat);
399678a1
AD
191 }
192
2ebf38a9 193 $article = array();
79178062 194
2ebf38a9
AD
195 $article['id'] = $line['link'];
196 $article['link'] = $line['link'];
197 $article['title'] = $line['title'];
67631438 198 $article['excerpt'] = $line["content_preview"];
3261dbfa 199 $article['content'] = sanitize($line["content"], false, $owner_uid, $feed_site_url, false, $line["id"]);
2ebf38a9 200 $article['updated'] = date('c', strtotime($line["updated"]));
79178062 201
2ebf38a9
AD
202 if ($line['note']) $article['note'] = $line['note'];
203 if ($article['author']) $article['author'] = $line['author'];
79178062 204
2ed0d6c4 205 $tags = Article::get_article_tags($line["id"], $owner_uid);
2ebf38a9
AD
206
207 if (count($tags) > 0) {
208 $article['tags'] = array();
209
210 foreach ($tags as $tag) {
211 array_push($article['tags'], $tag);
212 }
213 }
214
7e5f8d9f 215 $enclosures = Article::get_article_enclosures($line["id"]);
2ebf38a9
AD
216
217 if (count($enclosures) > 0) {
218 $article['enclosures'] = array();
219
220 foreach ($enclosures as $e) {
221 $type = $e['content_type'];
222 $url = $e['content_url'];
223 $length = $e['duration'];
224
225 array_push($article['enclosures'], array("url" => $url, "type" => $type, "length" => $length));
226 }
227 }
228
229 array_push($feed['articles'], $article);
230 }
231
10bdeb4b 232 header("Content-Type: text/json; charset=utf-8");
2ebf38a9
AD
233 print json_encode($feed);
234
235 } else {
236 header("Content-Type: text/plain; charset=utf-8");
237 print json_encode(array("error" => array("message" => "Unknown format")));
238 }
79178062
AD
239 }
240
5f0a3741 241 function getUnread() {
e6532439
AD
242 $login = clean($_REQUEST["login"]);
243 $fresh = clean($_REQUEST["fresh"]) == "1";
5f0a3741 244
1271407e
AD
245 $sth = $this->pdo->prepare("SELECT id FROM ttrss_users WHERE login = ?");
246 $sth->execute([$login]);
5f0a3741 247
1271407e
AD
248 if ($row = $sth->fetch()) {
249 $uid = $row["id"];
5f0a3741 250
a230bf88 251 print Feeds::getGlobalUnread($uid);
5f0a3741
AD
252
253 if ($fresh) {
254 print ";";
86a8351c 255 print Feeds::getFeedArticles(-3, false, true, $uid);
5f0a3741
AD
256 }
257
258 } else {
259 print "-1;User not found";
260 }
5f0a3741
AD
261 }
262
263 function getProfiles() {
e6532439 264 $login = clean($_REQUEST["login"]);
5f0a3741 265
1271407e
AD
266 $sth = $this->pdo->prepare("SELECT ttrss_settings_profiles.* FROM ttrss_settings_profiles,ttrss_users
267 WHERE ttrss_users.id = ttrss_settings_profiles.owner_uid AND login = ? ORDER BY title");
268 $sth->execute([$login]);
5f0a3741 269
eeee2ccf 270 print "<select dojoType='dijit.form.Select' style='width : 220px; margin : 0px' name='profile'>";
5f0a3741 271
97acbaf1 272 print "<option value='0'>" . __("Default profile") . "</option>";
5f0a3741 273
1271407e 274 while ($line = $sth->fetch()) {
97acbaf1
AD
275 $id = $line["id"];
276 $title = $line["title"];
5f0a3741 277
97acbaf1 278 print "<option value='$id'>$title</option>";
5f0a3741 279 }
97acbaf1
AD
280
281 print "</select>";
5f0a3741
AD
282 }
283
5f0a3741
AD
284 function logout() {
285 logout_user();
286 header("Location: index.php");
287 }
288
5f0a3741 289 function share() {
e6532439 290 $uuid = clean($_REQUEST["key"]);
5f0a3741 291
1271407e
AD
292 $sth = $this->pdo->prepare("SELECT ref_id, owner_uid FROM ttrss_user_entries WHERE
293 uuid = ?");
294 $sth->execute([$uuid]);
5f0a3741 295
1271407e 296 if ($row = $sth->fetch()) {
5f0a3741
AD
297 header("Content-Type: text/html");
298
1271407e
AD
299 $id = $row["ref_id"];
300 $owner_uid = $row["owner_uid"];
5f0a3741 301
7e5f8d9f 302 $article = Article::format_article($id, false, true, $owner_uid);
5f0a3741
AD
303
304 print_r($article['content']);
305
306 } else {
307 print "Article not found.";
308 }
309
310 }
311
312 function rss() {
e6532439
AD
313 $feed = clean($_REQUEST["id"]);
314 $key = clean($_REQUEST["key"]);
315 $is_cat = clean($_REQUEST["is_cat"]);
316 $limit = (int)clean($_REQUEST["limit"]);
317 $offset = (int)clean($_REQUEST["offset"]);
5f0a3741 318
e6532439
AD
319 $search = clean($_REQUEST["q"]);
320 $view_mode = clean($_REQUEST["view-mode"]);
321 $order = clean($_REQUEST["order"]);
322 $start_ts = clean($_REQUEST["ts"]);
5f0a3741 323
e6532439
AD
324 $format = clean($_REQUEST['format']);
325 $orig_guid = clean($_REQUEST["orig_guid"]);
2ebf38a9
AD
326
327 if (!$format) $format = 'atom';
328
5f0a3741 329 if (SINGLE_USER_MODE) {
a42c55f0 330 authenticate_user("admin", null);
5f0a3741
AD
331 }
332
333 $owner_id = false;
334
335 if ($key) {
1271407e
AD
336 $sth = $this->pdo->prepare("SELECT owner_uid FROM
337 ttrss_access_keys WHERE access_key = ? AND feed_id = ?");
338 $sth->execute([$key, $feed]);
5f0a3741 339
1271407e
AD
340 if ($row = $sth->fetch())
341 $owner_id = $row["owner_uid"];
5f0a3741
AD
342 }
343
344 if ($owner_id) {
2fb947eb 345 $this->generate_syndicated_feed($owner_id, $feed, $is_cat, $limit,
9090b874 346 $offset, $search, $view_mode, $format, $order, $orig_guid, $start_ts);
5f0a3741
AD
347 } else {
348 header('HTTP/1.1 403 Forbidden');
349 }
350 }
351
910592b4 352 function updateTask() {
4a80c57c 353 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", false);
910592b4
AD
354 }
355
4e5ddeaf 356 function housekeepingTask() {
4a80c57c 357 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_HOUSE_KEEPING, "hook_house_keeping", false);
4e5ddeaf
AD
358 }
359
07391e36 360 function globalUpdateFeeds() {
df5d2a06 361 RPC::updaterandomfeed_real();
cda55d67 362
4a80c57c 363 PluginHost::getInstance()->run_hooks(PluginHost::HOOK_UPDATE_TASK, "hook_update_task", false);
07391e36 364 }
8361e724
AD
365
366 function sharepopup() {
61a748f8 367 if (SINGLE_USER_MODE) {
6322ac79 368 login_sequence();
61a748f8
AD
369 }
370
8361e724 371 header('Content-Type: text/html; charset=utf-8');
d0ee0f52
AD
372 print "<html><head><title>Tiny Tiny RSS</title>
373 <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
374 <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">";
9a2aed91 375
9dd336a2 376 echo stylesheet_tag("css/default.css");
cdbcb277 377 echo javascript_tag("lib/prototype.js");
6214a076 378 echo javascript_tag("lib/scriptaculous/scriptaculous.js?load=effects,controls");
9a2aed91 379 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
09bc54c6 380 </head><body id='sharepopup' class='ttrss_utility'>";
8361e724 381
e6532439 382 $action = clean($_REQUEST["action"]);
8361e724
AD
383
384 if ($_SESSION["uid"]) {
385
d493aba2 386 if ($action == 'share') {
8361e724 387
e6532439
AD
388 $title = strip_tags(clean($_REQUEST["title"]));
389 $url = strip_tags(clean($_REQUEST["url"]));
390 $content = strip_tags(clean($_REQUEST["content"]));
391 $labels = strip_tags(clean($_REQUEST["labels"]));
8361e724 392
a42c55f0 393 Article::create_published_article($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 {
e6532439
AD
401 $title = htmlspecialchars(clean($_REQUEST["title"]));
402 $url = htmlspecialchars(clean($_REQUEST["url"]));
8361e724 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>
f5a0fb8b 444 </td>
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>
d493aba2
AD
472 <tr><td colspan='2'>
473 <button type="submit">
474 <?php echo __('Log in') ?></button>
475
476 <button onclick="return window.close()">
477 <?php echo __('Cancel') ?></button>
478 </td></tr>
479 </table>
480
481 </form>
482 <?php
8361e724
AD
483 }
484 }
485
97acbaf1 486 function login() {
97acbaf1
AD
487 if (!SINGLE_USER_MODE) {
488
e6532439
AD
489 $login = clean($_POST["login"]);
490 $password = clean($_POST["password"]);
491 $remember_me = clean($_POST["remember_me"]);
97acbaf1 492
f231f438
AD
493 if ($remember_me) {
494 session_set_cookie_params(SESSION_COOKIE_LIFETIME);
495 } else {
496 session_set_cookie_params(0);
497 }
498
a42c55f0 499 if (authenticate_user($login, $password)) {
97acbaf1
AD
500 $_POST["password"] = "";
501
b18d109f
AD
502 if (get_schema_version() >= 120) {
503 $_SESSION["language"] = get_pref("USER_LANGUAGE", $_SESSION["uid"]);
504 }
505
a42c55f0 506 $_SESSION["ref_schema_version"] = get_schema_version(true);
e6532439 507 $_SESSION["bw_limit"] = !!clean($_POST["bw_limit"]);
97acbaf1 508
e6532439 509 if (clean($_POST["profile"])) {
97acbaf1 510
e6532439 511 $profile = clean($_POST["profile"]);
97acbaf1 512
1271407e
AD
513 $sth = $this->pdo->prepare("SELECT id FROM ttrss_settings_profiles
514 WHERE id = ? AND owner_uid = ?");
515 $sth->execute([$profile, $_SESSION['uid']]);
97acbaf1 516
1271407e 517 if ($sth->fetch()) {
97acbaf1 518 $_SESSION["profile"] = $profile;
97acbaf1
AD
519 }
520 }
521 } else {
65e98f40
AD
522
523 // start an empty session to deliver login error message
524 @session_start();
525
f730d7bb
AD
526 if (!isset($_SESSION["login_error_msg"]))
527 $_SESSION["login_error_msg"] = __("Incorrect username or password");
528
fd94d631 529 user_error("Failed login attempt for $login from {$_SERVER['REMOTE_ADDR']}", E_USER_WARNING);
97acbaf1
AD
530 }
531
e6532439
AD
532 if (clean($_REQUEST['return'])) {
533 header("Location: " . clean($_REQUEST['return']));
97acbaf1 534 } else {
b2d42e96 535 header("Location: " . get_self_url_prefix());
97acbaf1
AD
536 }
537 }
538 }
539
f7439d69 540 /* function subtest() {
97b7d5c0
AD
541 header("Content-type: text/plain; charset=utf-8");
542
e6532439 543 $url = clean($_REQUEST["url"]);
97b7d5c0
AD
544
545 print "$url\n\n";
546
547
548 print_r(get_feeds_from_html($url, fetch_file_contents($url)));
549
f7439d69 550 } */
97b7d5c0 551
97acbaf1 552 function subscribe() {
61a748f8 553 if (SINGLE_USER_MODE) {
6322ac79 554 login_sequence();
61a748f8
AD
555 }
556
97acbaf1
AD
557 if ($_SESSION["uid"]) {
558
e6532439 559 $feed_url = trim(clean($_REQUEST["feed_url"]));
97acbaf1
AD
560
561 header('Content-Type: text/html; charset=utf-8');
562 print "<html>
563 <head>
5e68e246 564 <title>Tiny Tiny RSS</title>";
5e68e246
AD
565 print stylesheet_tag("css/default.css");
566
567 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
568 <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
569 <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
d0ee0f52 570
97acbaf1 571 </head>
b51d44a5 572 <body class='claro ttrss_utility'>
884d1650 573 <img class=\"floatingLogo\" src=\"images/logo_small.png\"
97acbaf1 574 alt=\"Tiny Tiny RSS\"/>
884d1650 575 <h1>".__("Subscribe to feed...")."</h1><div class='content'>";
97acbaf1 576
86a8351c 577 $rc = Feeds::subscribe_to_feed($feed_url);
97acbaf1
AD
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."));
759e5132 594 $feed_urls = $rc["feeds"];
97acbaf1
AD
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){
1271407e
AD
625 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
626 feed_url = ? AND owner_uid = ?");
627 $sth->execute([$feed_url, $_SESSION['uid']]);
628 $row = $sth->fetch();
97acbaf1 629
1271407e 630 $feed_id = $row["id"];
97acbaf1
AD
631 } else {
632 $feed_id = 0;
633 }
634 print "<p>";
635
636 if ($feed_id) {
637 print "<form method=\"GET\" style='display: inline'
638 action=\"$tp_uri\">
639 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
640 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
641 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
642 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
643 </form>";
644 }
645
646 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
647 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
648 </form></p>";
649
884d1650 650 print "</div></body></html>";
97acbaf1
AD
651
652 } else {
6322ac79 653 render_login_form();
97acbaf1
AD
654 }
655 }
656
97acbaf1
AD
657 function index() {
658 header("Content-Type: text/plain");
27f7b593 659 print error_json(13);
97acbaf1
AD
660 }
661
f43e9e97 662 function forgotpass() {
67e0cf9a
AD
663 startup_gettext();
664
e6532439 665 @$hash = clean($_REQUEST["hash"]);
5303f9a7 666
f43e9e97 667 header('Content-Type: text/html; charset=utf-8');
d0ee0f52
AD
668 print "<html><head><title>Tiny Tiny RSS</title>
669 <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
670 <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">";
e216d302 671
09bc54c6
AD
672 echo stylesheet_tag("lib/dijit/themes/claro/claro.css");
673 echo stylesheet_tag("css/default.css");
cdbcb277 674 echo javascript_tag("lib/prototype.js");
e216d302
AD
675
676 print "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
09bc54c6 677 </head><body class='claro ttrss_utility'>";
f43e9e97 678
884d1650 679 print '<div class="floatingLogo"><img src="images/logo_small.png"></div>';
483f15d5 680 print "<h1>".__("Password recovery")."</h1>";
884d1650 681 print "<div class='content'>";
f43e9e97 682
e6532439 683 @$method = clean($_POST['method']);
f43e9e97 684
5303f9a7 685 if ($hash) {
e6532439 686 $login = clean($_REQUEST["login"]);
5303f9a7
AD
687
688 if ($login) {
1271407e
AD
689 $sth = $this->pdo->prepare("SELECT id, resetpass_token FROM ttrss_users
690 WHERE login = ?");
691 $sth->execute([$login]);
5303f9a7 692
1271407e
AD
693 if ($row = $sth->fetch()) {
694 $id = $row["id"];
695 $resetpass_token_full = $row["resetpass_token"];
5303f9a7
AD
696 list($timestamp, $resetpass_token) = explode(":", $resetpass_token_full);
697
698 if ($timestamp && $resetpass_token &&
699 $timestamp >= time() - 15*60*60 &&
700 $resetpass_token == $hash) {
701
1271407e
AD
702 $sth = $this->pdo->prepare("UPDATE ttrss_users SET resetpass_token = NULL
703 WHERE id = ?");
704 $sth->execute([$id]);
5303f9a7
AD
705
706 Pref_Users::resetUserPassword($id, true);
707
708 print "<p>"."Completed."."</p>";
709
710 } else {
711 print_error("Some of the information provided is missing or incorrect.");
712 }
713 } else {
714 print_error("Some of the information provided is missing or incorrect.");
715 }
716 } else {
717 print_error("Some of the information provided is missing or incorrect.");
718 }
719
720 print "<form method=\"GET\" action=\"index.php\">
721 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
722 </form>";
723
724 } else if (!$method) {
725 print_notice(__("You will need to provide valid account name and email. A password reset link will be sent to your email address."));
483f15d5 726
f43e9e97 727 print "<form method='POST' action='public.php'>";
f43e9e97
AD
728 print "<input type='hidden' name='method' value='do'>";
729 print "<input type='hidden' name='op' value='forgotpass'>";
730
731 print "<fieldset>";
732 print "<label>".__("Login:")."</label>";
09bc54c6 733 print "<input class='input input-text' type='text' name='login' value='' required>";
f43e9e97
AD
734 print "</fieldset>";
735
736 print "<fieldset>";
737 print "<label>".__("Email:")."</label>";
09bc54c6 738 print "<input class='input input-text' type='email' name='email' value='' required>";
f43e9e97
AD
739 print "</fieldset>";
740
741 print "<fieldset>";
742 print "<label>".__("How much is two plus two:")."</label>";
09bc54c6 743 print "<input class='input input-text' type='text' name='test' value='' required>";
f43e9e97
AD
744 print "</fieldset>";
745
746 print "<p/>";
747 print "<button type='submit'>".__("Reset password")."</button>";
748
749 print "</form>";
750 } else if ($method == 'do') {
751
e6532439
AD
752 $login = clean($_POST["login"]);
753 $email = clean($_POST["email"]);
754 $test = clean($_POST["test"]);
f43e9e97
AD
755
756 if (($test != 4 && $test != 'four') || !$email || !$login) {
757 print_error(__('Some of the required form parameters are missing or incorrect.'));
758
483f15d5
AD
759 print "<form method=\"GET\" action=\"public.php\">
760 <input type=\"hidden\" name=\"op\" value=\"forgotpass\">
761 <input type=\"submit\" value=\"".__("Go back")."\">
762 </form>";
f43e9e97 763
e216d302 764 } else {
f43e9e97 765
5303f9a7
AD
766 print_notice("Password reset instructions are being sent to your email address.");
767
1271407e
AD
768 $sth = $this->pdo->prepare("SELECT id FROM ttrss_users
769 WHERE login = ? AND email = ?");
770 $sth->execute([$login, $email]);
f43e9e97 771
1271407e
AD
772 if ($row = $sth->fetch()) {
773 $id = $row["id"];
f43e9e97 774
5303f9a7
AD
775 if ($id) {
776 $resetpass_token = sha1(get_random_bytes(128));
777 $resetpass_link = get_self_url_prefix() . "/public.php?op=forgotpass&hash=" . $resetpass_token .
778 "&login=" . urlencode($login);
779
780 require_once 'classes/ttrssmailer.php';
781 require_once "lib/MiniTemplator.class.php";
782
783 $tpl = new MiniTemplator;
784
785 $tpl->readTemplateFromFile("templates/resetpass_link_template.txt");
786
787 $tpl->setVariable('LOGIN', $login);
788 $tpl->setVariable('RESETPASS_LINK', $resetpass_link);
789
790 $tpl->addBlock('message');
791
792 $message = "";
f43e9e97 793
5303f9a7 794 $tpl->generateOutputToString($message);
483f15d5 795
5303f9a7
AD
796 $mail = new ttrssMailer();
797
798 $rc = $mail->quickMail($email, $login,
799 __("[tt-rss] Password reset request"),
800 $message, false);
801
802 if (!$rc) print_error($mail->ErrorInfo);
803
1271407e
AD
804 $resetpass_token_full = time() . ":" . $resetpass_token;
805
806 $sth = $this->pdo->prepare("UPDATE ttrss_users
807 SET resetpass_token = ?
808 WHERE login = ? AND email = ?");
5303f9a7 809
1271407e 810 $sth->execute([$resetpass_token_full, $login, $email]);
5303f9a7
AD
811
812 //Pref_Users::resetUserPassword($id, false);
813
814 print "<p>";
815
816 print "<p>"."Completed."."</p>";
817 } else {
818 print_error("User ID not found.");
819 }
483f15d5
AD
820
821 print "<form method=\"GET\" action=\"index.php\">
822 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
823 </form>";
f43e9e97
AD
824
825 } else {
826 print_error(__("Sorry, login and email combination not found."));
483f15d5
AD
827
828 print "<form method=\"GET\" action=\"public.php\">
829 <input type=\"hidden\" name=\"op\" value=\"forgotpass\">
830 <input type=\"submit\" value=\"".__("Go back")."\">
831 </form>";
832
f43e9e97 833 }
f43e9e97
AD
834 }
835
836 }
837
884d1650 838 print "</div>";
f43e9e97
AD
839 print "</body>";
840 print "</html>";
841
b4c47f7e
AD
842 }
843
844 function dbupdate() {
67e0cf9a
AD
845 startup_gettext();
846
f240d26e
AD
847 if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
848 $_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
6322ac79 849 render_login_form();
f240d26e
AD
850 exit;
851 }
852
853 ?><html>
854 <head>
855 <title>Database Updater</title>
856 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
09bc54c6 857 <link rel="stylesheet" type="text/css" href="css/default.css"/>
d0ee0f52
AD
858 <link rel=\"shortcut icon\" type=\"image/png\" href=\"images/favicon.png\">
859 <link rel=\"icon\" type=\"image/png\" sizes=\"72x72\" href=\"images/favicon-72px.png\">
f240d26e
AD
860 </head>
861 <style type="text/css">
862 span.ok { color : #009000; font-weight : bold; }
863 span.err { color : #ff0000; font-weight : bold; }
864 </style>
09bc54c6 865 <body class="claro ttrss_utility">
f240d26e
AD
866 <script type='text/javascript'>
867 function confirmOP() {
868 return confirm("Update the database?");
869 }
870 </script>
871
872 <div class="floatingLogo"><img src="images/logo_small.png"></div>
873
874 <h1><?php echo __("Database Updater") ?></h1>
875
876 <div class="content">
877
878 <?php
e6532439 879 @$op = clean($_REQUEST["subop"]);
1d92297a 880 $updater = new DbUpdater(Db::pdo(), DB_TYPE, SCHEMA_VERSION);
f240d26e
AD
881
882 if ($op == "performupdate") {
883 if ($updater->isUpdateRequired()) {
884
885 print "<h2>Performing updates</h2>";
886
887 print "<h3>Updating to schema version " . SCHEMA_VERSION . "</h3>";
888
889 print "<ul>";
890
891 for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
892 print "<li>Performing update up to version $i...";
893
977cea14 894 $result = $updater->performUpdateTo($i, true);
f240d26e
AD
895
896 if (!$result) {
897 print "<span class='err'>FAILED!</span></li></ul>";
898
899 print_warning("One of the updates failed. Either retry the process or perform updates manually.");
900 print "<p><form method=\"GET\" action=\"index.php\">
901 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
902 </form>";
903
977cea14 904 return;
f240d26e
AD
905 } else {
906 print "<span class='ok'>OK!</span></li>";
907 }
908 }
909
910 print "</ul>";
b4c47f7e 911
f240d26e 912 print_notice("Your Tiny Tiny RSS database is now updated to the latest version.");
b4c47f7e 913
f240d26e
AD
914 print "<p><form method=\"GET\" action=\"index.php\">
915 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
916 </form>";
917
918 } else {
919 print "<h2>Your database is up to date.</h2>";
920
921 print "<p><form method=\"GET\" action=\"index.php\">
922 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
923 </form>";
924 }
925 } else {
926 if ($updater->isUpdateRequired()) {
927
928 print "<h2>Database update required</h2>";
b4c47f7e 929
b8774453
AD
930 print_notice("<h4>".
931 sprintf("Your Tiny Tiny RSS database needs update to the latest version: %d to %d.",
932 $updater->getSchemaVersion(), SCHEMA_VERSION).
933 "</h4>");
b4c47f7e 934
f240d26e 935 print_warning("Please backup your database before proceeding.");
b4c47f7e 936
f240d26e
AD
937 print "<form method='POST'>
938 <input type='hidden' name='subop' value='performupdate'>
939 <input type='submit' onclick='return confirmOP()' value='".__("Perform updates")."'>
940 </form>";
941
942 } else {
943
3c200461 944 print_notice("Tiny Tiny RSS database is up to date.");
f240d26e
AD
945
946 print "<p><form method=\"GET\" action=\"index.php\">
947 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
948 </form>";
949
950 }
951 }
952 ?>
b4c47f7e 953
f240d26e
AD
954 </div>
955 </body>
956 </html>
957 <?php
f43e9e97
AD
958 }
959
41bead9b 960 function cached_url() {
88adf3da 961 @$req_filename = basename($_GET['hash']);
0c6f7b31 962
41bead9b 963 // we don't need an extension to find the file, hash is a complete URL
88adf3da 964 $hash = preg_replace("/\.[^\.]*$/", "", $req_filename);
41bead9b 965
0c6f7b31
AD
966 if ($hash) {
967
0442cbb6 968 $filename = CACHE_DIR . '/images/' . $hash;
0c6f7b31
AD
969
970 if (file_exists($filename)) {
88adf3da 971 header("Content-Disposition: inline; filename=\"$req_filename\"");
8b73bd28
AD
972
973 send_local_file($filename);
974
0c6f7b31
AD
975 } else {
976 header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
977 echo "File not found.";
978 }
979 }
980 }
981
f75e7c64 982 private function make_article_tag_uri($id, $timestamp) {
4b7391de
AD
983
984 $timestamp = date("Y-m-d", strtotime($timestamp));
985
986 return "tag:" . parse_url(get_self_url_prefix(), PHP_URL_HOST) . ",$timestamp:/$id";
987 }
4daaf234
AD
988
989 // this should be used very carefully because this endpoint is exposed to unauthenticated users
990 // plugin data is not loaded because there's no user context and owner_uid/session may or may not be available
991 // in general, don't do anything user-related in here and do not modify $_SESSION
992 public function pluginhandler() {
993 $host = new PluginHost();
994
e6532439
AD
995 $plugin = basename(clean($_REQUEST["plugin"]));
996 $method = clean($_REQUEST["pmethod"]);
4daaf234
AD
997
998 $host->load($plugin, PluginHost::KIND_USER, 0);
999 $host->load_data();
1000
1001 $pclass = $host->get_plugin($plugin);
1002
1003 if ($pclass) {
1004 if (method_exists($pclass, $method)) {
1005 if ($pclass->is_public_method($method)) {
1006 $pclass->$method();
1007 } else {
1008 header("Content-Type: text/json");
1009 print error_json(6);
1010 }
1011 } else {
1012 header("Content-Type: text/json");
1013 print error_json(13);
1014 }
1015 } else {
1016 header("Content-Type: text/json");
1017 print error_json(14);
1018 }
1019 }
5f0a3741 1020}
2352c320 1021?>