"; } require_once "config.php"; require_once "functions.php"; $link = pg_connect(DB_CONN); pg_query($link, "set client_encoding = 'utf-8'"); if ($op == "Export") { print ""; print "" . date("r", time()) . ""; print ""; $result = pg_query("SELECT * FROM ttrss_feeds ORDER BY title"); while ($line = pg_fetch_assoc($result)) { $title = $line["title"]; $url = $line["feed_url"]; print ""; } print ""; } function startElement($parser, $name, $attrs) { if ($name == "OUTLINE") { $title = pg_escape_string($attrs['TEXT']); $url = pg_escape_string($attrs['XMLURL']); if (!$title || !$url) return; print "Feed $title ($url)... "; $result = pg_query("SELECT id FROM ttrss_feeds WHERE title = '$title' OR feed_url = '$url'"); if (pg_num_rows($result) > 0) { print " Already imported.
"; } else { $result = pg_query("INSERT INTO ttrss_feeds (title, feed_url) VALUES ('$title', '$url')"); print "Done.
"; } } } 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 ""; } pg_close($link); ?>