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