2 class Opml extends Handler_Protected {
4 function csrf_ignore($method) {
5 $csrf_ignored = array("export", "import");
7 return array_search($method, $csrf_ignored) !== false;
11 $output_name = $_REQUEST["filename"];
12 if (!$output_name) $output_name = "TinyTinyRSS.opml";
14 $show_settings = $_REQUEST["settings"];
16 $owner_uid = $_SESSION["uid"];
17 return $this->opml_export($output_name, $owner_uid, false, ($show_settings == 1));
21 $owner_uid = $_SESSION["uid"];
23 header('Content-Type: text/html; charset=utf-8');
27 <link rel=\"stylesheet\" href=\"css/utility.css\" type=\"text/css\">
28 <title>".__("OPML Utility")."</title>
29 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
32 <div class=\"floatingLogo\"><img src=\"images/logo_small.png\"></div>
33 <h1>".__('OPML Utility')."</h1><div class='content'>";
35 add_feed_category("Imported feeds");
37 $this->opml_notice(__("Importing OPML..."));
38 $this->opml_import($owner_uid);
40 print "<br><form method=\"GET\" action=\"prefs.php\">
41 <input type=\"submit\" value=\"".__("Return to preferences")."\">
44 print "</div></body></html>";
51 private function opml_export_category($owner_uid, $cat_id, $hide_private_feeds=false) {
54 $cat_qpart = "parent_cat = '$cat_id'";
55 $feed_cat_qpart = "cat_id = '$cat_id'";
57 $cat_qpart = "parent_cat IS NULL";
58 $feed_cat_qpart = "cat_id IS NULL";
61 if ($hide_private_feeds)
62 $hide_qpart = "(private IS false AND auth_login = '' AND auth_pass = '')";
69 $result = $this->dbh->query("SELECT title FROM ttrss_feed_categories WHERE id = '$cat_id'
70 AND owner_uid = '$owner_uid'");
71 $cat_title = htmlspecialchars($this->dbh->fetch_result($result, 0, "title"));
74 if ($cat_title) $out .= "<outline text=\"$cat_title\">\n";
76 $result = $this->dbh->query("SELECT id,title
77 FROM ttrss_feed_categories WHERE
78 $cat_qpart AND owner_uid = '$owner_uid' ORDER BY order_id, title");
80 while ($line = $this->dbh->fetch_assoc($result)) {
81 $title = htmlspecialchars($line["title"]);
82 $out .= $this->opml_export_category($owner_uid, $line["id"], $hide_private_feeds);
85 $feeds_result = $this->dbh->query("select title, feed_url, site_url
86 from ttrss_feeds where $feed_cat_qpart AND owner_uid = '$owner_uid' AND $hide_qpart
87 order by order_id, title");
89 while ($fline = $this->dbh->fetch_assoc($feeds_result)) {
90 $title = htmlspecialchars($fline["title"]);
91 $url = htmlspecialchars($fline["feed_url"]);
92 $site_url = htmlspecialchars($fline["site_url"]);
95 $html_url_qpart = "htmlUrl=\"$site_url\"";
100 $out .= "<outline type=\"rss\" text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
103 if ($cat_title) $out .= "</outline>\n";
108 function opml_export($name, $owner_uid, $hide_private_feeds=false, $include_settings=true) {
109 if (!$owner_uid) return;
111 if (!isset($_REQUEST["debug"])) {
112 header("Content-type: application/xml+opml");
113 header("Content-Disposition: attachment; filename=" . $name );
115 header("Content-type: text/xml");
118 $out = "<?xml version=\"1.0\" encoding=\"utf-8\"?".">";
120 $out .= "<opml version=\"1.0\">";
122 <dateCreated>" . date("r", time()) . "</dateCreated>
123 <title>Tiny Tiny RSS Feed Export</title>
127 $out .= $this->opml_export_category($owner_uid, false, $hide_private_feeds);
129 # export tt-rss settings
131 if ($include_settings) {
132 $out .= "<outline text=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
134 $result = $this->dbh->query("SELECT pref_name, value FROM ttrss_user_prefs WHERE
135 profile IS NULL AND owner_uid = " . $_SESSION["uid"] . " ORDER BY pref_name");
137 while ($line = $this->dbh->fetch_assoc($result)) {
138 $name = $line["pref_name"];
139 $value = htmlspecialchars($line["value"]);
141 $out .= "<outline pref-name=\"$name\" value=\"$value\"/>";
144 $out .= "</outline>";
146 $out .= "<outline text=\"tt-rss-labels\" schema-version=\"".SCHEMA_VERSION."\">";
148 $result = $this->dbh->query("SELECT * FROM ttrss_labels2 WHERE
149 owner_uid = " . $_SESSION['uid']);
151 while ($line = $this->dbh->fetch_assoc($result)) {
152 $name = htmlspecialchars($line['caption']);
153 $fg_color = htmlspecialchars($line['fg_color']);
154 $bg_color = htmlspecialchars($line['bg_color']);
156 $out .= "<outline label-name=\"$name\" label-fg-color=\"$fg_color\" label-bg-color=\"$bg_color\"/>";
160 $out .= "</outline>";
162 $out .= "<outline text=\"tt-rss-filters\" schema-version=\"".SCHEMA_VERSION."\">";
164 $result = $this->dbh->query("SELECT * FROM ttrss_filters2
165 WHERE owner_uid = ".$_SESSION["uid"]." ORDER BY id");
167 while ($line = $this->dbh->fetch_assoc($result)) {
168 foreach (array('enabled', 'match_any_rule', 'inverse') as $b) {
169 $line[$b] = sql_bool_to_bool($line[$b]);
172 $line["rules"] = array();
173 $line["actions"] = array();
175 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_filters2_rules
176 WHERE filter_id = ".$line["id"]);
178 while ($tmp_line = $this->dbh->fetch_assoc($tmp_result)) {
179 unset($tmp_line["id"]);
180 unset($tmp_line["filter_id"]);
182 $cat_filter = sql_bool_to_bool($tmp_line["cat_filter"]);
184 if ($cat_filter && $tmp_line["cat_id"] || $tmp_line["feed_id"]) {
185 $tmp_line["feed"] = getFeedTitle(
186 $cat_filter ? $tmp_line["cat_id"] : $tmp_line["feed_id"],
189 $tmp_line["feed"] = "";
192 $tmp_line["cat_filter"] = sql_bool_to_bool($tmp_line["cat_filter"]);
193 $tmp_line["inverse"] = sql_bool_to_bool($tmp_line["inverse"]);
195 unset($tmp_line["feed_id"]);
196 unset($tmp_line["cat_id"]);
198 array_push($line["rules"], $tmp_line);
201 $tmp_result = $this->dbh->query("SELECT * FROM ttrss_filters2_actions
202 WHERE filter_id = ".$line["id"]);
204 while ($tmp_line = $this->dbh->fetch_assoc($tmp_result)) {
205 unset($tmp_line["id"]);
206 unset($tmp_line["filter_id"]);
208 array_push($line["actions"], $tmp_line);
212 unset($line["owner_uid"]);
213 $filter = json_encode($line);
215 $out .= "<outline filter-type=\"2\"><![CDATA[$filter]]></outline>";
220 $out .= "</outline>";
223 $out .= "</body></opml>";
226 $doc = new DOMDocument();
227 $doc->formatOutput = true;
228 $doc->preserveWhiteSpace = false;
231 $xpath = new DOMXpath($doc);
232 $outlines = $xpath->query("//outline[@title]");
234 // cleanup empty categories
235 foreach ($outlines as $node) {
236 if ($node->getElementsByTagName('outline')->length == 0)
237 $node->parentNode->removeChild($node);
240 $res = $doc->saveXML();
242 /* // saveXML uses a two-space indent. Change to tabs.
243 $res = preg_replace_callback('/^(?: )+/mu',
246 'return str_repeat("\t", intval(strlen($matches[0])/2));'),
254 private function opml_import_feed($doc, $node, $cat_id, $owner_uid) {
255 $attrs = $node->attributes;
257 $feed_title = $this->dbh->escape_string(mb_substr($attrs->getNamedItem('text')->nodeValue, 0, 250));
258 if (!$feed_title) $feed_title = $this->dbh->escape_string(mb_substr($attrs->getNamedItem('title')->nodeValue, 0, 250));
260 $feed_url = $this->dbh->escape_string($attrs->getNamedItem('xmlUrl')->nodeValue);
261 if (!$feed_url) $feed_url = $this->dbh->escape_string($attrs->getNamedItem('xmlURL')->nodeValue);
263 $site_url = $this->dbh->escape_string(mb_substr($attrs->getNamedItem('htmlUrl')->nodeValue, 0, 250));
265 if ($feed_url && $feed_title) {
266 $result = $this->dbh->query("SELECT id FROM ttrss_feeds WHERE
267 feed_url = '$feed_url' AND owner_uid = '$owner_uid'");
269 if ($this->dbh->num_rows($result) == 0) {
270 #$this->opml_notice("[FEED] [$feed_title/$feed_url] dst_CAT=$cat_id");
271 $this->opml_notice(T_sprintf("Adding feed: %s", $feed_title));
273 if (!$cat_id) $cat_id = 'NULL';
275 $query = "INSERT INTO ttrss_feeds
276 (title, feed_url, owner_uid, cat_id, site_url, order_id) VALUES
277 ('$feed_title', '$feed_url', '$owner_uid',
278 $cat_id, '$site_url', 0)";
279 $this->dbh->query($query);
282 $this->opml_notice(T_sprintf("Duplicate feed: %s", $feed_title));
287 private function opml_import_label($doc, $node, $owner_uid) {
288 $attrs = $node->attributes;
289 $label_name = $this->dbh->escape_string($attrs->getNamedItem('label-name')->nodeValue);
292 $fg_color = $this->dbh->escape_string($attrs->getNamedItem('label-fg-color')->nodeValue);
293 $bg_color = $this->dbh->escape_string($attrs->getNamedItem('label-bg-color')->nodeValue);
295 if (!label_find_id($label_name, $_SESSION['uid'])) {
296 $this->opml_notice(T_sprintf("Adding label %s", htmlspecialchars($label_name)));
297 label_create($label_name, $fg_color, $bg_color, $owner_uid);
299 $this->opml_notice(T_sprintf("Duplicate label: %s", htmlspecialchars($label_name)));
304 private function opml_import_preference($doc, $node, $owner_uid) {
305 $attrs = $node->attributes;
306 $pref_name = $this->dbh->escape_string($attrs->getNamedItem('pref-name')->nodeValue);
309 $pref_value = $this->dbh->escape_string($attrs->getNamedItem('value')->nodeValue);
311 $this->opml_notice(T_sprintf("Setting preference key %s to %s",
312 $pref_name, $pref_value));
314 set_pref($pref_name, $pref_value);
318 private function opml_import_filter($doc, $node, $owner_uid) {
319 $attrs = $node->attributes;
321 $filter_type = $this->dbh->escape_string($attrs->getNamedItem('filter-type')->nodeValue);
323 if ($filter_type == '2') {
324 $filter = json_decode($node->nodeValue, true);
327 $match_any_rule = bool_to_sql_bool($filter["match_any_rule"]);
328 $enabled = bool_to_sql_bool($filter["enabled"]);
329 $inverse = bool_to_sql_bool($filter["inverse"]);
330 $title = db_escape_string($filter["title"]);
332 $this->dbh->query("BEGIN");
334 $this->dbh->query("INSERT INTO ttrss_filters2 (match_any_rule,enabled,inverse,title,owner_uid)
335 VALUES ($match_any_rule, $enabled, $inverse, '$title',
336 ".$_SESSION["uid"].")");
338 $result = $this->dbh->query("SELECT MAX(id) AS id FROM ttrss_filters2 WHERE
339 owner_uid = ".$_SESSION["uid"]);
340 $filter_id = $this->dbh->fetch_result($result, 0, "id");
343 $this->opml_notice(T_sprintf("Adding filter..."));
345 foreach ($filter["rules"] as $rule) {
349 if (!$rule["cat_filter"]) {
350 $tmp_result = $this->dbh->query("SELECT id FROM ttrss_feeds
351 WHERE title = '".$this->dbh->escape_string($rule["feed"])."' AND owner_uid = ".$_SESSION["uid"]);
352 if ($this->dbh->num_rows($tmp_result) > 0) {
353 $feed_id = $this->dbh->fetch_result($tmp_result, 0, "id");
356 $tmp_result = $this->dbh->query("SELECT id FROM ttrss_feed_categories
357 WHERE title = '".$this->dbh->escape_string($rule["feed"])."' AND owner_uid = ".$_SESSION["uid"]);
359 if ($this->dbh->num_rows($tmp_result) > 0) {
360 $cat_id = $this->dbh->fetch_result($tmp_result, 0, "id");
364 $cat_filter = bool_to_sql_bool($rule["cat_filter"]);
365 $reg_exp = $this->dbh->escape_string($rule["reg_exp"]);
366 $filter_type = (int)$rule["filter_type"];
367 $inverse = bool_to_sql_bool($rule["inverse"]);
369 $this->dbh->query("INSERT INTO ttrss_filters2_rules (feed_id,cat_id,filter_id,filter_type,reg_exp,cat_filter,inverse)
370 VALUES ($feed_id, $cat_id, $filter_id, $filter_type, '$reg_exp', $cat_filter,$inverse)");
373 foreach ($filter["actions"] as $action) {
375 $action_id = (int)$action["action_id"];
376 $action_param = $this->dbh->escape_string($action["action_param"]);
378 $this->dbh->query("INSERT INTO ttrss_filters2_actions (filter_id,action_id,action_param)
379 VALUES ($filter_id, $action_id, '$action_param')");
383 $this->dbh->query("COMMIT");
388 private function opml_import_category($doc, $root_node, $owner_uid, $parent_id) {
389 $body = $doc->getElementsByTagName('body');
391 $default_cat_id = (int) get_feed_category('Imported feeds', false);
394 $cat_title = $this->dbh->escape_string(mb_substr($root_node->attributes->getNamedItem('text')->nodeValue, 0, 250));
397 $cat_title = $this->dbh->escape_string(mb_substr($root_node->attributes->getNamedItem('title')->nodeValue, 0, 250));
399 if (!in_array($cat_title, array("tt-rss-filters", "tt-rss-labels", "tt-rss-prefs"))) {
400 $cat_id = get_feed_category($cat_title, $parent_id);
401 $this->dbh->query("BEGIN");
402 if ($cat_id === false) {
403 add_feed_category($cat_title, $parent_id);
404 $cat_id = get_feed_category($cat_title, $parent_id);
406 $this->dbh->query("COMMIT");
411 $outlines = $root_node->childNodes;
414 $xpath = new DOMXpath($doc);
415 $outlines = $xpath->query("//opml/body/outline");
420 #$this->opml_notice("[CAT] $cat_title id: $cat_id P_id: $parent_id");
421 $this->opml_notice(T_sprintf("Processing category: %s", $cat_title ? $cat_title : __("Uncategorized")));
423 foreach ($outlines as $node) {
424 if ($node->hasAttributes() && strtolower($node->tagName) == "outline") {
425 $attrs = $node->attributes;
426 $node_cat_title = $this->dbh->escape_string($attrs->getNamedItem('text')->nodeValue);
428 if (!$node_cat_title)
429 $node_cat_title = $this->dbh->escape_string($attrs->getNamedItem('title')->nodeValue);
431 $node_feed_url = $this->dbh->escape_string($attrs->getNamedItem('xmlUrl')->nodeValue);
433 if ($node_cat_title && !$node_feed_url) {
434 $this->opml_import_category($doc, $node, $owner_uid, $cat_id);
438 $dst_cat_id = $default_cat_id;
440 $dst_cat_id = $cat_id;
443 switch ($cat_title) {
445 $this->opml_import_preference($doc, $node, $owner_uid);
447 case "tt-rss-labels":
448 $this->opml_import_label($doc, $node, $owner_uid);
450 case "tt-rss-filters":
451 $this->opml_import_filter($doc, $node, $owner_uid);
454 $this->opml_import_feed($doc, $node, $dst_cat_id, $owner_uid);
461 function opml_import($owner_uid) {
462 if (!$owner_uid) return;
464 $debug = isset($_REQUEST["debug"]);
467 # if ($debug) $doc = DOMDocument::load("/tmp/test.opml");
469 if ($_FILES['opml_file']['error'] != 0) {
470 print_error(T_sprintf("Upload failed with error code %d",
471 $_FILES['opml_file']['error']));
477 if (is_uploaded_file($_FILES['opml_file']['tmp_name'])) {
478 $tmp_file = tempnam(CACHE_DIR . '/upload', 'opml');
480 $result = move_uploaded_file($_FILES['opml_file']['tmp_name'],
484 print_error(__("Unable to move uploaded file."));
488 print_error(__('Error: please upload OPML file.'));
492 if (is_file($tmp_file)) {
493 $doc = new DOMDocument();
494 $doc->load($tmp_file);
497 print_error(__('Error: unable to find moved OPML file.'));
502 $this->opml_import_category($doc, false, $owner_uid, false);
504 print_error(__('Error while parsing document.'));
508 private function opml_notice($msg) {
512 static function opml_publish_url(){
514 $url_path = get_self_url_prefix();
515 $url_path .= "/opml.php?op=publish&key=" .
516 get_feed_access_key('OPML:Publish', false, $_SESSION["uid"]);