X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=opml.php;h=bdee88e081694a516cc711290023b3a7d0e09854;hb=e2b8c9273e09091c235959c25d8e4d8122aa6ca8;hp=67ed9139720c92f88ef115301c422ae593ff8928;hpb=b76cdb2f44755f299d94b4dba788f55d86170bc7;p=tt-rss.git diff --git a/opml.php b/opml.php index 67ed9139..bdee88e0 100644 --- a/opml.php +++ b/opml.php @@ -1,137 +1,37 @@ -"; - } - +"; - 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 ""; - } - - function startElement($parser, $name, $attrs) { - - if ($name == "OUTLINE") { - $title = db_escape_string($attrs['TEXT']); - $url = db_escape_string($attrs['XMLURL']); - - if (!$title || !$url) return; - - print "Feed $title ($url)... "; - - if (DB_TYPE == "mysql") { - $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 (!init_plugins()) return; - } - } - - 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; - } + $op = $_REQUEST['op']; - if (is_file($_FILES['opml_file']['tmp_name'])) { - - $xml_parser = xml_parser_create(); + if ($op == "publish"){ + $key = $_REQUEST["key"]; + $pdo = Db::pdo(); - xml_set_element_handler($xml_parser, "startElement", "endElement"); + $sth = $pdo->prepare( "SELECT owner_uid + FROM ttrss_access_keys WHERE + access_key = ? AND feed_id = 'OPML:Publish'"); + $sth->execute([$key]); - $fp = fopen($_FILES['opml_file']['tmp_name'], "r"); + if ($row = $sth->fetch()) { + $owner_uid = $row['owner_uid']; - if ($fp) { + $opml = new Opml($_REQUEST); + $opml->opml_export("", $owner_uid, true, false); - 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."; + } else { + print "User not found"; } - - print "

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