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