]> git.wh0rd.org - tt-rss.git/blob - opml.php
OPML import fix from Thomas
[tt-rss.git] / opml.php
1 <?
2 // FIXME there are some brackets issues here
3
4 $op = $_REQUEST["op"];
5 if ($op == "Export") {
6 header("Content-type: application/xml");
7 print "<?xml version=\"1.0\"?>";
8 }
9
10 require_once "config.php";
11 require_once "db.php";
12
13 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
14
15 if (DB_TYPE == "pgsql") {
16 pg_query($link, "set client_encoding = 'utf-8'");
17 }
18
19 if ($op == "Export") {
20 print "<opml version=\"1.0\">";
21 print "<head><dateCreated>" . date("r", time()) . "</dateCreated></head>";
22 print "<body>";
23
24 $result = db_query($link, "SELECT * FROM ttrss_feeds ORDER BY title");
25
26 while ($line = db_fetch_assoc($result)) {
27 $title = $line["title"];
28 $url = $line["feed_url"];
29
30 print "<outline text=\"$title\" xmlUrl=\"$url\"/>";
31 }
32
33 print "</body></opml>";
34 }
35
36 function startElement($parser, $name, $attrs) {
37
38 if ($name == "OUTLINE") {
39 if ($name == "OUTLINE") {
40
41 $title = $attrs["TEXT"];
42 $url = $attrs["XMLURL"];
43
44 if (!$title) {
45 $title = $attrs['TITLE'];
46 }
47 }
48
49 if (!$title || !$url) return;
50
51 print "Feed <b>$title</b> ($url)... ";
52
53 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
54
55 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
56 title = '$title' OR feed_url = '$url'");
57
58 if ($result && db_num_rows($result) > 0) {
59
60 print " Already imported.<br>";
61
62 } else {
63
64 $result = db_query($link, "INSERT INTO ttrss_feeds (title, feed_url) VALUES
65 ('$title', '$url')");
66
67 print "<b>Done.</b><br>";
68
69 }
70
71 if ($link) db_close($link);
72
73 }
74 }
75
76 function endElement($parser, $name) {
77
78
79 }
80
81 if ($op == "Import") {
82
83 print "<html>
84 <head>
85 <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
86 </head>
87 <body><h1>Importing OPML...</h1>
88 <div>";
89
90 if (WEB_DEMO_MODE) {
91 print "OPML import is disabled in demo-mode.";
92 print "<p><a class=\"button\" href=\"prefs.php\">
93 Return to preferences</a></div></body></html>";
94
95 return;
96 }
97
98 if (is_file($_FILES['opml_file']['tmp_name'])) {
99
100 $xml_parser = xml_parser_create();
101
102 xml_set_element_handler($xml_parser, "startElement", "endElement");
103
104 $fp = fopen($_FILES['opml_file']['tmp_name'], "r");
105
106 if ($fp) {
107
108 while ($data = fread($fp, 4096)) {
109
110 if (!xml_parse($xml_parser, $data, feof($fp))) {
111
112 print sprintf("Unable to parse OPML file, XML error: %s at line %d",
113 xml_error_string(xml_get_error_code($xml_parser)),
114 xml_get_current_line_number($xml_parser));
115
116 print "<p><a class=\"button\" href=\"prefs.php\">
117 Return to preferences</a>";
118
119 return;
120
121 }
122 }
123
124 xml_parser_free($xml_parser);
125 fclose($fp);
126
127 } else {
128 print("Error: Could not open OPML input.");
129 }
130
131 } else {
132 print "Error: please upload OPML file.";
133 }
134
135 print "<p><a class=\"button\" href=\"prefs.php\">
136 Return to preferences</a>";
137
138 print "</div></body></html>";
139
140 }
141
142 // if ($link) db_close($link);
143
144 ?>