]> git.wh0rd.org - tt-rss.git/blob - opml.php
cleanup OPML import interface
[tt-rss.git] / opml.php
1 <?
2 session_start();
3
4 require_once "sanity_check.php";
5 require_once "functions.php";
6 require_once "config.php";
7 require_once "db.php";
8 require_once "db-prefs.php";
9
10 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
11
12 if (DB_TYPE == "pgsql") {
13 pg_query($link, "set client_encoding = 'utf-8'");
14 }
15
16 login_sequence($link);
17
18 $owner_uid = $_SESSION["uid"];
19
20 // FIXME there are some brackets issues here
21
22 $op = $_REQUEST["op"];
23
24 if (!$op) $op = "Export";
25
26 if ($op == "Export") {
27 header("Content-type: application/xml");
28 print "<?xml version=\"1.0\"?>";
29 }
30
31 if ($op == "Export") {
32 print "<opml version=\"1.0\">";
33 print "<head>
34 <dateCreated>" . date("r", time()) . "</dateCreated>
35 <title>Tiny Tiny RSS Feed Export</title>
36 </head>";
37 print "<body>";
38
39 $cat_mode = false;
40
41 if (get_pref($link, 'ENABLE_FEED_CATS')) {
42 $cat_mode = true;
43 $result = db_query($link, "SELECT
44 title,feed_url,site_url,
45 (SELECT title FROM ttrss_feed_categories WHERE id = cat_id) as cat_title
46 FROM ttrss_feeds
47 WHERE
48 owner_uid = '$owner_uid'
49 ORDER BY cat_title,title");
50 } else {
51 $result = db_query($link, "SELECT * FROM ttrss_feeds
52 ORDER BY title WHERE owner_uid = '$owner_uid'");
53 }
54
55 $old_cat_title = "";
56
57 while ($line = db_fetch_assoc($result)) {
58 $title = htmlspecialchars($line["title"]);
59 $url = htmlspecialchars($line["feed_url"]);
60 $site_url = htmlspecialchars($line["site_url"]);
61
62 if ($cat_mode) {
63 $cat_title = htmlspecialchars($line["cat_title"]);
64
65 if ($old_cat_title != $cat_title) {
66 if ($old_cat_title) {
67 print "</outline>\n";
68 }
69
70 if ($cat_title) {
71 print "<outline title=\"$cat_title\">\n";
72 }
73
74 $old_cat_title = $cat_title;
75 }
76 }
77
78 if ($site_url) {
79 $html_url_qpart = "htmlUrl=\"$site_url\"";
80 } else {
81 $html_url_qpart = "";
82 }
83
84 print "<outline text=\"$title\" xmlUrl=\"$url\" $html_url_qpart/>\n";
85 }
86
87 if ($cat_mode && $old_cat_title) {
88 print "</outline>\n";
89 }
90
91 print "</body></opml>";
92 }
93
94 if ($op == "Import") {
95
96 print "<html>
97 <head>
98 <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
99 </head>
100 <body>
101 <h1><img src=\"images/ttrss_logo.png\"></h1>
102 <div class=\"opmlBody\">
103 <h2>Importing OPML...</h2>";
104
105 if (WEB_DEMO_MODE) {
106 print "OPML import is disabled in demo-mode.";
107 print "<p><a class=\"button\" href=\"prefs.php\">
108 Return to preferences</a></div></body></html>";
109
110 return;
111 }
112
113 if (is_file($_FILES['opml_file']['tmp_name'])) {
114 $dom = domxml_open_file($_FILES['opml_file']['tmp_name']);
115
116 if ($dom) {
117 $root = $dom->document_element();
118
119 $body = $root->get_elements_by_tagname('body');
120
121 if ($body[0]) {
122 $body = $body[0];
123
124 $outlines = $body->get_elements_by_tagname('outline');
125
126 print "<table>";
127
128 foreach ($outlines as $outline) {
129 $feed_title = db_escape_string($outline->get_attribute('text'));
130 $cat_title = db_escape_string($outline->get_attribute('title'));
131 $feed_url = db_escape_string($outline->get_attribute('xmlUrl'));
132 $site_url = db_escape_string($outline->get_attribute('htmlUrl'));
133
134 if ($cat_title && !$feed_url) {
135
136 db_query($link, "BEGIN");
137
138 $result = db_query($link, "SELECT id FROM
139 ttrss_feed_categories WHERE title = '$cat_title' AND
140 owner_uid = '$owner_uid' LIMIT 1");
141
142 if (db_num_rows($result) == 0) {
143
144 print "Adding category <b>$cat_title</b>...<br>";
145
146 db_query($link, "INSERT INTO ttrss_feed_categories
147 (title,owner_uid,site_url)
148 VALUES ('$cat_title', '$owner_uid', '$site_url')");
149 }
150
151 db_query($link, "COMMIT");
152 }
153
154 // print "$active_category : $feed_title : $xmlurl<br>";
155
156 if (!$feed_title || !$feed_url) continue;
157
158 db_query($link, "BEGIN");
159
160 $cat_id = null;
161
162 $parent_node = $outline->parent_node();
163
164 if ($parent_node && $parent_node->node_name() == "outline") {
165 $element_category = $parent_node->get_attribute('title');
166 } else {
167 $element_category = '';
168 }
169
170 if ($element_category) {
171
172 $result = db_query($link, "SELECT id FROM
173 ttrss_feed_categories WHERE title = '$element_category' AND
174 owner_uid = '$owner_uid' LIMIT 1");
175
176 if (db_num_rows($result) == 1) {
177 $cat_id = db_fetch_result($result, 0, "id");
178 }
179 }
180
181 $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE
182 (title = '$feed_title' OR feed_url = '$feed_url')
183 AND owner_uid = '$owner_uid'");
184
185 print "<tr><td><a href='$site_url'><b>$feed_title</b></a></b>
186 (<a href=\"$feed_url\">rss</a>)</td>";
187
188 if (db_num_rows($result) > 0) {
189 print "<td>Already imported.</td>";
190 } else {
191
192 if ($cat_id) {
193 $add_query = "INSERT INTO ttrss_feeds
194 (title, feed_url, owner_uid, cat_id) VALUES
195 ('$feed_title', '$feed_url', '$owner_uid', '$cat_id')";
196
197 } else {
198 $add_query = "INSERT INTO ttrss_feeds
199 (title, feed_url, owner_uid) VALUES
200 ('$feed_title', '$feed_url', '$owner_uid')";
201
202 }
203
204 db_query($link, $add_query);
205
206 print "<td><b>Done.</b></td>";
207 }
208
209 print "</tr>";
210
211 db_query($link, "COMMIT");
212 }
213
214 print "</table>";
215
216 } else {
217 print "<div class=\"error\">Error: can't find body element.</div>";
218 }
219 } else {
220 print "<div class=\"error\">Error while parsing document.</div>";
221 }
222
223 } else {
224 print "<div class=\"error\">Error: please upload OPML file.</div>";
225 }
226
227 print "<p><a class=\"button\" href=\"prefs.php\">
228 Return to preferences</a>";
229
230 print "</div></body></html>";
231
232 }
233
234 // if ($link) db_close($link);
235
236 ?>