]> git.wh0rd.org - tt-rss.git/blob - offline.js
update translations
[tt-rss.git] / offline.js
1 var SCHEMA_VERSION = 10;
2
3 var offline_mode = false;
4 var store = false;
5 var localServer = false;
6 var db = false;
7 var articles_synced = 0;
8 var sync_in_progress = false;
9 var sync_timer = false;
10
11 function view_offline(id, feed_id) {
12 try {
13
14 enableHotkeys();
15 showArticleInHeadlines(id);
16
17 db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
18
19 var rs = db.execute("SELECT * FROM articles WHERE id = ?", [id]);
20
21 if (rs.isValidRow()) {
22
23 var tmp = "<div class=\"postReply\">";
24
25 tmp += "<div class=\"postHeader\" onmouseover=\"enable_resize(true)\" "+
26 "onmouseout=\"enable_resize(false)\">";
27
28 tmp += "<div class=\"postDate\">"+rs.fieldByName("updated")+"</div>";
29
30 if (rs.fieldByName("link") != "") {
31 tmp += "<div clear='both'><a target=\"_blank\" "+
32 "href=\"" + rs.fieldByName("link") + "\">" +
33 rs.fieldByName("title") + "</a></div>";
34 } else {
35 tmp += "<div clear='both'>" + rs.fieldByName("title") + "</div>";
36 }
37
38 /* tmp += "<div style='float : right'> "+
39 "<img src='images/tag.png' class='tagsPic' alt='Tags' title='Tags'>";
40 tmp += rs.fieldByName("tags");
41 tmp += "</div>"; */
42
43 /* tmp += "<div clear='both'>"+
44 "<a target=\"_blank\" "+
45 "href=\"" + rs.fieldByName("comments") + "\">" +
46 __("comments") + "</a></div>"; */
47
48 tmp += "</div>";
49
50 tmp += "<div class=\"postContent\">"
51 tmp += rs.fieldByName("content");
52 tmp += "</div>";
53
54 tmp += "</div>";
55
56 render_article(tmp);
57 update_local_feedlist_counters();
58 }
59
60 rs.close();
61
62 return false;
63
64 } catch (e) {
65 exception_error("view_offline", e);
66 }
67 }
68
69 function viewfeed_offline(feed_id, subop, is_cat, subop_param, skip_history, offset) {
70 try {
71 notify('');
72
73 if (!offset) offset = 0;
74
75 if (offset > 0) {
76 _feed_cur_page = parseInt(offset);
77 if (_infscroll_request_sent) {
78 return;
79 }
80 } else {
81 _feed_cur_page = 0;
82 _infscroll_disable = 0;
83 }
84
85 if (getActiveFeedId() != feed_id) {
86 _feed_cur_page = 0;
87 active_post_id = 0;
88 _infscroll_disable = 0;
89 }
90
91 loading_set_progress(100);
92
93 clean_feed_selections();
94
95 setActiveFeedId(feed_id, is_cat);
96
97 if (!is_cat) {
98 var feedr = $("FEEDR-" + feed_id);
99 if (feedr && !feedr.className.match("Selected")) {
100 feedr.className = feedr.className + "Selected";
101 }
102 } else {
103 var feedr = $("FCAT-" + feed_id);
104 if (feedr && !feedr.className.match("Selected")) {
105 feedr.className = feedr.className + "Selected";
106 }
107 }
108
109 if (subop == "MarkAllRead") {
110 catchup_local_feed(feed_id, is_cat);
111 }
112
113 disableContainerChildren("headlinesToolbar", false);
114 Form.enable("main_toolbar_form");
115
116 var f = $("headlines-frame");
117 try {
118 if (reply.offset == 0) {
119 debug("resetting headlines scrollTop");
120 f.scrollTop = 0;
121 }
122 } catch (e) { };
123
124
125 var tmp = "";
126 var feed_title = "";
127
128 if (is_cat) {
129 feed_title = get_local_category_title(feed_id);
130 } else {
131 feed_title = get_local_feed_title(feed_id);
132 }
133
134 if (feed_title) {
135
136 if (offset == 0) {
137 tmp += "<div id=\"headlinesContainer\">";
138
139 tmp += "<div class=\"headlinesSubToolbar\">";
140 tmp += "<div id=\"subtoolbar_ftitle\">";
141 tmp += feed_title;
142 tmp += "</div>";
143
144 var sel_all_link;
145 var sel_unread_link;
146 var sel_none_link;
147 var sel_inv_link;
148
149 var catchup_feed_link = "javascript:catchupCurrentFeed()";
150 var catchup_sel_link = "javascript:catchupSelection()";
151
152 var tog_unread_link;
153 var tog_marked_link;
154
155 if ($("content-frame")) {
156 sel_all_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, '', true)";
157 sel_unread_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true)";
158 sel_none_link = "javascript:selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false)";
159 sel_inv_link = "javascript:invertHeadlineSelection()";
160
161 tog_unread_link = "javascript:selectionToggleUnread()";
162 tog_marked_link = "javascript:selectionToggleMarked()";
163
164 } else {
165 sel_all_link = "javascript:cdmSelectArticles('all')";
166 sel_unread_link = "javascript:cdmSelectArticles('unread')";
167 sel_none_link = "javascript:cdmSelectArticles('none')";
168 sel_inv_link = "javascript:invertHeadlineSelection()";
169
170 tog_unread_link = "javascript:selectionToggleUnread(true)";
171 tog_marked_link = "javascript:selectionToggleMarked(true)";
172 }
173
174 tmp += __('Select:')+
175 " <a href=\""+sel_all_link+"\">"+__('All')+"</a>, "+
176 "<a href=\""+sel_unread_link+"\">"+__('Unread')+"</a>, "+
177 "<a href=\""+sel_inv_link+"\">"+__('Invert')+"</a>, "+
178 "<a href=\""+sel_none_link+"\">"+__('None')+"</a>";
179
180 tmp += "&nbsp;&nbsp;";
181
182 tmp += "<span onmouseover=\"enable_selection(false)\" "+
183 "onmouseout=\"enable_selection(true) \"" +
184 "onclick=\"toggleHeadlineActions()\" id=\"headlineActionsDrop\">" +
185 __("Actions...") + "&nbsp;&nbsp;<img src=\"images/down_arrow.png\">" +
186 "</span>";
187
188 tmp += "<ul id=\"headlineActionsBody\" style=\"display : none\">";
189
190 tmp += "<li class=\"insensitive\">"+__('Selection toggle:')+"</li>"+
191 "<li onclick=\""+tog_unread_link+"\">&nbsp;&nbsp;"+__('Unread')+"</li>"+
192 "<li onclick=\""+tog_marked_link+"\">&nbsp;&nbsp;"+__('Starred')+"</li>"+
193 "<li class=\"insensitive\">"+__('Mark as read:')+"</li>"+
194 "<li onclick=\""+catchup_sel_link+"\">&nbsp;&nbsp;"+__('Selection')+"</li>";
195
196 tmp += "<li onclick=\""+catchup_feed_link+"\">&nbsp;&nbsp;"+__('Entire feed')+
197 "</li>";
198
199 tmp += "</ul>";
200
201 tmp += "</div>";
202
203 tmp += "<div id=\"headlinesInnerContainer\" onscroll=\"headlines_scroll_handler()\">";
204 if ($("content-frame")) {
205 tmp += "<table class=\"headlinesList\" id=\"headlinesList\" cellspacing=\"0\">";
206 }
207
208 }
209
210 var limit = 30;
211
212 var toolbar_form = document.forms["main_toolbar_form"];
213
214 var limit = toolbar_form.limit[toolbar_form.limit.selectedIndex].value;
215 var view_mode = toolbar_form.view_mode[toolbar_form.view_mode.selectedIndex].value;
216
217 var limit_qpart = "";
218 var strategy_qpart = "";
219 var mode_qpart = "";
220 var offset_qpart = "";
221
222 if (limit != 0) {
223 limit_qpart = "LIMIT " + limit;
224 }
225
226 if (view_mode == "all_articles") {
227 mode_qpart = "1";
228 } else if (view_mode == "adaptive") {
229 if (is_cat && get_local_category_unread(feed_id) ||
230 get_local_feed_unread(feed_id) > 0) {
231 mode_qpart = "unread = 1";
232 } else {
233 mode_qpart = "1";
234 }
235
236 } else if (view_mode == "marked") {
237 mode_qpart = "marked = 1";
238 } else if (view_mode == "unread") {
239 mode_qpart = "unread = 1";
240 } else {
241 mode_qpart = "1";
242 }
243
244 var ext_tables_qpart = "";
245
246 if (is_cat) {
247 if (feed_id >= 0) {
248 strategy_qpart = "cat_id = " + feed_id;
249 } else if (feed_id == -2) {
250 strategy_qpart = "article_labels.id = articles.id";
251 ext_tables_qpart = ",article_labels";
252 }
253 } else if (feed_id > 0) {
254 strategy_qpart = "feed_id = " + feed_id;
255 } else if (feed_id == -1) {
256 strategy_qpart = "marked = 1";
257 } else if (feed_id == -4) {
258 strategy_qpart = "1";
259 } else if (feed_id < -10) {
260 var label_id = -11 - feed_id;
261 strategy_qpart = "article_labels.id = articles.id AND label_id = " + label_id;
262 ext_tables_qpart = ",article_labels";
263 }
264
265 if (offset > 0) {
266 offset_qpart = "OFFSET " + (offset*30);
267 } else {
268 offset_qpart = "";
269 }
270
271 var query = "SELECT *,feeds.title AS feed_title "+
272 "FROM articles,feeds,categories"+ext_tables_qpart+" "+
273 "WHERE " +
274 "cat_id = categories.id AND " +
275 "feed_id = feeds.id AND " +
276 strategy_qpart +
277 " AND " + mode_qpart +
278 " ORDER BY updated DESC "+
279 limit_qpart + " " +
280 offset_qpart;
281
282 var rs = db.execute(query);
283
284 var line_num = offset*30;
285
286 var real_feed_id = feed_id;
287
288 while (rs.isValidRow()) {
289
290 var id = rs.fieldByName("id");
291 var feed_id = rs.fieldByName("feed_id");
292
293 var entry_feed_title = false;
294
295 if (real_feed_id < 0 || is_cat) {
296 entry_feed_title = rs.fieldByName("feed_title");
297 }
298
299 var marked_pic;
300
301 var row_class = (line_num % 2) ? "even" : "odd";
302
303 if (rs.fieldByName("unread") == "1") {
304 row_class += "Unread";
305 }
306
307 var labels = get_local_article_labels(id);
308
309 var labels_str = "<span id=\"HLLCTR-"+id+"\">";
310 labels_str += format_article_labels(labels, id);
311 labels_str += "</span>";
312
313 if (rs.fieldByName("marked") == "1") {
314 marked_pic = "<img id=\"FMPIC-"+id+"\" "+
315 "src=\"images/mark_set.png\" class=\"markedPic\""+
316 "alt=\"Unstar article\" onclick='javascript:tMark("+id+")'>";
317 } else {
318 marked_pic = "<img id=\"FMPIC-"+id+"\" "+
319 "src=\"images/mark_unset.png\" class=\"markedPic\""+
320 "alt=\"Star article\" onclick='javascript:tMark("+id+")'>";
321 }
322
323 var mouseover_attrs = "onmouseover='postMouseIn($id)' "+
324 "onmouseout='postMouseOut($id)'";
325
326 var content_preview = truncate_string(strip_tags(rs.fieldByName("content")),
327 100);
328
329 if ($("content-frame")) {
330
331 tmp += "<tr class='"+row_class+"' id='RROW-"+id+"' "+mouseover_attrs+">";
332
333 tmp += "<td class='hlUpdPic'> </td>";
334
335 tmp += "<td class='hlSelectRow'>"+
336 "<input type=\"checkbox\" onclick=\"tSR(this)\" id=\"RCHK-"+id+"\"></td>";
337
338 tmp += "<td class='hlMarkedPic'>"+marked_pic+"</td>";
339
340 tmp += "<td onclick='view("+id+","+feed_id+")' "+
341 "class='hlContent' valign='middle'>";
342
343 tmp += "<a target=\"_blank\" id=\"RTITLE-"+id+"\" href=\"" +
344 rs.fieldByName("link") + "\"" +
345 "onclick=\"return view("+id+","+feed_id+");\">"+
346 rs.fieldByName("title");
347
348 tmp += "<span class=\"contentPreview\"> - "+content_preview+"</span>";
349
350 tmp += "</a>";
351
352 tmp += labels_str;
353
354 if (entry_feed_title) {
355 tmp += " <span class=\"hlFeed\">"+
356 "(<a href='javascript:viewfeed("+feed_id+
357 ")'>"+entry_feed_title+"</a>)</span>";
358 }
359
360 tmp += "</td>";
361
362 tmp += "<td class=\"hlUpdated\" onclick='view("+id+","+feed_id+")'>"+
363 "<nobr>"+rs.fieldByName("updated").substring(0,16)+
364 "</nobr></td>";
365
366 tmp += "</tr>";
367 } else {
368
369 var add_class = "";
370
371 if (rs.fieldByName("unread") == "1") {
372 add_class = "Unread";
373 }
374
375 tmp += "<div class=\"cdmArticle"+add_class+"\" id=\"RROW-"+id+"\" "+
376 mouseover_attrs+"'>";
377
378 feed_icon_img = "<img class=\"tinyFeedIcon\" src=\""+
379 getInitParam("icons_url")+"/"+feed_id+".ico\" alt=\"\">";
380 cdm_feed_icon = "<span style=\"cursor : pointer\" "+
381 "onclick=\"viewfeed("+feed_id+")\">"+feed_icon_img+"</span>";
382
383 tmp += "<div class=\"cdmHeader\">";
384 tmp += "<div class=\"articleUpdated\">"+
385 rs.fieldByName("updated").substring(0,16)+
386 " "+cdm_feed_icon+"</div>";
387
388 tmp += "<span id=\"RTITLE-"+id+"\" class=\"titleWrap\">"+
389 "<a class=\"title\" onclick=\"javascript:toggleUnread("+id+", 0)\""+
390 "target=\"_blank\" href=\""+rs.fieldByName("link")+
391 "\">"+rs.fieldByName("title")+"</a>";
392
393 tmp += labels_str;
394
395 if (entry_feed_title) {
396 tmp += "&nbsp;(<a href='javascript:viewfeed("+feed_id+
397 ")'>"+entry_feed_title+"</a>)";
398 }
399
400 tmp += "</span></div>";
401
402 tmp += "<div class=\"cdmContent\" onclick=\"cdmClicked("+id+")\""+
403 "id=\"CICD-"+id+"\">";
404 tmp += rs.fieldByName("content");
405 tmp += "<br clear='both'>"
406 tmp += "</div>";
407
408 tmp += "<div class=\"cdmFooter\"><span class='s0'>";
409 tmp += __("Select:")+
410 " <input type=\"checkbox\" "+
411 "onclick=\"toggleSelectRowById(this, 'RROW-"+id+"')\" "+
412 "class=\"feedCheckBox\" id=\"RCHK-"+id+"\">";
413
414 tmp += "</span><span class='s1'>"+marked_pic+"</span> ";
415
416 /* tmp += "<span class='s1'>"+
417 "<img class='tagsPic' src='images/tag.png' alt='Tags' title='Tags'>"+
418 "<span id=\"ATSTR-"+id+"\">"+rs.fieldByName("tags")+"</span>"+
419 "</span>"; */
420
421 tmp += "<span class='s2'>Toggle: <a class=\"cdmToggleLink\""+
422 "href=\"javascript:toggleUnread("+id+")\">"+
423 "Unread</a></span>";
424 tmp += "</div>";
425
426 tmp += "</div>";
427 }
428
429 rs.next();
430 line_num++;
431 }
432
433 if (line_num - offset*30 < 30) {
434 _infscroll_disable = 1;
435 }
436
437 rs.close();
438
439 if (offset == 0) {
440 tmp += "</table>";
441
442 if (line_num - offset*30 == 0) {
443 tmp += "<div class='whiteBox'>" +
444 __("No articles found to display.") +
445 "</div>";
446 }
447 tmp += "</div></div>";
448 }
449
450 if (offset == 0) {
451 var container = $("headlines-frame");
452 container.innerHTML = tmp;
453 } else {
454 var ids = getSelectedArticleIds2();
455
456 var container = $("headlinesList");
457 container.innerHTML = container.innerHTML + tmp;
458
459 for (var i = 0; i < ids.length; i++) {
460 markHeadline(ids[i]);
461 }
462 }
463 }
464
465 remove_splash();
466
467 _infscroll_request_sent = 0;
468
469 } catch (e) {
470 exception_error("viewfeed_offline", e);
471 }
472 }
473
474 function render_offline_feedlist() {
475 try {
476 var cats_enabled = getInitParam("enable_feed_cats") == "1";
477
478 var tmp = "<ul class=\"feedList\" id=\"feedList\">";
479
480 var unread = get_local_feed_unread(-4);
481
482 global_unread = unread;
483 updateTitle();
484
485 if (cats_enabled) {
486 tmp += printCategoryHeader(-1, is_local_cat_collapsed(-1), false);
487 }
488
489 tmp += printFeedEntry(-4, __("All articles"), "feed", unread,
490 "images/tag.png");
491
492 var unread = get_local_feed_unread(-1);
493
494 tmp += printFeedEntry(-1, __("Starred articles"), "feed", unread,
495 "images/mark_set.png");
496
497 if (cats_enabled) {
498 tmp += "</ul></li>";
499 } else {
500 tmp += "<li><hr/></li>";
501 }
502
503 if (cats_enabled) {
504 tmp += printCategoryHeader(-2, is_local_cat_collapsed(-2), false);
505 }
506
507 var rs = db.execute("SELECT id,caption "+
508 "FROM labels "+
509 "ORDER BY caption");
510
511 while (rs.isValidRow()) {
512 var id = -11 - parseInt(rs.field(0));
513 var caption = rs.field(1);
514 var unread = get_local_feed_unread(id);
515
516 tmp += printFeedEntry(id, caption, "feed", unread,
517 "images/label.png");
518
519 rs.next();
520 }
521
522 rs.close();
523
524 if (cats_enabled) {
525 tmp += "</ul></li>";
526 } else {
527 tmp += "<li><hr/></li>";
528 }
529
530 /* var rs = db.execute("SELECT feeds.id,feeds.title,has_icon,COUNT(articles.id) "+
531 "FROM feeds LEFT JOIN articles ON (feed_id = feeds.id) "+
532 "WHERE unread = 1 OR unread IS NULL GROUP BY feeds.id "+
533 "ORDER BY feeds.title"); */
534
535 var order_by = "feeds.title";
536
537 if (cats_enabled) order_by = "categories.title," + order_by;
538
539 var rs = db.execute("SELECT "+
540 "feeds.id,feeds.title,has_icon,cat_id,collapsed "+
541 "FROM feeds,categories WHERE cat_id = categories.id "+
542 "ORDER BY "+order_by);
543
544 var tmp_cat_id = -1;
545
546 while (rs.isValidRow()) {
547
548 var id = rs.field(0);
549 var title = rs.field(1);
550 var has_icon = rs.field(2);
551 var unread = get_local_feed_unread(id);
552 var cat_id = rs.field(3);
553 var cat_hidden = rs.field(4);
554
555 if (cat_id != tmp_cat_id && cats_enabled) {
556 if (tmp_cat_id != -1) {
557 tmp += "</ul></li>";
558 }
559 tmp += printCategoryHeader(cat_id, cat_hidden, true);
560 tmp_cat_id = cat_id;
561 }
562
563 var icon = "";
564
565 if (has_icon) {
566 icon = getInitParam("icons_url") + "/" + id + ".ico";
567 }
568
569 var feed_icon = "";
570
571 var row_class = "feed";
572
573 if (unread > 0) {
574 row_class += "Unread";
575 fctr_class = "feedCtrHasUnread";
576 } else {
577 fctr_class = "feedCtrNoUnread";
578 }
579
580 tmp += printFeedEntry(id, title, "feed", unread, icon);
581
582 rs.next();
583 }
584
585 rs.close();
586
587 if (cats_enabled) {
588 tmp += "</ul>";
589 }
590
591 tmp += "</ul>";
592
593 render_feedlist(tmp);
594 } catch (e) {
595 exception_error("render_offline_feedlist", e);
596 }
597 }
598
599 function init_offline() {
600 try {
601 offline_mode = true;
602 store.enabled = true;
603
604 Element.hide("dispSwitchPrompt");
605 Element.hide("feedBrowserPrompt");
606
607 Element.hide("topLinksOnline");
608 Element.show("topLinksOffline");
609
610 var tb_form = $("main_toolbar_form");
611 Element.hide(tb_form.update);
612
613 var chooser = $("quickMenuChooser");
614 chooser.disabled = true;
615
616 var rs = db.execute("SELECT key, value FROM init_params");
617
618 while (rs.isValidRow()) {
619 init_params[rs.field(0)] = rs.field(1);
620 rs.next();
621 }
622
623 rs.close();
624
625 var rs = db.execute("SELECT COUNT(*) FROM feeds");
626
627 var num_feeds = 0;
628
629 if (rs.isValidRow()) {
630 num_feeds = rs.field(0);
631 }
632
633 rs.close();
634
635 if (num_feeds == 0) {
636 remove_splash();
637 return fatalError(0,
638 __("Data for offline browsing has not been downloaded yet."));
639 }
640
641 render_offline_feedlist();
642 init_second_stage();
643 window.setTimeout("viewfeed(-4)", 50);
644
645 } catch (e) {
646 exception_error("init_offline", e);
647 }
648 }
649
650 function offline_download_parse(stage, transport) {
651 try {
652 if (transport.responseXML) {
653
654 if (!sync_in_progress) return;
655
656 var sync_ok = transport.responseXML.getElementsByTagName("sync-ok");
657
658 if (sync_ok.length > 0) {
659 for (var i = 0; i < sync_ok.length; i++) {
660 var id = sync_ok[i].getAttribute("id");
661 var unread = sync_ok[i].getAttribute("unread");
662 var marked = sync_ok[i].getAttribute("marked");
663
664 if (id) {
665 debug("synced offline info for id " + id);
666
667 if (unread != undefined && marked != undefined) {
668 db.execute("UPDATE articles SET "+
669 "unread = ?, marked = ? WHERE id = ?", [unread, marked, id]);
670
671 }
672 db.execute("UPDATE articles SET modified = '' WHERE id = ?", [id]);
673 }
674 }
675 }
676
677 if (stage == 0) {
678
679 $("offlineModeSyncMsg").innerHTML = __("Synchronizing feeds...");
680
681 var feeds = transport.responseXML.getElementsByTagName("feed");
682
683 if (feeds.length > 0) {
684 db.execute("DELETE FROM feeds");
685 }
686
687 for (var i = 0; i < feeds.length; i++) {
688 var id = feeds[i].getAttribute("id");
689 var has_icon = feeds[i].getAttribute("has_icon");
690 var title = feeds[i].firstChild.nodeValue;
691 var cat_id = feeds[i].getAttribute("cat_id");
692
693 db.execute("INSERT INTO feeds (id,title,has_icon,cat_id)"+
694 "VALUES (?,?,?,?)",
695 [id, title, has_icon, cat_id]);
696 }
697
698 $("offlineModeSyncMsg").innerHTML = __("Synchronizing categories...");
699
700 var cats = transport.responseXML.getElementsByTagName("category");
701
702 if (feeds.length > 0) {
703 db.execute("DELETE FROM categories");
704 }
705
706 for (var i = 0; i < cats.length; i++) {
707 var id = cats[i].getAttribute("id");
708 var collapsed = cats[i].getAttribute("collapsed");
709 var title = cats[i].firstChild.nodeValue;
710
711 db.execute("INSERT INTO categories (id,title,collapsed)"+
712 "VALUES (?,?,?)",
713 [id, title, collapsed]);
714 }
715
716 $("offlineModeSyncMsg").innerHTML = __("Synchronizing labels...");
717
718 var labels = transport.responseXML.getElementsByTagName("label");
719
720 if (labels.length > 0) {
721 db.execute("DELETE FROM labels");
722 }
723
724 for (var i = 0; i < labels.length; i++) {
725 var id = labels[i].getAttribute("id");
726 var fg_color = labels[i].getAttribute("fg_color");
727 var bg_color = labels[i].getAttribute("bg_color");
728 var caption = labels[i].firstChild.nodeValue;
729
730 db.execute("INSERT INTO labels (id,caption,fg_color,bg_color)"+
731 "VALUES (?,?,?,?)",
732 [id, caption, fg_color, bg_color]);
733 }
734
735 $("offlineModeSyncMsg").innerHTML = __("Synchronizing articles...");
736
737 sync_timer = window.setTimeout("update_offline_data("+(stage+1)+")", 2*1000);
738 } else {
739
740 var articles = transport.responseXML.getElementsByTagName("article");
741
742 var limit = transport.responseXML.getElementsByTagName("limit")[0];
743
744 if (limit) {
745 limit = limit.getAttribute("value");
746 } else {
747 limit = 0;
748 }
749
750 var articles_found = 0;
751
752 for (var i = 0; i < articles.length; i++) {
753 var a = eval("("+articles[i].firstChild.nodeValue+")");
754 articles_found++;
755 if (a) {
756
757 db.execute("DELETE FROM articles WHERE id = ?", [a.id]);
758
759 db.execute("INSERT INTO articles "+
760 "(id, feed_id, title, link, guid, updated, content, "+
761 "unread, marked, tags, comments) "+
762 "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
763 [a.id, a.feed_id, a.title, a.link, a.guid, a.updated,
764 a.content, a.unread, a.marked, a.tags,
765 a.comments]);
766
767 if (a.labels.length > 0) {
768 for (var j = 0; j < a.labels.length; j++) {
769 label_local_add_article(a.id, a.labels[j][0]);
770 }
771 }
772
773 }
774 }
775
776 debug("downloaded articles: " + articles_found + " limit: " + limit);
777
778 articles_synced += articles_found;
779
780 var msg =__("Synchronizing articles (%d)...").replace("%d", articles_synced);
781
782 $("offlineModeSyncMsg").innerHTML = msg;
783
784 var has_sync_data = has_local_sync_data();
785
786 if (articles_found >= limit || has_sync_data) {
787 sync_timer = window.setTimeout("update_offline_data("+(stage+1)+")",
788 3*1000);
789 debug("<b>update_offline_data: done " + stage + " HSD: " +
790 has_sync_data + "</b>");
791 } else {
792 window.setTimeout("offlineDownloadStart()", 180*1000);
793 debug("update_offline_data: finished");
794
795 var pic = $("offlineModePic");
796
797 if (pic) {
798 pic.src = "images/offline.png";
799
800 var rs = db.execute("SELECT value FROM syncdata WHERE key = 'last_online'");
801 var last_sync = "";
802
803 if (rs.isValidRow()) {
804 last_sync = rs.field(0).substring(0,16);
805 }
806 rs.close();
807
808 var msg = __("Last sync: %s").replace("%s", last_sync);
809
810 articles_synced = 0;
811
812 $("offlineModeSyncMsg").innerHTML = msg;
813 }
814
815 offlineSyncShowHideElems(false);
816
817 sync_in_progress = false;
818
819 db.execute("DELETE FROM articles WHERE "+
820 "updated < DATETIME('NOW', 'localtime', '-31 days')");
821
822 }
823 }
824
825 update_local_sync_data();
826
827
828 // notify('');
829
830 } else {
831 sync_in_progress = false;
832
833 var pic = $("offlineModePic");
834
835 if (pic) {
836 pic.src = "images/offline.png";
837 var msg = __("Last sync: Error receiving data.");
838 articles_synced = 0;
839 $("offlineModeSyncMsg").innerHTML = msg;
840 }
841
842 offlineSyncShowHideElems(false);
843 }
844
845 } catch (e) {
846 exception_error("offline_download_parse", e);
847 }
848 }
849
850 function update_offline_data(stage) {
851 try {
852
853 if (!stage) stage = 0;
854
855 if (!db || offline_mode || getInitParam("offline_enabled") != "1") return;
856
857 var query = "backend.php?op=rpc&subop=download";
858
859 var rs = db.execute("SELECT MAX(id), MIN(id) FROM articles");
860
861 if (rs.isValidRow() && rs.field(0)) {
862 var offline_dl_max_id = rs.field(0);
863 var offline_dl_min_id = rs.field(1);
864
865 query = query + "&cidt=" + offline_dl_max_id;
866 query = query + "&cidb=" + offline_dl_min_id;
867
868 if (stage > 0) stage = 1;
869 }
870
871 rs.close();
872
873 debug("update_offline_data: stage " + stage);
874
875 query = query + "&stage=" + stage;
876
877 var to_sync = prepare_local_sync_data();
878
879 if (to_sync != "") {
880 to_sync = "?sync=" + param_escape(to_sync);
881 }
882
883 debug(query + "/" + to_sync);
884
885 var pic = $("offlineModePic");
886
887 if (pic) {
888 pic.src = "images/offline-sync.gif";
889 if (articles_synced == 0) {
890 $("offlineModeSyncMsg").innerHTML = __("Synchronizing...");
891 }
892 }
893
894 offlineSyncShowHideElems(true);
895 offlineUpdateStore();
896
897 sync_in_progress = true;
898
899 new Ajax.Request(query, {
900 parameters: to_sync,
901 onComplete: function(transport) {
902 offline_download_parse(stage, transport);
903 } });
904
905 } catch (e) {
906 exception_error("initiate_offline_download", e);
907 }
908 }
909
910 function set_feedlist_counter(id, ctr, is_cat) {
911 try {
912
913 var feedctr = $("FEEDCTR-" + id);
914 var feedu = $("FEEDU-" + id);
915 var feedr = $("FEEDR-" + id);
916
917 if (is_cat) {
918 var catctr = $("FCATCTR-" + id);
919 if (catctr) {
920 catctr.innerHTML = "(" + ctr + ")";
921 if (ctr > 0) {
922 catctr.className = "catCtrHasUnread";
923 } else {
924 catctr.className = "catCtrNoUnread";
925 }
926 }
927 } else if (feedctr && feedu && feedr) {
928
929 var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
930
931 feedu.innerHTML = ctr;
932
933 if (ctr > 0) {
934 feedctr.className = "feedCtrHasUnread";
935 if (!feedr.className.match("Unread")) {
936 var is_selected = feedr.className.match("Selected");
937
938 feedr.className = feedr.className.replace("Selected", "");
939 feedr.className = feedr.className.replace("Unread", "");
940
941 feedr.className = feedr.className + "Unread";
942
943 if (is_selected) {
944 feedr.className = feedr.className + "Selected";
945 }
946
947 }
948
949 if (row_needs_hl) {
950 new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5",
951 queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );
952 }
953 } else {
954 feedctr.className = "feedCtrNoUnread";
955 feedr.className = feedr.className.replace("Unread", "");
956 }
957 }
958
959 } catch (e) {
960 exception_error("set_feedlist_counter", e);
961 }
962 }
963
964 function update_local_feedlist_counters() {
965 try {
966 if (!offline_mode || !db) return;
967
968 /* var rs = db.execute("SELECT feeds.id,COUNT(articles.id) "+
969 "FROM feeds LEFT JOIN articles ON (feed_id = feeds.id) "+
970 "WHERE unread = 1 OR unread IS NULL GROUP BY feeds.id "+
971 "ORDER BY feeds.title"); */
972
973 var rs = db.execute("SELECT id FROM feeds "+
974 "ORDER BY title");
975
976 while (rs.isValidRow()) {
977 var id = rs.field(0);
978 var ctr = get_local_feed_unread(id);
979 set_feedlist_counter(id, ctr, false);
980 rs.next();
981 }
982
983 rs.close();
984
985 var rs = db.execute("SELECT cat_id,SUM(unread) "+
986 "FROM articles, feeds WHERE feeds.id = feed_id GROUP BY cat_id");
987
988 while (rs.isValidRow()) {
989 var id = rs.field(0);
990 var ctr = rs.field(1);
991 set_feedlist_counter(id, ctr, true);
992 rs.next();
993 }
994
995 rs.close();
996
997 set_feedlist_counter(-2, get_local_category_unread(-2), true);
998
999 set_feedlist_counter(-4, get_local_feed_unread(-4));
1000 set_feedlist_counter(-1, get_local_feed_unread(-1));
1001
1002 var rs = db.execute("SELECT id FROM labels");
1003
1004 while (rs.isValidRow()) {
1005 var id = -11 - rs.field(0);
1006 var ctr = get_local_feed_unread(id);
1007 set_feedlist_counter(id, ctr, false);
1008 rs.next();
1009 }
1010
1011 rs.close();
1012
1013 hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
1014
1015 global_unread = get_local_feed_unread(-4);
1016 updateTitle();
1017
1018 } catch (e) {
1019 exception_error("update_local_feedlist_counters", e);
1020 }
1021 }
1022
1023 function get_local_feed_unread(id) {
1024 try {
1025 var rs;
1026
1027 if (id == -4) {
1028 rs = db.execute("SELECT SUM(unread) FROM articles");
1029 } else if (id == -1) {
1030 rs = db.execute("SELECT SUM(unread) FROM articles WHERE marked = 1");
1031 } else if (id > 0) {
1032 rs = db.execute("SELECT SUM(unread) FROM articles WHERE feed_id = ?", [id]);
1033 } else if (id < -10) {
1034 var label_id = -11 - id;
1035 rs = db.execute("SELECT SUM(unread) FROM articles,article_labels "+
1036 "WHERE article_labels.id = articles.id AND label_id = ?", [label_id]);
1037 }
1038
1039 var a = false;
1040
1041 if (rs.isValidRow()) {
1042 a = rs.field(0);
1043 } else {
1044 a = 0;
1045 }
1046
1047 rs.close();
1048
1049 return a;
1050
1051 } catch (e) {
1052 exception_error("get_local_feed_unread", e);
1053 }
1054 }
1055
1056 function enable_offline_reading() {
1057 try {
1058
1059 if (db && getInitParam("offline_enabled") == "1") {
1060 init_local_sync_data();
1061 Element.show("offlineModePic");
1062 offlineDownloadStart();
1063 }
1064
1065 } catch (e) {
1066 exception_error("enable_offline_reading", e);
1067 }
1068 }
1069
1070 function init_gears() {
1071 try {
1072
1073 if (window.google && google.gears) {
1074
1075 try {
1076 localServer = google.gears.factory.create("beta.localserver");
1077 } catch (e) {
1078 return;
1079 }
1080
1081 store = localServer.createManagedStore("tt-rss");
1082 store.manifestUrl = "manifest.json.php";
1083 store.enabled = false;
1084
1085 db = google.gears.factory.create('beta.database');
1086 db.open('tt-rss');
1087
1088 db.execute("CREATE TABLE IF NOT EXISTS version (schema_version text)");
1089
1090 var rs = db.execute("SELECT schema_version FROM version");
1091
1092 var version = "";
1093
1094 if (rs.isValidRow()) {
1095 version = rs.field(0);
1096 }
1097
1098 rs.close();
1099
1100 if (version != SCHEMA_VERSION) {
1101 db.execute("DROP TABLE IF EXISTS init_params");
1102 db.execute("DROP TABLE IF EXISTS cache");
1103 db.execute("DROP TABLE IF EXISTS feeds");
1104 db.execute("DROP TABLE IF EXISTS categories");
1105 db.execute("DROP TABLE IF EXISTS labels");
1106 db.execute("DROP TABLE IF EXISTS article_labels");
1107 db.execute("DROP TABLE IF EXISTS articles");
1108 db.execute("DROP INDEX IF EXISTS article_labels_label_id_idx");
1109 db.execute("DROP INDEX IF EXISTS articles_unread_idx");
1110 db.execute("DROP INDEX IF EXISTS articles_feed_id_idx");
1111 db.execute("DROP INDEX IF EXISTS articles_id_idx");
1112 db.execute("DROP INDEX IF EXISTS article_labels_id_idx");
1113 db.execute("DROP TABLE IF EXISTS version");
1114 db.execute("DROP TRIGGER IF EXISTS articles_update_unread");
1115 db.execute("DROP TRIGGER IF EXISTS articles_update_marked");
1116 db.execute("DROP TRIGGER IF EXISTS articles_remove_labelrefs");
1117 db.execute("CREATE TABLE IF NOT EXISTS version (schema_version text)");
1118 db.execute("DROP TABLE IF EXISTS syncdata");
1119 db.execute("INSERT INTO version (schema_version) VALUES (?)",
1120 [SCHEMA_VERSION]);
1121 }
1122
1123 db.execute("CREATE TABLE IF NOT EXISTS init_params (key text, value text)");
1124
1125 db.execute("CREATE TABLE IF NOT EXISTS cache (id integer, article text, param text, added text)");
1126 db.execute("CREATE TABLE IF NOT EXISTS feeds (id integer, title text, has_icon integer, cat_id integer)");
1127 db.execute("CREATE TABLE IF NOT EXISTS categories (id integer, title text, collapsed integer)");
1128 db.execute("CREATE TABLE IF NOT EXISTS labels (id integer, caption text, fg_color text, bg_color text)");
1129 db.execute("CREATE TABLE IF NOT EXISTS article_labels (id integer, label_id integer)");
1130 db.execute("CREATE TABLE IF NOT EXISTS articles (id integer, feed_id integer, title text, link text, guid text, updated timestamp, content text, tags text, unread integer, marked integer, added text, modified timestamp, comments text)");
1131
1132 db.execute("CREATE INDEX IF NOT EXISTS articles_unread_idx ON articles(unread)");
1133 db.execute("CREATE INDEX IF NOT EXISTS article_labels_label_id_idx ON article_labels(label_id)");
1134 db.execute("CREATE INDEX IF NOT EXISTS articles_feed_id_idx ON articles(feed_id)");
1135 db.execute("CREATE INDEX IF NOT EXISTS articles_id_idx ON articles(id)");
1136 db.execute("CREATE INDEX IF NOT EXISTS article_labels_id_idx ON article_labels(id)");
1137
1138 db.execute("CREATE TABLE IF NOT EXISTS syncdata (key integer, value text)");
1139
1140 db.execute("DELETE FROM cache WHERE id LIKE 'F:%' OR id LIKE 'C:%'");
1141
1142 db.execute("CREATE TRIGGER IF NOT EXISTS articles_update_unread "+
1143 "UPDATE OF unread ON articles "+
1144 "BEGIN "+
1145 "UPDATE articles SET modified = DATETIME('NOW', 'localtime') "+
1146 "WHERE id = OLD.id AND "+
1147 "OLD.unread != NEW.unread;"+
1148 "END;");
1149
1150 db.execute("CREATE TRIGGER IF NOT EXISTS articles_update_marked "+
1151 "UPDATE OF marked ON articles "+
1152 "BEGIN "+
1153 "UPDATE articles SET modified = DATETIME('NOW', 'localtime') "+
1154 "WHERE id = OLD.id;"+
1155 "END;");
1156
1157 db.execute("CREATE TRIGGER IF NOT EXISTS articles_remove_labelrefs "+
1158 "DELETE ON articles "+
1159 "BEGIN "+
1160 "DELETE FROM article_labels WHERE id = OLD.id; "+
1161 "END; ");
1162
1163 }
1164
1165 cache_expire();
1166
1167 } catch (e) {
1168 exception_error("init_gears", e);
1169 }
1170 }
1171
1172 function offlineArticlesStored() {
1173
1174 var rs = db.execute("SELECT COUNT(*) FROM articles");
1175 var count = 0;
1176 if (rs.isValidRow()) {
1177 count = rs.field(0);
1178 }
1179
1180 rs.close();
1181
1182 return count;
1183 }
1184
1185 function gotoOffline() {
1186
1187 // debug("[Local store] currentVersion = " + store.currentVersion);
1188
1189
1190 if (offlineArticlesStored() == 0) {
1191 notify_error("You have to synchronize some articles before going into offline mode.");
1192 return;
1193 }
1194
1195 if (confirm(__("Switch Tiny Tiny RSS into offline mode?"))) {
1196
1197 store.enabled = true;
1198 store.checkForUpdate();
1199
1200 notify_progress("Preparing offline mode...", true);
1201
1202 var timerId = window.setInterval(function() {
1203 if (store.currentVersion) {
1204 window.clearInterval(timerId);
1205 debug("[Local store] sync complete: " + store.currentVersion);
1206
1207 //window.location.href = "tt-rss.php";
1208
1209 offlineDownloadStop();
1210 init_offline();
1211
1212 notify_info("Tiny Tiny RSS is in offline mode.");
1213
1214 } else if (store.updateStatus == 3) {
1215 debug("[Local store] sync error: " + store.lastErrorMessage);
1216 notify_error(store.lastErrorMessage, true);
1217 } }, 500);
1218 }
1219 }
1220
1221 function gotoOnline() {
1222 // if (confirm(__("You won't be able to access offline version of Tiny Tiny RSS until you switch it into offline mode again. Go online?"))) {
1223 if (confirm(__("Tiny Tiny RSS will reload. Go online?"))) {
1224 //localServer.removeManagedStore("tt-rss");
1225 window.location.href = "tt-rss.php";
1226 }
1227 }
1228
1229 function local_collapse_cat(id) {
1230 try {
1231 if (db) {
1232 db.execute("UPDATE categories SET collapsed = NOT collapsed WHERE id = ?",
1233 [id]);
1234 }
1235 } catch (e) {
1236 exception_error("local_collapse_cat", e);
1237 }
1238 }
1239
1240 function get_local_category_title(id) {
1241 try {
1242
1243 var rs = db.execute("SELECT title FROM categories WHERE id = ?", [id]);
1244 var tmp = "";
1245
1246 if (rs.isValidRow()) {
1247 tmp = rs.field(0);
1248 }
1249
1250 rs.close();
1251
1252 return tmp;
1253
1254 } catch (e) {
1255 exception_error("get_local_category_title", e);
1256 }
1257 }
1258
1259 function get_local_category_unread(id) {
1260 try {
1261 var rs = false;
1262
1263 if (id >= 0) {
1264 rs = db.execute("SELECT SUM(unread) FROM articles, feeds "+
1265 "WHERE feeds.id = feed_id AND cat_id = ?", [id]);
1266 } else if (id == -2) {
1267 rs = db.execute("SELECT SUM(unread) FROM article_labels, articles "+
1268 "where article_labels.id = articles.id");
1269 } else {
1270 return 0;
1271 }
1272
1273 var tmp = 0;
1274
1275 if (rs.isValidRow()) {
1276 tmp = rs.field(0);
1277 }
1278
1279 rs.close();
1280
1281 return tmp;
1282
1283 } catch (e) {
1284 exception_error("get_local_category_unread", e);
1285 }
1286 }
1287
1288 function printCategoryHeader(cat_id, hidden, can_browse) {
1289 try {
1290 if (hidden == undefined) hidden = false;
1291 if (can_browse == undefined) can_browse = false;
1292
1293 var tmp_category = get_local_category_title(cat_id);
1294 var tmp = "";
1295
1296 var cat_unread = get_local_category_unread(cat_id);
1297
1298 var holder_style = "";
1299 var ellipsis = "";
1300
1301 if (hidden) {
1302 holder_style = "display:none;";
1303 ellipsis = "…";
1304 }
1305
1306 var catctr_class = (cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
1307
1308 var browse_cat_link = "";
1309 var inner_title_class = "catTitleNL";
1310
1311 if (can_browse) {
1312 browse_cat_link = "onclick=\"javascript:viewCategory("+cat_id+")\"";
1313 inner_title_class = "catTitle";
1314 }
1315
1316 var cat_class = "feedCat";
1317
1318 tmp += "<li class=\""+cat_class+"\" id=\"FCAT-"+cat_id+"\">"+
1319 "<img onclick=\"toggleCollapseCat("+cat_id+")\" class=\"catCollapse\""+
1320 " title=\""+__('Click to collapse category')+"\""+
1321 " src=\"images/cat-collapse.png\"><span class=\""+inner_title_class+"\" "+
1322 " id=\"FCATN-"+cat_id+"\" "+browse_cat_link+
1323 "\">"+tmp_category+"</span>";
1324
1325 tmp += "<span id=\"FCAP-"+cat_id+"\">";
1326
1327 tmp += " <span id=\"FCATCTR-"+cat_id+"\" "+
1328 "class=\""+catctr_class+"\">("+cat_unread+")</span> "+ellipsis;
1329
1330 tmp += "</span>";
1331
1332 tmp += "<ul class=\"feedCatList\" id=\"FCATLIST-"+cat_id+"\" "+
1333 "style='"+holder_style+"'>";
1334
1335 return tmp;
1336 } catch (e) {
1337 exception_error("printCategoryHeader", e);
1338 }
1339 }
1340
1341 function is_local_cat_collapsed(id) {
1342 try {
1343
1344 var rs = db.execute("SELECT collapsed FROM categories WHERE id = ?", [id]);
1345 var cat_hidden = 0;
1346
1347 if (rs.isValidRow()) {
1348 cat_hidden = rs.field(0);
1349 }
1350
1351 rs.close();
1352
1353 return cat_hidden == "1";
1354
1355 } catch (e) {
1356 exception_error("is_local_cat_collapsed", e);
1357 }
1358 }
1359
1360 function get_local_article_labels(id) {
1361 try {
1362 var rs = db.execute("SELECT DISTINCT label_id,caption,fg_color,bg_color "+
1363 "FROM labels, article_labels "+
1364 "WHERE labels.id = label_id AND article_labels.id = ?", [id]);
1365
1366 var tmp = new Array();
1367
1368 while (rs.isValidRow()) {
1369 var e = new Array();
1370
1371 e[0] = rs.field(0);
1372 e[1] = rs.field(1);
1373 e[2] = rs.field(2);
1374 e[3] = rs.field(3);
1375
1376 tmp.push(e);
1377
1378 rs.next();
1379 }
1380
1381 return tmp;
1382
1383 } catch (e) {
1384 exception_error("get_local_article_labels", e);
1385 }
1386 }
1387
1388 function label_local_add_article(id, label_id) {
1389 try {
1390 //debug("label_local_add_article " + id + " => " + label_id);
1391
1392 var rs = db.execute("SELECT COUNT(id) FROM article_labels WHERE "+
1393 "id = ? AND label_id = ?", [id, label_id]);
1394 var check = rs.field(0);
1395
1396 if (rs.isValidRow()) {
1397 var check = rs.field(0);
1398 }
1399 rs.close();
1400
1401 if (check == 0) {
1402 db.execute("INSERT INTO article_labels (id, label_id) VALUES "+
1403 "(?,?)", [id, label_id]);
1404 }
1405
1406 } catch (e) {
1407 exception_error("label_local_add_article", e);
1408 }
1409 }
1410
1411 function get_local_feed_title(id) {
1412 try {
1413
1414 var feed_title = "Unknown feed: " + id;
1415
1416 if (id > 0) {
1417 var rs = db.execute("SELECT title FROM feeds WHERE id = ?", [id]);
1418
1419 if (rs.isValidRow()) {
1420 feed_title = rs.field(0);
1421 }
1422
1423 rs.close();
1424 } else if (id == -1) {
1425 feed_title = __("Starred articles");
1426 } else if (id == -4) {
1427 feed_title = __("All articles");
1428 } else if (id < -10) {
1429
1430 var label_id = -11 - id;
1431
1432 var rs = db.execute("SELECT caption FROM labels WHERE id = ?", [label_id]);
1433
1434 if (rs.isValidRow()) {
1435 feed_title = rs.field(0);
1436 }
1437
1438 rs.close();
1439 }
1440
1441 return feed_title;
1442
1443 } catch (e) {
1444 exception_error("get_local_feed_title", e);
1445 }
1446 }
1447
1448 function format_article_labels(labels, id) {
1449 try {
1450
1451 var labels_str = "";
1452
1453 if (!labels) return "";
1454
1455 for (var i = 0; i < labels.length; i++) {
1456 var l = labels[i];
1457
1458 labels_str += "<span class='hlLabelRef' "+
1459 "style='color : "+l[2]+"; background-color : "+l[3]+"'>"+l[1]+"</span>";
1460 }
1461
1462 return labels_str;
1463
1464 } catch (e) {
1465 exception_error("format_article_labels", e);
1466 }
1467 }
1468
1469 function init_local_sync_data() {
1470 try {
1471
1472 if (!db) return;
1473
1474 var rs = db.execute("SELECT COUNT(*) FROM syncdata WHERE key = 'last_online'");
1475 var has_last_online = 0;
1476
1477 if (rs.isValidRow()) {
1478 has_last_online = rs.field(0);
1479 }
1480
1481 rs.close();
1482
1483 if (!has_last_online) {
1484 db.execute("INSERT INTO syncdata (key, value) VALUES ('last_online', '')");
1485 }
1486
1487 } catch (e) {
1488 exception_error("init_local_sync_data", e);
1489
1490 }
1491 }
1492
1493 function has_local_sync_data() {
1494 try {
1495
1496 var rs = db.execute("SELECT id FROM articles "+
1497 "WHERE modified > (SELECT value FROM syncdata WHERE key = 'last_online') "+
1498 "LIMIT 1");
1499
1500 var tmp = 0;
1501
1502 if (rs.isValidRow()) {
1503 tmp = rs.field(0);
1504 }
1505
1506 rs.close();
1507
1508 return tmp != 0;
1509
1510 } catch (e) {
1511 exception_error("has_local_sync_data", e);
1512 }
1513 }
1514
1515 function prepare_local_sync_data() {
1516 try {
1517 var rs = db.execute("SELECT value FROM syncdata WHERE key = 'last_online'");
1518
1519 var last_online = "";
1520
1521 if (rs.isValidRow()) {
1522 last_online = rs.field(0);
1523 }
1524
1525 rs.close();
1526
1527 var rs = db.execute("SELECT id,unread,marked FROM articles "+
1528 "WHERE modified > ? LIMIT 200", [last_online]);
1529
1530 var tmp = last_online + ";";
1531
1532 var entries = 0;
1533
1534 while (rs.isValidRow()) {
1535 var e = new Array();
1536
1537 tmp = tmp + rs.field(0) + "," + rs.field(1) + "," + rs.field(2) + ";";
1538 entries++;
1539
1540 rs.next();
1541 }
1542
1543 rs.close();
1544
1545 if (entries > 0) {
1546 return tmp;
1547 } else {
1548 return '';
1549 }
1550
1551 } catch (e) {
1552 exception_error("prepare_local_sync_data", e);
1553 }
1554 }
1555
1556 function update_local_sync_data() {
1557 try {
1558 if (db && !offline_mode) {
1559
1560 var rs = db.execute("SELECT id FROM articles "+
1561 "WHERE modified > (SELECT value FROM syncdata WHERE "+
1562 "key = 'last_online') LIMIT 1")
1563
1564 var f_id = 0;
1565
1566 if (rs.isValidRow()) {
1567 f_id = rs.field(0);
1568 }
1569
1570 rs.close();
1571
1572 /* no pending articles to sync */
1573
1574 if (f_id == 0) {
1575 db.execute("UPDATE syncdata SET value = DATETIME('NOW', 'localtime') "+
1576 "WHERE key = 'last_online'");
1577 }
1578
1579 }
1580 } catch (e) {
1581 exception_error("update_local_sync_data", e);
1582 }
1583 }
1584
1585 function catchup_local_feed(id, is_cat) {
1586 try {
1587 if (!db) return;
1588
1589 if (!is_cat) {
1590 if (id >= 0) {
1591 db.execute("UPDATE articles SET unread = 0 WHERE feed_id = ?", [id]);
1592 } else if (id == -1) {
1593 db.execute("UPDATE articles SET unread = 0 WHERE marked = 1");
1594 } else if (id == -4) {
1595 db.execute("UPDATE articles SET unread = 0");
1596 } else if (id < -10) {
1597 var label_id = -11-id;
1598
1599 db.execute("UPDATE articles SET unread = 0 WHERE "+
1600 "(SELECT COUNT(*) FROM article_labels WHERE "+
1601 "article_labels.id = articles.id AND label_id = ?) > 0", [label_id]);
1602 }
1603 }
1604
1605 update_local_feedlist_counters();
1606
1607 } catch (e) {
1608 exception_error("catchup_local_feed", e);
1609 }
1610 }
1611
1612 function toggleOfflineModeInfo() {
1613 try {
1614 var e = $('offlineModeDrop');
1615 var p = $('offlineModePic');
1616
1617 if (Element.visible(e)) {
1618 Element.hide(e);
1619 } else {
1620 Element.show(e);
1621 }
1622
1623 } catch (e) {
1624 exception_error("toggleOfflineModeInfo", e);
1625 }
1626 }
1627
1628 function offlineDownloadStart(stage) {
1629 try {
1630 if (!stage) stage = 0;
1631
1632 if (db && !sync_in_progress && getInitParam("offline_enabled") == "1") {
1633 window.setTimeout("update_offline_data("+stage+")", 100);
1634 }
1635 } catch (e) {
1636 exception_error("offlineDownloadStart", e);
1637 }
1638 }
1639
1640 function offlineDownloadStop() {
1641 try {
1642 if (db && sync_in_progress && getInitParam("offline_enabled") == "1") {
1643
1644 sync_in_progress = false;
1645
1646 if (sync_timer) {
1647 window.clearTimeout(sync_timer);
1648 sync_timer = false;
1649 }
1650
1651 var pic = $("offlineModePic");
1652
1653 if (pic) {
1654 pic.src = "images/offline.png";
1655 var msg = __("Last sync: Cancelled.");
1656 articles_synced = 0;
1657 $("offlineModeSyncMsg").innerHTML = msg;
1658 }
1659
1660 offlineSyncShowHideElems(false);
1661
1662 }
1663 } catch (e) {
1664 exception_error("offlineDownloadStart", e);
1665 }
1666 }
1667
1668 function offlineClearData() {
1669 try {
1670 if (db) {
1671
1672 if (confirm(__("This will remove all offline data stored by Tiny Tiny RSS on this computer. Continue?"))) {
1673
1674 notify_progress("Removing offline data...");
1675
1676 localServer.removeManagedStore("tt-rss");
1677
1678 db.execute("DELETE FROM articles");
1679 db.execute("DELETE FROM article_labels");
1680 db.execute("DELETE FROM labels");
1681 db.execute("DELETE FROM feeds");
1682 db.execute("DELETE FROM cache");
1683
1684 notify_info("Local data removed.");
1685 }
1686 }
1687 } catch (e) {
1688 exception_error("offlineClearData", e);
1689 }
1690 }
1691
1692 function offlineUpdateStore() {
1693 try {
1694 if (offline_mode || !store) return;
1695
1696 store.checkForUpdate();
1697
1698 var timerId = window.setInterval(function() {
1699 if (store.currentVersion) {
1700 window.clearInterval(timerId);
1701 debug("[Local store] sync complete: " + store.currentVersion);
1702 } else if (store.updateStatus == 3) {
1703 debug("[Local store] sync error: " + store.lastErrorMessage);
1704 } }, 500);
1705
1706 } catch (e) {
1707 exception_error("offlineUpdateStore", e);
1708 }
1709 }
1710
1711 function offlineSyncShowHideElems(syncing) {
1712 try {
1713
1714 var elems = $$("div.hideWhenSyncing");
1715
1716 for (var j = 0; j < elems.length; j++) {
1717 if (syncing) {
1718 Element.hide(elems[j]);
1719 } else {
1720 Element.show(elems[j]);
1721 }
1722 }
1723
1724 var elems = $$("div.showWhenSyncing");
1725
1726 for (var j = 0; j < elems.length; j++) {
1727 if (syncing) {
1728 Element.show(elems[j]);
1729 } else {
1730 Element.hide(elems[j]);
1731 }
1732 }
1733
1734 } catch (e) {
1735 exception_error("offlineSyncShowHideElems", e);
1736 }
1737 }
1738
1739 function offlineConfirmModeChange() {
1740 try {
1741
1742 if (db && getInitParam("offline_enabled") == "1" && offlineArticlesStored() > 0) {
1743 var ok = confirm(__("Tiny Tiny RSS has trouble accessing its server. Would you like to go offline?"));
1744
1745 if (ok) {
1746 init_offline();
1747 }
1748 }
1749
1750 } catch (e) {
1751 exception_error("offlineConfirmModeChange", e);
1752 }
1753 }