X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=opml.php;h=af3694051d16d64f3b4862c18202ba10e101c8cd;hb=bb9ded547fc50e4091f8635c138cfbd4ccd84f73;hp=10d5ca8becd9ba429904bcea11b7b22f508bd22a;hpb=3d477c2c14f0bab104bb567733e3911339964913;p=tt-rss.git diff --git a/opml.php b/opml.php index 10d5ca8b..af369405 100644 --- a/opml.php +++ b/opml.php @@ -1,137 +1,35 @@ -"; - } - +"; - print "" . date("r", time()) . ""; - print ""; - - $result = db_query($link, "SELECT * FROM ttrss_feeds ORDER BY title"); - - while ($line = db_fetch_assoc($result)) { - $title = $line["title"]; - $url = $line["feed_url"]; - - print ""; - } - - print ""; - } + if (!init_plugins()) return; - function startElement($parser, $name, $attrs) { + $op = $_REQUEST['op']; - if ($name == "OUTLINE") { - $title = db_escape_string($attrs['TEXT']); - $url = db_escape_string($attrs['XMLURL']); + if ($op == "publish"){ + $key = db_escape_string( $_REQUEST["key"]); - if (!$title || !$url) return; + $result = db_query( "SELECT owner_uid + FROM ttrss_access_keys WHERE + access_key = '$key' AND feed_id = 'OPML:Publish'"); - print "Feed $title ($url)... "; + if (db_num_rows($result) == 1) { + $owner_uid = db_fetch_result($result, 0, "owner_uid"); - $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); - - $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE - title = '$title' OR feed_url = '$url'"); - - if ($result && db_num_rows($result) > 0) { - - print " Already imported.
"; - - } else { - - $result = db_query($link, "INSERT INTO ttrss_feeds (title, feed_url) VALUES - ('$title', '$url')"); - - print "Done.
"; - - } - - if ($link) db_close($link); + $opml = new Opml($_REQUEST); + $opml->opml_export("", $owner_uid, true, false); + } else { + print "User not found"; } } - function endElement($parser, $name) { - - - } - - if ($op == "Import") { - - print " - - - -

Importing OPML...

-
"; - - if (WEB_DEMO_MODE) { - print "OPML import is disabled in demo-mode."; - print "

- Return to preferences

"; - - return; - } - - if (is_file($_FILES['opml_file']['tmp_name'])) { - - $xml_parser = xml_parser_create(); - - xml_set_element_handler($xml_parser, "startElement", "endElement"); - - $fp = fopen($_FILES['opml_file']['tmp_name'], "r"); - - if ($fp) { - - while ($data = fread($fp, 4096)) { - - if (!xml_parse($xml_parser, $data, feof($fp))) { - - print sprintf("Unable to parse OPML file, XML error: %s at line %d", - xml_error_string(xml_get_error_code($xml_parser)), - xml_get_current_line_number($xml_parser)); - - print "

- Return to preferences"; - - return; - - } - } - - xml_parser_free($xml_parser); - fclose($fp); - - } else { - print("Error: Could not open OPML input."); - } - - } else { - print "Error: please upload OPML file."; - } - - print "

- Return to preferences"; - - print ""; - - } - -// if ($link) db_close($link); - ?>