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