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"];
18 $rc = $this->opml_export($output_name, $owner_uid, false, ($show_settings == 1));
24 $owner_uid = $_SESSION["uid"];
26 header('Content-Type: text/html; charset=utf-8');
30 ".stylesheet_tag("css/default.css")."
31 <title>".__("OPML Utility")."</title>
32 <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"/>
34 <body class='claro ttrss_utility'>
35 <div class=\"floatingLogo\"><img src=\"images/logo_small.png\"></div>
36 <h1>".__('OPML Utility')."</h1><div class='content'>";
38 add_feed_category("Imported feeds");
40 $this->opml_notice(__("Importing OPML..."));
42 $this->opml_import($owner_uid);
44 print "<br><form method=\"GET\" action=\"prefs.php\">
45 <input type=\"submit\" value=\"".__("Return to preferences")."\">
48 print "</div></body></html>";
55 private function opml_export_category($owner_uid, $cat_id, $hide_private_feeds=false) {
57 $cat_id = (int) $cat_id;
59 if ($hide_private_feeds)
60 $hide_qpart = "(private IS false AND auth_login = '' AND auth_pass = '')";
67 $sth = $this->pdo->prepare("SELECT title FROM ttrss_feed_categories WHERE id = ?
69 $sth->execute([$cat_id, $owner_uid]);
71 $cat_title = htmlspecialchars($row['title']);
74 if ($cat_title) $out .= "<outline text=\"$cat_title\">\n";
76 $sth = $this->pdo->prepare("SELECT id,title
77 FROM ttrss_feed_categories WHERE
78 (parent_cat = :cat OR (:cat = 0 AND parent_cat IS NULL)) AND
79 owner_uid = :uid ORDER BY order_id, title");
81 $sth->execute([':cat' => $cat_id, ':uid' => $owner_uid]);
83 while ($line = $sth->fetch()) {
84 $out .= $this->opml_export_category($owner_uid, $line["id"], $hide_private_feeds);
87 $fsth = $this->pdo->prepare("select title, feed_url, site_url
88 FROM ttrss_feeds WHERE
89 (cat_id = :cat OR (:cat = 0 AND cat_id IS NULL)) AND owner_uid = :uid AND $hide_qpart
90 ORDER BY order_id, title");
92 $fsth->execute([':cat' => $cat_id, ':uid' => $owner_uid]);
94 while ($fline = $fsth->fetch()) {
95 $title = htmlspecialchars($fline["title"]);
96 $url = htmlspecialchars($fline["feed_url"]);
97 $site_url = htmlspecialchars($fline["site_url"]);
100 $html_url_qpart = "htmlUrl=\"$site_url\"";
102 $html_url_qpart = "";
105 $out .= "<outline type=\"rss\" text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
108 if ($cat_title) $out .= "</outline>\n";
113 function opml_export($name, $owner_uid, $hide_private_feeds=false, $include_settings=true) {
114 if (!$owner_uid) return;
116 if (!isset($_REQUEST["debug"])) {
117 header("Content-type: application/xml+opml");
118 header("Content-Disposition: attachment; filename=" . $name );
120 header("Content-type: text/xml");
123 $out = "<?xml version=\"1.0\" encoding=\"utf-8\"?".">";
125 $out .= "<opml version=\"1.0\">";
127 <dateCreated>" . date("r", time()) . "</dateCreated>
128 <title>Tiny Tiny RSS Feed Export</title>
132 $out .= $this->opml_export_category($owner_uid, 0, $hide_private_feeds);
134 # export tt-rss settings
136 if ($include_settings) {
137 $out .= "<outline text=\"tt-rss-prefs\" schema-version=\"".SCHEMA_VERSION."\">";
139 $sth = $this->pdo->prepare("SELECT pref_name, value FROM ttrss_user_prefs WHERE
140 profile IS NULL AND owner_uid = ? ORDER BY pref_name");
141 $sth->execute([$owner_uid]);
143 while ($line = $sth->fetch()) {
144 $name = $line["pref_name"];
145 $value = htmlspecialchars($line["value"]);
147 $out .= "<outline pref-name=\"$name\" value=\"$value\"/>";
150 $out .= "</outline>";
152 $out .= "<outline text=\"tt-rss-labels\" schema-version=\"".SCHEMA_VERSION."\">";
154 $sth = $this->pdo->prepare("SELECT * FROM ttrss_labels2 WHERE
156 $sth->execute([$owner_uid]);
158 while ($line = $sth->fetch()) {
159 $name = htmlspecialchars($line['caption']);
160 $fg_color = htmlspecialchars($line['fg_color']);
161 $bg_color = htmlspecialchars($line['bg_color']);
163 $out .= "<outline label-name=\"$name\" label-fg-color=\"$fg_color\" label-bg-color=\"$bg_color\"/>";
167 $out .= "</outline>";
169 $out .= "<outline text=\"tt-rss-filters\" schema-version=\"".SCHEMA_VERSION."\">";
171 $sth = $this->pdo->prepare("SELECT * FROM ttrss_filters2
172 WHERE owner_uid = ? ORDER BY id");
173 $sth->execute([$owner_uid]);
175 while ($line = $sth->fetch()) {
176 $line["rules"] = array();
177 $line["actions"] = array();
179 $tmph = $this->pdo->prepare("SELECT * FROM ttrss_filters2_rules
180 WHERE filter_id = ?");
181 $tmph->execute([$line['id']]);
183 while ($tmp_line = $tmph->fetch()) {
184 unset($tmp_line["id"]);
185 unset($tmp_line["filter_id"]);
187 $cat_filter = $tmp_line["cat_filter"];
189 if (!$tmp_line["match_on"]) {
190 if ($cat_filter && $tmp_line["cat_id"] || $tmp_line["feed_id"]) {
191 $tmp_line["feed"] = Feeds::getFeedTitle(
192 $cat_filter ? $tmp_line["cat_id"] : $tmp_line["feed_id"],
195 $tmp_line["feed"] = "";
199 foreach (json_decode($tmp_line["match_on"], true) as $feed_id) {
201 if (strpos($feed_id, "CAT:") === 0) {
202 $feed_id = (int)substr($feed_id, 4);
204 array_push($match, [Feeds::getCategoryTitle($feed_id), true, false]);
206 array_push($match, [0, true, true]);
210 array_push($match, [Feeds::getFeedTitle((int)$feed_id), false, false]);
212 array_push($match, [0, false, true]);
217 $tmp_line["match"] = $match;
218 unset($tmp_line["match_on"]);
221 unset($tmp_line["feed_id"]);
222 unset($tmp_line["cat_id"]);
224 array_push($line["rules"], $tmp_line);
227 $tmph = $this->pdo->prepare("SELECT * FROM ttrss_filters2_actions
228 WHERE filter_id = ?");
229 $tmph->execute([$line['id']]);
231 while ($tmp_line = $tmph->fetch()) {
232 unset($tmp_line["id"]);
233 unset($tmp_line["filter_id"]);
235 array_push($line["actions"], $tmp_line);
239 unset($line["owner_uid"]);
240 $filter = json_encode($line);
242 $out .= "<outline filter-type=\"2\"><![CDATA[$filter]]></outline>";
247 $out .= "</outline>";
250 $out .= "</body></opml>";
253 $doc = new DOMDocument();
254 $doc->formatOutput = true;
255 $doc->preserveWhiteSpace = false;
258 $xpath = new DOMXpath($doc);
259 $outlines = $xpath->query("//outline[@title]");
261 // cleanup empty categories
262 foreach ($outlines as $node) {
263 if ($node->getElementsByTagName('outline')->length == 0)
264 $node->parentNode->removeChild($node);
267 $res = $doc->saveXML();
269 /* // saveXML uses a two-space indent. Change to tabs.
270 $res = preg_replace_callback('/^(?: )+/mu',
273 'return str_repeat("\t", intval(strlen($matches[0])/2));'),
281 private function opml_import_feed($node, $cat_id, $owner_uid) {
282 $attrs = $node->attributes;
284 $feed_title = mb_substr($attrs->getNamedItem('text')->nodeValue, 0, 250);
285 if (!$feed_title) $feed_title = mb_substr($attrs->getNamedItem('title')->nodeValue, 0, 250);
287 $feed_url = $attrs->getNamedItem('xmlUrl')->nodeValue;
288 if (!$feed_url) $feed_url = $attrs->getNamedItem('xmlURL')->nodeValue;
290 $site_url = mb_substr($attrs->getNamedItem('htmlUrl')->nodeValue, 0, 250);
293 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE
294 feed_url = ? AND owner_uid = ?");
295 $sth->execute([$feed_url, $owner_uid]);
297 if (!$feed_title) $feed_title = '[Unknown]';
299 if (!$sth->fetch()) {
300 #$this->opml_notice("[FEED] [$feed_title/$feed_url] dst_CAT=$cat_id");
301 $this->opml_notice(T_sprintf("Adding feed: %s", $feed_title == '[Unknown]' ? $feed_url : $feed_title));
303 if (!$cat_id) $cat_id = null;
305 $sth = $this->pdo->prepare("INSERT INTO ttrss_feeds
306 (title, feed_url, owner_uid, cat_id, site_url, order_id) VALUES
307 (?, ?, ?, ?, ?, 0)");
309 $sth->execute([$feed_title, $feed_url, $owner_uid, $cat_id, $site_url]);
312 $this->opml_notice(T_sprintf("Duplicate feed: %s", $feed_title == '[Unknown]' ? $feed_url : $feed_title));
317 private function opml_import_label($node, $owner_uid) {
318 $attrs = $node->attributes;
319 $label_name = $attrs->getNamedItem('label-name')->nodeValue;
322 $fg_color = $attrs->getNamedItem('label-fg-color')->nodeValue;
323 $bg_color = $attrs->getNamedItem('label-bg-color')->nodeValue;
325 if (!Labels::find_id($label_name, $_SESSION['uid'])) {
326 $this->opml_notice(T_sprintf("Adding label %s", htmlspecialchars($label_name)));
327 Labels::create($label_name, $fg_color, $bg_color, $owner_uid);
329 $this->opml_notice(T_sprintf("Duplicate label: %s", htmlspecialchars($label_name)));
334 private function opml_import_preference($node) {
335 $attrs = $node->attributes;
336 $pref_name = $attrs->getNamedItem('pref-name')->nodeValue;
339 $pref_value = $attrs->getNamedItem('value')->nodeValue;
341 $this->opml_notice(T_sprintf("Setting preference key %s to %s",
342 $pref_name, $pref_value));
344 set_pref($pref_name, $pref_value);
348 private function opml_import_filter($node) {
349 $attrs = $node->attributes;
351 $filter_type = $attrs->getNamedItem('filter-type')->nodeValue;
353 if ($filter_type == '2') {
354 $filter = json_decode($node->nodeValue, true);
357 $match_any_rule = bool_to_sql_bool($filter["match_any_rule"]);
358 $enabled = bool_to_sql_bool($filter["enabled"]);
359 $inverse = bool_to_sql_bool($filter["inverse"]);
360 $title = $filter["title"];
362 //print "F: $title, $inverse, $enabled, $match_any_rule";
364 $sth = $this->pdo->prepare("INSERT INTO ttrss_filters2 (match_any_rule,enabled,inverse,title,owner_uid)
365 VALUES (?, ?, ?, ?, ?)");
367 $sth->execute([$match_any_rule, $enabled, $inverse, $title, $_SESSION['uid']]);
369 $sth = $this->pdo->prepare("SELECT MAX(id) AS id FROM ttrss_filters2 WHERE
371 $sth->execute([$_SESSION['uid']]);
373 $row = $sth->fetch();
374 $filter_id = $row['id'];
377 $this->opml_notice(T_sprintf("Adding filter..."));
379 foreach ($filter["rules"] as $rule) {
383 if ($rule["match"]) {
387 foreach ($rule["match"] as $match) {
388 list ($name, $is_cat, $is_id) = $match;
391 array_push($match_on, ($is_cat ? "CAT:" : "") . $name);
397 $tsth = $this->pdo->prepare("SELECT id FROM ttrss_feeds
398 WHERE title = ? AND owner_uid = ?");
400 $tsth->execute([$name, $_SESSION['uid']]);
402 if ($row = $tsth->fetch()) {
403 $match_id = $row['id'];
406 $tsth = $this->pdo->prepare("SELECT id FROM ttrss_feed_categories
407 WHERE title = ? AND owner_uid = ?");
408 $tsth->execute([$name, $_SESSION['uid']]);
410 if ($row = $tsth->fetch()) {
411 $match_id = $row['id'];
415 if ($match_id) array_push($match_on, $match_id);
419 $reg_exp = $rule["reg_exp"];
420 $filter_type = (int)$rule["filter_type"];
421 $inverse = bool_to_sql_bool($rule["inverse"]);
422 $match_on = json_encode($match_on);
424 $usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
425 (feed_id,cat_id,match_on,filter_id,filter_type,reg_exp,cat_filter,inverse)
427 (NULL, NULL, ?, ?, ?, ?, false, ?)");
428 $usth->execute([$match_on, $filter_id, $filter_type, $reg_exp, $inverse]);
432 if (!$rule["cat_filter"]) {
433 $tsth = $this->pdo->prepare("SELECT id FROM ttrss_feeds
434 WHERE title = ? AND owner_uid = ?");
436 $tsth->execute([$rule['feed'], $_SESSION['uid']]);
438 if ($row = $tsth->fetch()) {
439 $feed_id = $row['id'];
442 $tsth = $this->pdo->prepare("SELECT id FROM ttrss_feed_categories
443 WHERE title = ? AND owner_uid = ?");
445 $tsth->execute([$rule['feed'], $_SESSION['uid']]);
447 if ($row = $tsth->fetch()) {
448 $feed_id = $row['id'];
452 $cat_filter = bool_to_sql_bool($rule["cat_filter"]);
453 $reg_exp = $rule["reg_exp"];
454 $filter_type = (int)$rule["filter_type"];
455 $inverse = bool_to_sql_bool($rule["inverse"]);
457 $usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_rules
458 (feed_id,cat_id,filter_id,filter_type,reg_exp,cat_filter,inverse)
460 (?, ?, ?, ?, ?, ?, ?)");
461 $usth->execute([$feed_id, $cat_id, $filter_id, $filter_type, $reg_exp, $cat_filter, $inverse]);
465 foreach ($filter["actions"] as $action) {
467 $action_id = (int)$action["action_id"];
468 $action_param = $action["action_param"];
470 $usth = $this->pdo->prepare("INSERT INTO ttrss_filters2_actions
471 (filter_id,action_id,action_param)
474 $usth->execute([$filter_id, $action_id, $action_param]);
481 private function opml_import_category($doc, $root_node, $owner_uid, $parent_id) {
482 $default_cat_id = (int) $this->get_feed_category('Imported feeds', false);
485 $cat_title = mb_substr($root_node->attributes->getNamedItem('text')->nodeValue, 0, 250);
488 $cat_title = mb_substr($root_node->attributes->getNamedItem('title')->nodeValue, 0, 250);
490 if (!in_array($cat_title, array("tt-rss-filters", "tt-rss-labels", "tt-rss-prefs"))) {
491 $cat_id = $this->get_feed_category($cat_title, $parent_id);
493 if ($cat_id === false) {
494 add_feed_category($cat_title, $parent_id);
495 $cat_id = $this->get_feed_category($cat_title, $parent_id);
502 $outlines = $root_node->childNodes;
505 $xpath = new DOMXpath($doc);
506 $outlines = $xpath->query("//opml/body/outline");
511 #$this->opml_notice("[CAT] $cat_title id: $cat_id P_id: $parent_id");
512 $this->opml_notice(T_sprintf("Processing category: %s", $cat_title ? $cat_title : __("Uncategorized")));
514 foreach ($outlines as $node) {
515 if ($node->hasAttributes() && strtolower($node->tagName) == "outline") {
516 $attrs = $node->attributes;
517 $node_cat_title = $attrs->getNamedItem('text')->nodeValue;
519 if (!$node_cat_title)
520 $node_cat_title = $attrs->getNamedItem('title')->nodeValue;
522 $node_feed_url = $attrs->getNamedItem('xmlUrl')->nodeValue;
524 if ($node_cat_title && !$node_feed_url) {
525 $this->opml_import_category($doc, $node, $owner_uid, $cat_id);
529 $dst_cat_id = $default_cat_id;
531 $dst_cat_id = $cat_id;
534 switch ($cat_title) {
536 $this->opml_import_preference($node);
538 case "tt-rss-labels":
539 $this->opml_import_label($node, $owner_uid);
541 case "tt-rss-filters":
542 $this->opml_import_filter($node);
545 $this->opml_import_feed($node, $dst_cat_id, $owner_uid);
552 function opml_import($owner_uid) {
553 if (!$owner_uid) return;
557 if ($_FILES['opml_file']['error'] != 0) {
558 print_error(T_sprintf("Upload failed with error code %d",
559 $_FILES['opml_file']['error']));
563 if (is_uploaded_file($_FILES['opml_file']['tmp_name'])) {
564 $tmp_file = tempnam(CACHE_DIR . '/upload', 'opml');
566 $result = move_uploaded_file($_FILES['opml_file']['tmp_name'],
570 print_error(__("Unable to move uploaded file."));
574 print_error(__('Error: please upload OPML file.'));
578 if (is_file($tmp_file)) {
579 $doc = new DOMDocument();
580 libxml_disable_entity_loader(false);
581 $doc->load($tmp_file);
582 libxml_disable_entity_loader(true);
585 print_error(__('Error: unable to find moved OPML file.'));
590 $this->pdo->beginTransaction();
591 $this->opml_import_category($doc, false, $owner_uid, false);
592 $this->pdo->commit();
594 print_error(__('Error while parsing document.'));
598 private function opml_notice($msg) {
602 static function opml_publish_url(){
604 $url_path = get_self_url_prefix();
605 $url_path .= "/opml.php?op=publish&key=" .
606 get_feed_access_key('OPML:Publish', false, $_SESSION["uid"]);
611 function get_feed_category($feed_cat, $parent_cat_id = false) {
613 $parent_cat_id = (int) $parent_cat_id;
615 $sth = $this->pdo->prepare("SELECT id FROM ttrss_feed_categories
617 AND (parent_cat = :parent OR (:parent = 0 AND parent_cat IS NULL))
618 AND owner_uid = :uid");
620 $sth->execute([':title' => $feed_cat, ':parent' => $parent_cat_id, ':uid' => $_SESSION['uid']]);
622 if ($row = $sth->fetch()) {