]> git.wh0rd.org - tt-rss.git/blob - opml.php
update schema, more mysql work
[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 $title = db_escape_string($attrs['TEXT']);
40 $url = db_escape_string($attrs['XMLURL']);
41
42 if (!$title || !$url) return;
43
44 print "Feed <b>$title</b> ($url)... ";
45
46 $result = db_query_2("SELECT id FROM ttrss_feeds WHERE
47 title = '$title' OR feed_url = '$url'");
48
49 if (db_num_rows($result) > 0) {
50
51 print " Already imported.<br>";
52
53 } else {
54
55 $result = db_query_2("INSERT INTO ttrss_feeds (title, feed_url) VALUES
56 ('$title', '$url')");
57
58 print "<b>Done.</b><br>";
59
60 }
61
62 }
63 }
64
65 function endElement($parser, $name) {
66
67
68 }
69
70 if ($op == "Import") {
71
72 print "<html>
73 <head>
74 <link rel=\"stylesheet\" href=\"opml.css\" type=\"text/css\">
75 </head>
76 <body><h1>Importing OPML...</h1>
77 <div>";
78
79 if (WEB_DEMO_MODE) {
80 print "OPML import is disabled in demo-mode.";
81 print "<p><a class=\"button\" href=\"prefs.php\">
82 Return to preferences</a></div></body></html>";
83
84 return;
85 }
86
87 if (is_file($_FILES['opml_file']['tmp_name'])) {
88
89 $xml_parser = xml_parser_create();
90
91 xml_set_element_handler($xml_parser, "startElement", "endElement");
92
93 $fp = fopen($_FILES['opml_file']['tmp_name'], "r");
94
95 if ($fp) {
96
97 while ($data = fread($fp, 4096)) {
98
99 if (!xml_parse($xml_parser, $data, feof($fp))) {
100
101 print sprintf("Unable to parse OPML file, XML error: %s at line %d",
102 xml_error_string(xml_get_error_code($xml_parser)),
103 xml_get_current_line_number($xml_parser));
104
105 print "<p><a class=\"button\" href=\"prefs.php\">
106 Return to preferences</a>";
107
108 return;
109
110 }
111 }
112
113 xml_parser_free($xml_parser);
114 fclose($fp);
115
116 } else {
117 print("Error: Could not open OPML input.");
118 }
119
120 } else {
121 print "Error: please upload OPML file.";
122 }
123
124 print "<p><a class=\"button\" href=\"prefs.php\">
125 Return to preferences</a>";
126
127 print "</div></body></html>";
128
129 }
130
131 db_close($link);
132
133 ?>