]> git.wh0rd.org - tt-rss.git/blame - classes/handler/public.php
fix inline flash/html5 audio player
[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
5f0a3741
AD
283 function share() {
284 $uuid = db_escape_string($_REQUEST["key"]);
285
286 $result = db_query($this->link, "SELECT ref_id, owner_uid FROM ttrss_user_entries WHERE
287 uuid = '$uuid'");
288
289 if (db_num_rows($result) != 0) {
290 header("Content-Type: text/html");
291
292 $id = db_fetch_result($result, 0, "ref_id");
293 $owner_uid = db_fetch_result($result, 0, "owner_uid");
294
64436e10 295 $article = format_article($this->link, $id, false, true, $owner_uid);
5f0a3741
AD
296
297 print_r($article['content']);
298
299 } else {
300 print "Article not found.";
301 }
302
303 }
304
305 function rss() {
5f0a3741
AD
306 $feed = db_escape_string($_REQUEST["id"]);
307 $key = db_escape_string($_REQUEST["key"]);
308 $is_cat = $_REQUEST["is_cat"] != false;
309 $limit = (int)db_escape_string($_REQUEST["limit"]);
ce565216 310 $offset = (int)db_escape_string($_REQUEST["offset"]);
5f0a3741
AD
311
312 $search = db_escape_string($_REQUEST["q"]);
313 $match_on = db_escape_string($_REQUEST["m"]);
314 $search_mode = db_escape_string($_REQUEST["smode"]);
315 $view_mode = db_escape_string($_REQUEST["view-mode"]);
316
2ebf38a9
AD
317 $format = db_escape_string($_REQUEST['format']);
318
319 if (!$format) $format = 'atom';
320
5f0a3741
AD
321 if (SINGLE_USER_MODE) {
322 authenticate_user($this->link, "admin", null);
323 }
324
325 $owner_id = false;
326
327 if ($key) {
328 $result = db_query($this->link, "SELECT owner_uid FROM
329 ttrss_access_keys WHERE access_key = '$key' AND feed_id = '$feed'");
330
331 if (db_num_rows($result) == 1)
332 $owner_id = db_fetch_result($result, 0, "owner_uid");
333 }
334
335 if ($owner_id) {
2fb947eb 336 $this->generate_syndicated_feed($owner_id, $feed, $is_cat, $limit,
ce565216 337 $offset, $search, $search_mode, $match_on, $view_mode, $format);
5f0a3741
AD
338 } else {
339 header('HTTP/1.1 403 Forbidden');
340 }
341 }
342
07391e36
AD
343 function globalUpdateFeeds() {
344 include "rssfuncs.php";
5f0a3741 345 // Update all feeds needing a update.
036cd3a4 346 update_daemon_common($this->link, 0, true, false);
07391e36 347 }
8361e724
AD
348
349 function sharepopup() {
61a748f8
AD
350 if (SINGLE_USER_MODE) {
351 login_sequence($this->link);
352 }
353
8361e724
AD
354 header('Content-Type: text/html; charset=utf-8');
355 print "<html>
356 <head>
357 <title>Tiny Tiny RSS</title>
358 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
359 <script type=\"text/javascript\" src=\"lib/prototype.js\"></script>
1b4d1a6b 360 <script type=\"text/javascript\" src=\"lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls\"></script>
8361e724
AD
361 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
362 </head>
363 <body id='sharepopup'>";
364
365 $action = $_REQUEST["action"];
366
367 if ($_SESSION["uid"]) {
368
d493aba2 369 if ($action == 'share') {
8361e724 370
d493aba2
AD
371 $title = db_escape_string(strip_tags($_REQUEST["title"]));
372 $url = db_escape_string(strip_tags($_REQUEST["url"]));
373 $content = db_escape_string(strip_tags($_REQUEST["content"]));
1b4d1a6b 374 $labels = db_escape_string(strip_tags($_REQUEST["labels"]));
8361e724 375
1b4d1a6b
AD
376 create_published_article($this->link, $title, $url, $content, $labels,
377 $_SESSION["uid"]);
8361e724 378
d493aba2
AD
379 print "<script type='text/javascript'>";
380 print "window.close();";
381 print "</script>";
8361e724 382
d493aba2 383 } else {
8361e724
AD
384 $title = htmlspecialchars($_REQUEST["title"]);
385 $url = htmlspecialchars($_REQUEST["url"]);
386
d493aba2 387 ?>
8361e724 388
d493aba2
AD
389 <table height='100%' width='100%'><tr><td colspan='2'>
390 <h1><?php echo __("Share with Tiny Tiny RSS") ?></h1>
391 </td></tr>
8361e724 392
d493aba2 393 <form id='share_form' name='share_form'>
8361e724 394
d493aba2
AD
395 <input type="hidden" name="op" value="sharepopup">
396 <input type="hidden" name="action" value="share">
8361e724 397
22439dad 398 <tr><td align='right'><?php echo __("Title:") ?></td>
d493aba2 399 <td width='80%'><input name='title' value="<?php echo $title ?>"></td></tr>
22439dad 400 <tr><td align='right'><?php echo __("URL:") ?></td>
d493aba2 401 <td><input name='url' value="<?php echo $url ?>"></td></tr>
22439dad 402 <tr><td align='right'><?php echo __("Content:") ?></td>
d493aba2 403 <td><input name='content' value=""></td></tr>
1b4d1a6b
AD
404 <tr><td align='right'><?php echo __("Labels:") ?></td>
405 <td><input name='labels' id="labels_value"
406 placeholder='Alpha, Beta, Gamma' value="">
407 </td></tr>
408
409 <tr><td>
410 <div class="autocomplete" id="labels_choices"
411 style="display : block"></div></td></tr>
8361e724 412
d493aba2 413 <script type='text/javascript'>document.forms[0].title.focus();</script>
8361e724 414
1b4d1a6b
AD
415 <script type='text/javascript'>
416 new Ajax.Autocompleter('labels_value', 'labels_choices',
417 "backend.php?op=rpc&method=completeLabels",
418 { tokens: ',', paramName: "search" });
419 </script>
420
d493aba2
AD
421 <tr><td colspan='2'>
422 <div style='float : right' class='insensitive-small'>
423 <?php echo __("Shared article will appear in the Published feed.") ?>
424 </div>
425 <button type="submit"><?php echo __('Share') ?></button>
426 <button onclick="return window.close()"><?php echo __('Cancel') ?></button>
427 </div>
8361e724 428
d493aba2
AD
429 </form>
430 </td></tr></table>
431 </body></html>
432 <?php
8361e724 433
8361e724
AD
434 }
435
436 } else {
437
d493aba2
AD
438 $return = urlencode($_SERVER["REQUEST_URI"])
439 ?>
440
441 <form action="public.php?return=<?php echo $return ?>"
22439dad 442 method="POST" id="loginForm" name="loginForm">
d493aba2
AD
443
444 <input type="hidden" name="op" value="login">
445
446 <table height='100%' width='100%'><tr><td colspan='2'>
22439dad 447 <h1><?php echo __("Not logged in") ?></h1></td></tr>
d493aba2
AD
448
449 <tr><td align="right"><?php echo __("Login:") ?></td>
450 <td align="right"><input name="login"
451 value="<?php echo $_SESSION["fake_login"] ?>"></td></tr>
452 <tr><td align="right"><?php echo __("Password:") ?></td>
453 <td align="right"><input type="password" name="password"
454 value="<?php echo $_SESSION["fake_password"] ?>"></td></tr>
455 <tr><td align="right"><?php echo __("Language:") ?></td>
456 <td align="right">
457 <?php
458 print_select_hash("language", $_COOKIE["ttrss_lang"], get_translations(),
459 "style='width : 100%''");
460
461 ?>
462 </td></tr>
463 <tr><td colspan='2'>
464 <button type="submit">
465 <?php echo __('Log in') ?></button>
466
467 <button onclick="return window.close()">
468 <?php echo __('Cancel') ?></button>
469 </td></tr>
470 </table>
471
472 </form>
473 <?php
8361e724
AD
474 }
475 }
476
97acbaf1
AD
477 function login() {
478
97acbaf1
AD
479 $_SESSION["prefs_cache"] = array();
480
481 if (!SINGLE_USER_MODE) {
482
483 $login = db_escape_string($_POST["login"]);
484 $password = $_POST["password"];
485 $remember_me = $_POST["remember_me"];
486
487 if (authenticate_user($this->link, $login, $password)) {
488 $_POST["password"] = "";
489
490 $_SESSION["language"] = $_POST["language"];
491 $_SESSION["ref_schema_version"] = get_schema_version($this->link, true);
492 $_SESSION["bw_limit"] = !!$_POST["bw_limit"];
493
494 if ($_POST["profile"]) {
495
496 $profile = db_escape_string($_POST["profile"]);
497
498 $result = db_query($this->link, "SELECT id FROM ttrss_settings_profiles
499 WHERE id = '$profile' AND owner_uid = " . $_SESSION["uid"]);
500
501 if (db_num_rows($result) != 0) {
502 $_SESSION["profile"] = $profile;
503 $_SESSION["prefs_cache"] = array();
504 }
505 }
506 } else {
507 $_SESSION["login_error_msg"] = __("Incorrect username or password");
508 }
509
510 if ($_REQUEST['return']) {
511 header("Location: " . $_REQUEST['return']);
512 } else {
513 header("Location: " . SELF_URL_PATH);
514 }
515 }
516 }
517
518 function subscribe() {
61a748f8
AD
519 if (SINGLE_USER_MODE) {
520 login_sequence($this->link);
521 }
522
97acbaf1
AD
523 if ($_SESSION["uid"]) {
524
525 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
526
527 header('Content-Type: text/html; charset=utf-8');
528 print "<html>
529 <head>
530 <title>Tiny Tiny RSS</title>
531 <link rel=\"stylesheet\" type=\"text/css\" href=\"utility.css\">
532 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
533 </head>
534 <body>
535 <img class=\"floatingLogo\" src=\"images/logo_wide.png\"
536 alt=\"Tiny Tiny RSS\"/>
537 <h1>".__("Subscribe to feed...")."</h1>";
538
539 $rc = subscribe_to_feed($this->link, $feed_url);
540
541 switch ($rc['code']) {
542 case 0:
543 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
544 break;
545 case 1:
546 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
547 break;
548 case 2:
549 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
550 break;
551 case 3:
552 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
553 break;
554 case 4:
555 print_notice(__("Multiple feed URLs found."));
759e5132 556 $feed_urls = $rc["feeds"];
97acbaf1
AD
557 break;
558 case 5:
559 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
560 break;
561 }
562
563 if ($feed_urls) {
564
565 print "<form action=\"public.php\">";
566 print "<input type=\"hidden\" name=\"op\" value=\"subscribe\">";
567
568 print "<select name=\"feed_url\">";
569
570 foreach ($feed_urls as $url => $name) {
571 $url = htmlspecialchars($url);
572 $name = htmlspecialchars($name);
573
574 print "<option value=\"$url\">$name</option>";
575 }
576
577 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed").
578 "\">";
579
580 print "</form>";
581 }
582
583 $tp_uri = get_self_url_prefix() . "/prefs.php";
584 $tt_uri = get_self_url_prefix();
585
586 if ($rc['code'] <= 2){
587 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
588 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
589
590 $feed_id = db_fetch_result($result, 0, "id");
591 } else {
592 $feed_id = 0;
593 }
594 print "<p>";
595
596 if ($feed_id) {
597 print "<form method=\"GET\" style='display: inline'
598 action=\"$tp_uri\">
599 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
600 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
601 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
602 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
603 </form>";
604 }
605
606 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
607 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
608 </form></p>";
609
610 print "</body></html>";
611
612 } else {
613 render_login_form($this->link);
614 }
615 }
616
617 function subscribe2() {
618 $feed_url = db_escape_string(trim($_REQUEST["feed_url"]));
619 $cat_id = db_escape_string($_REQUEST["cat_id"]);
620 $from = db_escape_string($_REQUEST["from"]);
621
622 /* only read authentication information from POST */
623
624 $auth_login = db_escape_string(trim($_POST["auth_login"]));
625 $auth_pass = db_escape_string(trim($_POST["auth_pass"]));
626
627 $rc = subscribe_to_feed($this->link, $feed_url, $cat_id, $auth_login, $auth_pass);
628
629 switch ($rc) {
630 case 1:
631 print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
632 break;
633 case 2:
634 print_error(T_sprintf("Could not subscribe to <b>%s</b>.", $feed_url));
635 break;
636 case 3:
637 print_error(T_sprintf("No feeds found in <b>%s</b>.", $feed_url));
638 break;
639 case 0:
640 print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
641 break;
642 case 4:
643 print_notice(__("Multiple feed URLs found."));
644
645 $feed_urls = get_feeds_from_html($feed_url);
646 break;
647 case 5:
648 print_error(T_sprintf("Could not subscribe to <b>%s</b>.<br>Can't download the Feed URL.", $feed_url));
649 break;
650 }
651
652 if ($feed_urls) {
653 print "<form action=\"backend.php\">";
654 print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
655 print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
656 print "<input type=\"hidden\" name=\"method\" value=\"add\">";
657
658 print "<select name=\"feed_url\">";
659
660 foreach ($feed_urls as $url => $name) {
661 $url = htmlspecialchars($url);
662 $name = htmlspecialchars($name);
663 print "<option value=\"$url\">$name</option>";
664 }
665
666 print "<input type=\"submit\" value=\"".__("Subscribe to selected feed")."\">";
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 <= 2){
674 $result = db_query($this->link, "SELECT id FROM ttrss_feeds WHERE
675 feed_url = '$feed_url' AND owner_uid = " . $_SESSION["uid"]);
676
677 $feed_id = db_fetch_result($result, 0, "id");
678 } else {
679 $feed_id = 0;
680 }
681
682 print "<p>";
683
684 if ($feed_id) {
685 print "<form method=\"GET\" style='display: inline'
686 action=\"$tp_uri\">
687 <input type=\"hidden\" name=\"tab\" value=\"feedConfig\">
688 <input type=\"hidden\" name=\"method\" value=\"editFeed\">
689 <input type=\"hidden\" name=\"methodparam\" value=\"$feed_id\">
690 <input type=\"submit\" value=\"".__("Edit subscription options")."\">
691 </form>";
692 }
693
694 print "<form style='display: inline' method=\"GET\" action=\"$tt_uri\">
695 <input type=\"submit\" value=\"".__("Return to Tiny Tiny RSS")."\">
696 </form></p>";
697
698 print "</body></html>";
699 }
700
701 function index() {
702 header("Content-Type: text/plain");
703 print json_encode(array("error" => array("code" => 7)));
704 }
705
5f0a3741
AD
706}
707?>