]> git.wh0rd.org - tt-rss.git/blame - plugins/googlereaderimport/init.php
catchup_feed: fix 1day on mysql
[tt-rss.git] / plugins / googlereaderimport / init.php
CommitLineData
493c2f88 1<?php
93e79595 2class GoogleReaderImport extends Plugin {
493c2f88
AD
3
4
5 private $link;
6 private $host;
7
8 function about() {
9 return array(1.0,
7c93962d 10 "Import starred/shared items from Google Reader takeout",
493c2f88
AD
11 "fox",
12 false,
13 "");
14 }
15
16 function init($host) {
17 $this->link = $host->get_link();
18 $this->host = $host;
19
4cf0f9a9
AD
20 $host->add_command("greader-import",
21 "import data in Google Reader JSON format",
22 $this, ":", "FILE");
23
493c2f88
AD
24 $host->add_hook($host::HOOK_PREFS_TAB, $this);
25 }
26
4cf0f9a9
AD
27 function greader_import($args) {
28 $file = $args['greader_import'];
29
30 if (!file_exists($file)) {
31 _debug("file not found: $file");
32 return;
33 }
34
35 _debug("please enter your username:");
36
37 $username = db_escape_string($this->link, trim(read_stdin()));
38
39 _debug("looking up user: $username...");
40
41 $result = db_query($this->link, "SELECT id FROM ttrss_users
42 WHERE login = '$username'");
43
44 if (db_num_rows($result) == 0) {
45 _debug("user not found.");
46 return;
47 }
48
49 $owner_uid = db_fetch_result($result, 0, "id");
50
51 _debug("processing: $file (owner_uid: $owner_uid)");
52
53 $this->import($file, $owner_uid);
54 }
55
493c2f88
AD
56 function get_prefs_js() {
57 return file_get_contents(dirname(__FILE__) . "/init.js");
58 }
59
4cf0f9a9 60 function import($file = false, $owner_uid = 0) {
493c2f88 61
749da11b
AD
62 purge_orphans($this->link);
63
4cf0f9a9
AD
64 if (!$file) {
65 header("Content-Type: text/html");
493c2f88 66
93e79595
AD
67 $owner_uid = $_SESSION["uid"];
68
4cf0f9a9
AD
69 if (is_file($_FILES['starred_file']['tmp_name'])) {
70 $doc = json_decode(file_get_contents($_FILES['starred_file']['tmp_name']), true);
71 } else {
72 print_error(__('No file uploaded.'));
73 return;
74 }
493c2f88 75 } else {
4cf0f9a9 76 $doc = json_decode(file_get_contents($file), true);
493c2f88
AD
77 }
78
4cf0f9a9
AD
79 if ($file) {
80 $sql_set_marked = strtolower(basename($file)) == 'starred.json' ? 'true' : 'false';
81 _debug("will set articles as starred: $sql_set_marked");
82
83 } else {
84 $sql_set_marked = strtolower($_FILES['starred_file']['name']) == 'starred.json' ? 'true' : 'false';
85 }
4c92878f 86
493c2f88
AD
87 if ($doc) {
88 if (isset($doc['items'])) {
89 $processed = 0;
90
91 foreach ($doc['items'] as $item) {
92// print_r($item);
93
05e1e0ff 94 $guid = db_escape_string($this->link, mb_substr($item['id'], 0, 250));
493c2f88
AD
95 $title = db_escape_string($this->link, $item['title']);
96 $updated = date('Y-m-d h:i:s', $item['updated']);
97 $link = '';
98 $content = '';
99 $author = db_escape_string($this->link, $item['author']);
4188225c 100 $tags = array();
749da11b 101 $orig_feed_data = array();
493c2f88
AD
102
103 if (is_array($item['alternate'])) {
104 foreach ($item['alternate'] as $alt) {
105 if (isset($alt['type']) && $alt['type'] == 'text/html') {
106 $link = db_escape_string($this->link, $alt['href']);
107 }
108 }
109 }
110
111 if (is_array($item['content'])) {
112 $content = db_escape_string($this->link,
113 $item['content']['content'], false);
114 }
115
4188225c
AD
116 if (is_array($item['categories'])) {
117 foreach ($item['categories'] as $cat) {
118 if (strstr($cat, "com.google/") === FALSE) {
119 array_push($tags, sanitize_tag($cat));
120 }
121 }
122 }
123
749da11b
AD
124 if (is_array($item['origin'])) {
125 if (strpos($item['origin']['streamId'], 'feed/') === 0) {
126
127 $orig_feed_data['feed_url'] = db_escape_string($this->link,
128 preg_replace("/^feed\//",
129 "", $item['origin']['streamId']));
130
131 $orig_feed_data['title'] = db_escape_string($this->link,
132 $item['origin']['title']);
133
134 $orig_feed_data['site_url'] = db_escape_string($this->link,
135 $item['origin']['htmlUrl']);
136 }
137 }
138
493c2f88
AD
139 $processed++;
140
4cf0f9a9 141 $imported += (int) $this->create_article($owner_uid, $guid, $title,
749da11b
AD
142 $updated, $link, $content, $author, $sql_set_marked, $tags,
143 $orig_feed_data);
493c2f88
AD
144 }
145
4cf0f9a9
AD
146 if ($file) {
147 _debug(sprintf("All done. %d of %d articles imported.", $imported, $processed));
148 } else {
149 print "<p style='text-align : center'>" . T_sprintf("All done. %d out of %d articles imported.", $imported, $processed) . "</p>";
150 }
493c2f88
AD
151
152 } else {
153 print_error(__('The document has incorrect format.'));
154 }
155
156 } else {
157 print_error(__('Error while parsing document.'));
158 }
159
4cf0f9a9
AD
160 if (!$file) {
161 print "<div align='center'>";
162 print "<button dojoType=\"dijit.form.Button\"
163 onclick=\"dijit.byId('starredImportDlg').execute()\">".
164 __('Close this window')."</button>";
165 print "</div>";
166 }
493c2f88
AD
167 }
168
169 // expects ESCAPED data
749da11b 170 private function create_article($owner_uid, $guid, $title, $updated, $link, $content, $author, $marked, $tags, $orig_feed_data) {
493c2f88
AD
171
172 if (!$guid) $guid = sha1($link);
173
fc5cd158
AD
174 $create_archived_feeds = false; // may cause SQL errors SOMEHOW, thus disabled for the time being
175
493c2f88
AD
176 $guid = "$owner_uid,$guid";
177
178 $content_hash = sha1($content);
179
180 if (filter_var($link, FILTER_VALIDATE_URL) === FALSE) return false;
181
182 db_query($this->link, "BEGIN");
183
749da11b
AD
184 $feed_id = 'NULL';
185
186 // let's check for archived feed entry
187
188 $feed_inserted = false;
189
190 // before dealing with archived feeds we must check ttrss_feeds to maintain id consistency
191
fc5cd158 192 if ($orig_feed_data['feed_url'] && $create_archived_feeds) {
749da11b
AD
193 $result = db_query($this->link,
194 "SELECT id FROM ttrss_feeds WHERE feed_url = '".$orig_feed_data['feed_url']."'
195 AND owner_uid = $owner_uid");
196
197 if (db_num_rows($result) != 0) {
198 $feed_id = db_fetch_result($result, 0, "id");
199 } else {
200 // let's insert it
201
202 if (!$orig_feed_data['title']) $orig_feed_data['title'] = '[Unknown]';
203
204 $result = db_query($this->link,
205 "INSERT INTO ttrss_feeds
206 (owner_uid,feed_url,site_url,title,cat_id,auth_login,auth_pass,update_method)
207 VALUES ($owner_uid,
208 '".$orig_feed_data['feed_url']."',
209 '".$orig_feed_data['site_url']."',
210 '".$orig_feed_data['title']."',
211 NULL, '', '', 0)");
212
213 $result = db_query($this->link,
214 "SELECT id FROM ttrss_feeds WHERE feed_url = '".$orig_feed_data['feed_url']."'
215 AND owner_uid = $owner_uid");
216
217 if (db_num_rows($result) != 0) {
218 $feed_id = db_fetch_result($result, 0, "id");
219 $feed_inserted = true;
220 }
221 }
222 }
223
224 if ($feed_id) {
225 // locate archived entry to file entries in, we don't want to file them in actual feeds because of purging
226 // maybe file marked in real feeds because eh
227
228 $result = db_query($this->link, "SELECT id FROM ttrss_archived_feeds WHERE
229 feed_url = '".$orig_feed_data['feed_url']."' AND owner_uid = $owner_uid");
230
231 if (db_num_rows($result) != 0) {
232 $orig_feed_id = db_fetch_result($result, 0, "id");
233 } else {
234 db_query($this->link, "INSERT INTO ttrss_archived_feeds
235 (id, owner_uid, title, feed_url, site_url)
236 SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds
237 WHERE id = '$feed_id'");
238
239 $result = db_query($this->link, "SELECT id FROM ttrss_archived_feeds WHERE
240 feed_url = '".$orig_feed_data['feed_url']."' AND owner_uid = $owner_uid");
241
242 if (db_num_rows($result) != 0) {
243 $orig_feed_id = db_fetch_result($result, 0, "id");
244
245 // delete temporarily inserted feed
246 if ($feed_inserted) {
247 db_query($this->link, "DELETE FROM ttrss_feeds WHERE id = $feed_id");
248 }
249 }
250 }
251 }
252
493c2f88
AD
253 $result = db_query($this->link, "SELECT id FROM ttrss_entries, ttrss_user_entries WHERE
254 guid = '$guid' AND ref_id = id AND owner_uid = '$owner_uid' LIMIT 1");
255
256 if (db_num_rows($result) == 0) {
257 $result = db_query($this->link, "INSERT INTO ttrss_entries
258 (title, guid, link, updated, content, content_hash, date_entered, date_updated, author)
259 VALUES
260 ('$title', '$guid', '$link', '$updated', '$content', '$content_hash', NOW(), NOW(), '$author')");
261
262 $result = db_query($this->link, "SELECT id FROM ttrss_entries WHERE guid = '$guid'");
263
264 if (db_num_rows($result) != 0) {
265 $ref_id = db_fetch_result($result, 0, "id");
266
267 db_query($this->link, "INSERT INTO ttrss_user_entries
268 (ref_id, uuid, feed_id, orig_feed_id, owner_uid, marked, tag_cache, label_cache,
269 last_read, note, unread, last_marked)
270 VALUES
749da11b 271 ('$ref_id', '', NULL, $feed_id, $owner_uid, $marked, '', '', NOW(), '', false, NOW())");
493c2f88 272
4188225c
AD
273 $result = db_query($this->link, "SELECT int_id FROM ttrss_user_entries, ttrss_entries
274 WHERE owner_uid = $owner_uid AND ref_id = id AND ref_id = $ref_id");
275
276 if (db_num_rows($result) != 0 && is_array($tags)) {
277
278 $entry_int_id = db_fetch_result($result, 0, "int_id");
279 $tags_to_cache = array();
280
281 foreach ($tags as $tag) {
282
283 $tag = db_escape_string($this->link, sanitize_tag($tag));
284
285 if (!tag_is_valid($tag)) continue;
286
287 $result = db_query($this->link, "SELECT id FROM ttrss_tags
288 WHERE tag_name = '$tag' AND post_int_id = '$entry_int_id' AND
289 owner_uid = '$owner_uid' LIMIT 1");
290
291 if ($result && db_num_rows($result) == 0) {
292 db_query($this->link, "INSERT INTO ttrss_tags
293 (owner_uid,tag_name,post_int_id)
294 VALUES ('$owner_uid','$tag', '$entry_int_id')");
295 }
296
297 array_push($tags_to_cache, $tag);
493c2f88 298 }
4188225c
AD
299
300 /* update the cache */
301
302 $tags_to_cache = array_unique($tags_to_cache);
303 $tags_str = db_escape_string($this->link, join(",", $tags_to_cache));
304
305 db_query($this->link, "UPDATE ttrss_user_entries
306 SET tag_cache = '$tags_str' WHERE ref_id = '$ref_id'
307 AND owner_uid = $owner_uid");
493c2f88
AD
308 }
309
310 $rc = true;
311 }
312 }
313
314 db_query($this->link, "COMMIT");
315
316 return $rc;
317 }
318
319 function hook_prefs_tab($args) {
320 if ($args != "prefFeeds") return;
321
4c92878f 322 print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__("Import starred or shared items from Google Reader")."\">";
493c2f88 323
4c92878f 324 print_notice("Your imported articles will appear in Starred (in file is named starred.json) and Archived feeds.");
493c2f88 325
4c92878f 326 print "<p>".__("Paste your starred.json or shared.json into the form below."). "</p>";
493c2f88
AD
327
328 print "<iframe id=\"starred_upload_iframe\"
329 name=\"starred_upload_iframe\" onload=\"starredImportComplete(this)\"
330 style=\"width: 400px; height: 100px; display: none;\"></iframe>";
331
332 print "<form name=\"starred_form\" style='display : block' target=\"starred_upload_iframe\"
333 enctype=\"multipart/form-data\" method=\"POST\"
334 action=\"backend.php\">
335 <input id=\"starred_file\" name=\"starred_file\" type=\"file\">&nbsp;
336 <input type=\"hidden\" name=\"op\" value=\"pluginhandler\">
337 <input type=\"hidden\" name=\"method\" value=\"import\">
93e79595 338 <input type=\"hidden\" name=\"plugin\" value=\"googlereaderimport\">
493c2f88
AD
339 <button dojoType=\"dijit.form.Button\" onclick=\"return starredImport();\" type=\"submit\">" .
340 __('Import my Starred items') . "</button>";
341
342
343 print "</div>"; #pane
344 }
345}
346?>