]> git.wh0rd.org - tt-rss.git/blob - offline.js
Merge branch 'master' of bah.org.ru:public_html/testbox/tt-rss
[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) {
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+")' "+
341 "class='hlContent' valign='middle'>";
342
343 tmp += "<a target=\"_blank\" id=\"RTITLE-"+id+"\" href=\"" +
344 rs.fieldByName("link") + "\"" +
345 "onclick=\"return view("+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+")'>"+
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
606 Element.hide("topLinksOnline");
607 Element.show("topLinksOffline");
608
609 var tb_form = $("main_toolbar_form");
610 Element.hide(tb_form.update);
611
612 var chooser = $("quickMenuChooser");
613 chooser.disabled = true;
614
615 var rs = db.execute("SELECT key, value FROM init_params");
616
617 while (rs.isValidRow()) {
618 init_params[rs.field(0)] = rs.field(1);
619 rs.next();
620 }
621
622 rs.close();
623
624 var rs = db.execute("SELECT COUNT(*) FROM feeds");
625
626 var num_feeds = 0;
627
628 if (rs.isValidRow()) {
629 num_feeds = rs.field(0);
630 }
631
632 rs.close();
633
634 if (num_feeds == 0) {
635 remove_splash();
636 return fatalError(0,
637 __("Data for offline browsing has not been downloaded yet."));
638 }
639
640 render_offline_feedlist();
641 init_second_stage();
642 window.setTimeout("viewfeed(-4)", 50);
643
644 } catch (e) {
645 exception_error("init_offline", e);
646 }
647 }
648
649 function offline_download_parse(stage, transport) {
650 try {
651 if (transport.responseXML) {
652
653 if (!sync_in_progress) return;
654
655 var sync_ok = transport.responseXML.getElementsByTagName("sync-ok");
656
657 if (sync_ok.length > 0) {
658 for (var i = 0; i < sync_ok.length; i++) {
659 var id = sync_ok[i].getAttribute("id");
660 var unread = sync_ok[i].getAttribute("unread");
661 var marked = sync_ok[i].getAttribute("marked");
662
663 if (id) {
664 debug("synced offline info for id " + id);
665
666 if (unread != undefined && marked != undefined) {
667 db.execute("UPDATE articles SET "+
668 "unread = ?, marked = ? WHERE id = ?", [unread, marked, id]);
669
670 }
671 db.execute("UPDATE articles SET modified = '' WHERE id = ?", [id]);
672 }
673 }
674 }
675
676 if (stage == 0) {
677
678 $("offlineModeSyncMsg").innerHTML = __("Synchronizing feeds...");
679
680 var feeds = transport.responseXML.getElementsByTagName("feed");
681
682 if (feeds.length > 0) {
683 db.execute("DELETE FROM feeds");
684 }
685
686 for (var i = 0; i < feeds.length; i++) {
687 var id = feeds[i].getAttribute("id");
688 var has_icon = feeds[i].getAttribute("has_icon");
689 var title = feeds[i].firstChild.nodeValue;
690 var cat_id = feeds[i].getAttribute("cat_id");
691
692 db.execute("INSERT INTO feeds (id,title,has_icon,cat_id)"+
693 "VALUES (?,?,?,?)",
694 [id, title, has_icon, cat_id]);
695 }
696
697 $("offlineModeSyncMsg").innerHTML = __("Synchronizing categories...");
698
699 var cats = transport.responseXML.getElementsByTagName("category");
700
701 if (feeds.length > 0) {
702 db.execute("DELETE FROM categories");
703 }
704
705 for (var i = 0; i < cats.length; i++) {
706 var id = cats[i].getAttribute("id");
707 var collapsed = cats[i].getAttribute("collapsed");
708 var title = cats[i].firstChild.nodeValue;
709
710 db.execute("INSERT INTO categories (id,title,collapsed)"+
711 "VALUES (?,?,?)",
712 [id, title, collapsed]);
713 }
714
715 $("offlineModeSyncMsg").innerHTML = __("Synchronizing labels...");
716
717 var labels = transport.responseXML.getElementsByTagName("label");
718
719 if (labels.length > 0) {
720 db.execute("DELETE FROM labels");
721 }
722
723 for (var i = 0; i < labels.length; i++) {
724 var id = labels[i].getAttribute("id");
725 var fg_color = labels[i].getAttribute("fg_color");
726 var bg_color = labels[i].getAttribute("bg_color");
727 var caption = labels[i].firstChild.nodeValue;
728
729 db.execute("INSERT INTO labels (id,caption,fg_color,bg_color)"+
730 "VALUES (?,?,?,?)",
731 [id, caption, fg_color, bg_color]);
732 }
733
734 $("offlineModeSyncMsg").innerHTML = __("Synchronizing articles...");
735
736 sync_timer = window.setTimeout("update_offline_data("+(stage+1)+")", 2*1000);
737 } else {
738
739 var articles = transport.responseXML.getElementsByTagName("article");
740
741 var limit = transport.responseXML.getElementsByTagName("limit")[0];
742
743 if (limit) {
744 limit = limit.getAttribute("value");
745 } else {
746 limit = 0;
747 }
748
749 var articles_found = 0;
750
751 for (var i = 0; i < articles.length; i++) {
752 var a = eval("("+articles[i].firstChild.nodeValue+")");
753 articles_found++;
754 if (a) {
755
756 db.execute("DELETE FROM articles WHERE id = ?", [a.id]);
757
758 db.execute("INSERT INTO articles "+
759 "(id, feed_id, title, link, guid, updated, content, "+
760 "unread, marked, tags, comments) "+
761 "VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
762 [a.id, a.feed_id, a.title, a.link, a.guid, a.updated,
763 a.content, a.unread, a.marked, a.tags,
764 a.comments]);
765
766 if (a.labels.length > 0) {
767 for (var j = 0; j < a.labels.length; j++) {
768 label_local_add_article(a.id, a.labels[j][0]);
769 }
770 }
771
772 }
773 }
774
775 debug("downloaded articles: " + articles_found + " limit: " + limit);
776
777 articles_synced += articles_found;
778
779 var msg =__("Synchronizing articles (%d)...").replace("%d", articles_synced);
780
781 $("offlineModeSyncMsg").innerHTML = msg;
782
783 var has_sync_data = has_local_sync_data();
784
785 if (articles_found >= limit || has_sync_data) {
786 sync_timer = window.setTimeout("update_offline_data("+(stage+1)+")",
787 3*1000);
788 debug("<b>update_offline_data: done " + stage + " HSD: " +
789 has_sync_data + "</b>");
790 } else {
791 window.setTimeout("offlineDownloadStart()", 180*1000);
792 debug("update_offline_data: finished");
793
794 var pic = $("offlineModePic");
795
796 if (pic) {
797 pic.src = "images/offline.png";
798
799 var rs = db.execute("SELECT value FROM syncdata WHERE key = 'last_online'");
800 var last_sync = "";
801
802 if (rs.isValidRow()) {
803 last_sync = rs.field(0).substring(0,16);
804 }
805 rs.close();
806
807 var msg = __("Last sync: %s").replace("%s", last_sync);
808
809 articles_synced = 0;
810
811 $("offlineModeSyncMsg").innerHTML = msg;
812 }
813
814 offlineSyncShowHideElems(false);
815
816 sync_in_progress = false;
817
818 db.execute("DELETE FROM articles WHERE "+
819 "updated < DATETIME('NOW', 'localtime', '-31 days')");
820
821 }
822 }
823
824 update_local_sync_data();
825
826
827 // notify('');
828
829 } else {
830 sync_in_progress = false;
831
832 var pic = $("offlineModePic");
833
834 if (pic) {
835 pic.src = "images/offline.png";
836 var msg = __("Last sync: Error receiving data.");
837 articles_synced = 0;
838 $("offlineModeSyncMsg").innerHTML = msg;
839 }
840
841 offlineSyncShowHideElems(false);
842 }
843
844 } catch (e) {
845 exception_error("offline_download_parse", e);
846 }
847 }
848
849 function update_offline_data(stage) {
850 try {
851
852 if (!stage) stage = 0;
853
854 if (!db || offline_mode || getInitParam("offline_enabled") != "1") return;
855
856 var query = "?op=rpc&subop=download";
857
858 var rs = db.execute("SELECT MAX(id), MIN(id) FROM articles");
859
860 if (rs.isValidRow() && rs.field(0)) {
861 var offline_dl_max_id = rs.field(0);
862 var offline_dl_min_id = rs.field(1);
863
864 query = query + "&cidt=" + offline_dl_max_id;
865 query = query + "&cidb=" + offline_dl_min_id;
866
867 if (stage > 0) stage = 1;
868 }
869
870 rs.close();
871
872 debug("update_offline_data: stage " + stage);
873
874 query = query + "&stage=" + stage;
875
876 var to_sync = prepare_local_sync_data();
877
878 if (to_sync != "") {
879 to_sync = "&sync=" + param_escape(to_sync);
880 }
881
882 query = query + to_sync;
883
884 var pic = $("offlineModePic");
885
886 if (pic) {
887 pic.src = "images/offline-sync.gif";
888 if (articles_synced == 0) {
889 $("offlineModeSyncMsg").innerHTML = __("Synchronizing...");
890 }
891 }
892
893 offlineSyncShowHideElems(true);
894 offlineUpdateStore();
895
896 sync_in_progress = true;
897
898 debug(query);
899
900 new Ajax.Request("backend.php", {
901 parameters: query,
902 onComplete: function(transport) {
903 offline_download_parse(stage, transport);
904 } });
905
906 } catch (e) {
907 exception_error("initiate_offline_download", e);
908 }
909 }
910
911 function set_feedlist_counter(id, ctr, is_cat) {
912 try {
913
914 var feedctr = $("FEEDCTR-" + id);
915 var feedu = $("FEEDU-" + id);
916 var feedr = $("FEEDR-" + id);
917
918 if (is_cat) {
919 var catctr = $("FCATCTR-" + id);
920 if (catctr) {
921 catctr.innerHTML = "(" + ctr + ")";
922 if (ctr > 0) {
923 catctr.className = "catCtrHasUnread";
924 } else {
925 catctr.className = "catCtrNoUnread";
926 }
927 }
928 } else if (feedctr && feedu && feedr) {
929
930 var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
931
932 feedu.innerHTML = ctr;
933
934 if (ctr > 0) {
935 feedctr.className = "feedCtrHasUnread";
936 if (!feedr.className.match("Unread")) {
937 var is_selected = feedr.className.match("Selected");
938
939 feedr.className = feedr.className.replace("Selected", "");
940 feedr.className = feedr.className.replace("Unread", "");
941
942 feedr.className = feedr.className + "Unread";
943
944 if (is_selected) {
945 feedr.className = feedr.className + "Selected";
946 }
947
948 }
949
950 if (row_needs_hl) {
951 new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5",
952 queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );
953 }
954 } else {
955 feedctr.className = "feedCtrNoUnread";
956 feedr.className = feedr.className.replace("Unread", "");
957 }
958 }
959
960 } catch (e) {
961 exception_error("set_feedlist_counter", e);
962 }
963 }
964
965 function update_local_feedlist_counters() {
966 try {
967 if (!offline_mode || !db) return;
968
969 /* var rs = db.execute("SELECT feeds.id,COUNT(articles.id) "+
970 "FROM feeds LEFT JOIN articles ON (feed_id = feeds.id) "+
971 "WHERE unread = 1 OR unread IS NULL GROUP BY feeds.id "+
972 "ORDER BY feeds.title"); */
973
974 var rs = db.execute("SELECT id FROM feeds "+
975 "ORDER BY title");
976
977 while (rs.isValidRow()) {
978 var id = rs.field(0);
979 var ctr = get_local_feed_unread(id);
980 set_feedlist_counter(id, ctr, false);
981 rs.next();
982 }
983
984 rs.close();
985
986 var rs = db.execute("SELECT cat_id,SUM(unread) "+
987 "FROM articles, feeds WHERE feeds.id = feed_id GROUP BY cat_id");
988
989 while (rs.isValidRow()) {
990 var id = rs.field(0);
991 var ctr = rs.field(1);
992 set_feedlist_counter(id, ctr, true);
993 rs.next();
994 }
995
996 rs.close();
997
998 set_feedlist_counter(-2, get_local_category_unread(-2), true);
999
1000 set_feedlist_counter(-4, get_local_feed_unread(-4));
1001 set_feedlist_counter(-1, get_local_feed_unread(-1));
1002
1003 var rs = db.execute("SELECT id FROM labels");
1004
1005 while (rs.isValidRow()) {
1006 var id = -11 - rs.field(0);
1007 var ctr = get_local_feed_unread(id);
1008 set_feedlist_counter(id, ctr, false);
1009 rs.next();
1010 }
1011
1012 rs.close();
1013
1014 hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
1015
1016 global_unread = get_local_feed_unread(-4);
1017 updateTitle();
1018
1019 } catch (e) {
1020 exception_error("update_local_feedlist_counters", e);
1021 }
1022 }
1023
1024 function get_local_feed_unread(id) {
1025 try {
1026 var rs;
1027
1028 if (id == -4) {
1029 rs = db.execute("SELECT SUM(unread) FROM articles");
1030 } else if (id == -1) {
1031 rs = db.execute("SELECT SUM(unread) FROM articles WHERE marked = 1");
1032 } else if (id > 0) {
1033 rs = db.execute("SELECT SUM(unread) FROM articles WHERE feed_id = ?", [id]);
1034 } else if (id < -10) {
1035 var label_id = -11 - id;
1036 rs = db.execute("SELECT SUM(unread) FROM articles,article_labels "+
1037 "WHERE article_labels.id = articles.id AND label_id = ?", [label_id]);
1038 }
1039
1040 var a = false;
1041
1042 if (rs.isValidRow()) {
1043 a = rs.field(0);
1044 } else {
1045 a = 0;
1046 }
1047
1048 rs.close();
1049
1050 return a;
1051
1052 } catch (e) {
1053 exception_error("get_local_feed_unread", e);
1054 }
1055 }
1056
1057 function enable_offline_reading() {
1058 try {
1059
1060 if (db && getInitParam("offline_enabled") == "1") {
1061 init_local_sync_data();
1062 Element.show("offlineModePic");
1063 offlineDownloadStart();
1064 }
1065
1066 } catch (e) {
1067 exception_error("enable_offline_reading", e);
1068 }
1069 }
1070
1071 function init_gears() {
1072 try {
1073
1074 if (window.google && google.gears) {
1075
1076 try {
1077 localServer = google.gears.factory.create("beta.localserver");
1078 } catch (e) {
1079 return;
1080 }
1081
1082 store = localServer.createManagedStore("tt-rss");
1083 store.manifestUrl = "manifest.json.php";
1084 store.enabled = false;
1085
1086 db = google.gears.factory.create('beta.database');
1087 db.open('tt-rss');
1088
1089 db.execute("CREATE TABLE IF NOT EXISTS version (schema_version text)");
1090
1091 var rs = db.execute("SELECT schema_version FROM version");
1092
1093 var version = "";
1094
1095 if (rs.isValidRow()) {
1096 version = rs.field(0);
1097 }
1098
1099 rs.close();
1100
1101 if (version != SCHEMA_VERSION) {
1102 db.execute("DROP TABLE IF EXISTS init_params");
1103 db.execute("DROP TABLE IF EXISTS cache");
1104 db.execute("DROP TABLE IF EXISTS feeds");
1105 db.execute("DROP TABLE IF EXISTS categories");
1106 db.execute("DROP TABLE IF EXISTS labels");
1107 db.execute("DROP TABLE IF EXISTS article_labels");
1108 db.execute("DROP TABLE IF EXISTS articles");
1109 db.execute("DROP INDEX IF EXISTS article_labels_label_id_idx");
1110 db.execute("DROP INDEX IF EXISTS articles_unread_idx");
1111 db.execute("DROP INDEX IF EXISTS articles_feed_id_idx");
1112 db.execute("DROP INDEX IF EXISTS articles_id_idx");
1113 db.execute("DROP INDEX IF EXISTS article_labels_id_idx");
1114 db.execute("DROP TABLE IF EXISTS version");
1115 db.execute("DROP TRIGGER IF EXISTS articles_update_unread");
1116 db.execute("DROP TRIGGER IF EXISTS articles_update_marked");
1117 db.execute("DROP TRIGGER IF EXISTS articles_remove_labelrefs");
1118 db.execute("CREATE TABLE IF NOT EXISTS version (schema_version text)");
1119 db.execute("DROP TABLE IF EXISTS syncdata");
1120 db.execute("INSERT INTO version (schema_version) VALUES (?)",
1121 [SCHEMA_VERSION]);
1122 }
1123
1124 db.execute("CREATE TABLE IF NOT EXISTS init_params (key text, value text)");
1125
1126 db.execute("CREATE TABLE IF NOT EXISTS cache (id integer, article text, param text, added text)");
1127 db.execute("CREATE TABLE IF NOT EXISTS feeds (id integer, title text, has_icon integer, cat_id integer)");
1128 db.execute("CREATE TABLE IF NOT EXISTS categories (id integer, title text, collapsed integer)");
1129 db.execute("CREATE TABLE IF NOT EXISTS labels (id integer, caption text, fg_color text, bg_color text)");
1130 db.execute("CREATE TABLE IF NOT EXISTS article_labels (id integer, label_id integer)");
1131 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)");
1132
1133 db.execute("CREATE INDEX IF NOT EXISTS articles_unread_idx ON articles(unread)");
1134 db.execute("CREATE INDEX IF NOT EXISTS article_labels_label_id_idx ON article_labels(label_id)");
1135 db.execute("CREATE INDEX IF NOT EXISTS articles_feed_id_idx ON articles(feed_id)");
1136 db.execute("CREATE INDEX IF NOT EXISTS articles_id_idx ON articles(id)");
1137 db.execute("CREATE INDEX IF NOT EXISTS article_labels_id_idx ON article_labels(id)");
1138
1139 db.execute("CREATE TABLE IF NOT EXISTS syncdata (key integer, value text)");
1140
1141 db.execute("DELETE FROM cache WHERE id LIKE 'F:%' OR id LIKE 'C:%'");
1142
1143 db.execute("CREATE TRIGGER IF NOT EXISTS articles_update_unread "+
1144 "UPDATE OF unread ON articles "+
1145 "BEGIN "+
1146 "UPDATE articles SET modified = DATETIME('NOW', 'localtime') "+
1147 "WHERE id = OLD.id AND "+
1148 "OLD.unread != NEW.unread;"+
1149 "END;");
1150
1151 db.execute("CREATE TRIGGER IF NOT EXISTS articles_update_marked "+
1152 "UPDATE OF marked ON articles "+
1153 "BEGIN "+
1154 "UPDATE articles SET modified = DATETIME('NOW', 'localtime') "+
1155 "WHERE id = OLD.id;"+
1156 "END;");
1157
1158 db.execute("CREATE TRIGGER IF NOT EXISTS articles_remove_labelrefs "+
1159 "DELETE ON articles "+
1160 "BEGIN "+
1161 "DELETE FROM article_labels WHERE id = OLD.id; "+
1162 "END; ");
1163
1164 }
1165
1166 cache_expire();
1167
1168 } catch (e) {
1169 exception_error("init_gears", e);
1170 }
1171 }
1172
1173 function offlineArticlesStored() {
1174
1175 var rs = db.execute("SELECT COUNT(*) FROM articles");
1176 var count = 0;
1177 if (rs.isValidRow()) {
1178 count = rs.field(0);
1179 }
1180
1181 rs.close();
1182
1183 return count;
1184 }
1185
1186 function gotoOffline() {
1187
1188 // debug("[Local store] currentVersion = " + store.currentVersion);
1189
1190
1191 if (offlineArticlesStored() == 0) {
1192 notify_error("You have to synchronize some articles before going into offline mode.");
1193 return;
1194 }
1195
1196 if (confirm(__("Switch Tiny Tiny RSS into offline mode?"))) {
1197
1198 store.enabled = true;
1199 store.checkForUpdate();
1200
1201 notify_progress("Preparing offline mode...", true);
1202
1203 var timerId = window.setInterval(function() {
1204 if (store.currentVersion) {
1205 window.clearInterval(timerId);
1206 debug("[Local store] sync complete: " + store.currentVersion);
1207
1208 //window.location.href = "tt-rss.php";
1209
1210 offlineDownloadStop();
1211 init_offline();
1212
1213 notify_info("Tiny Tiny RSS is in offline mode.");
1214
1215 } else if (store.updateStatus == 3) {
1216 debug("[Local store] sync error: " + store.lastErrorMessage);
1217 notify_error(store.lastErrorMessage, true);
1218 } }, 500);
1219 }
1220 }
1221
1222 function gotoOnline() {
1223 // 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?"))) {
1224 if (confirm(__("Tiny Tiny RSS will reload. Go online?"))) {
1225 //localServer.removeManagedStore("tt-rss");
1226 window.location.href = "tt-rss.php?online=1";
1227 }
1228 }
1229
1230 function local_collapse_cat(id) {
1231 try {
1232 if (db) {
1233 db.execute("UPDATE categories SET collapsed = NOT collapsed WHERE id = ?",
1234 [id]);
1235 }
1236 } catch (e) {
1237 exception_error("local_collapse_cat", e);
1238 }
1239 }
1240
1241 function get_local_category_title(id) {
1242 try {
1243
1244 var rs = db.execute("SELECT title FROM categories WHERE id = ?", [id]);
1245 var tmp = "";
1246
1247 if (rs.isValidRow()) {
1248 tmp = rs.field(0);
1249 }
1250
1251 rs.close();
1252
1253 return tmp;
1254
1255 } catch (e) {
1256 exception_error("get_local_category_title", e);
1257 }
1258 }
1259
1260 function get_local_category_unread(id) {
1261 try {
1262 var rs = false;
1263
1264 if (id >= 0) {
1265 rs = db.execute("SELECT SUM(unread) FROM articles, feeds "+
1266 "WHERE feeds.id = feed_id AND cat_id = ?", [id]);
1267 } else if (id == -2) {
1268 rs = db.execute("SELECT SUM(unread) FROM article_labels, articles "+
1269 "where article_labels.id = articles.id");
1270 } else {
1271 return 0;
1272 }
1273
1274 var tmp = 0;
1275
1276 if (rs.isValidRow()) {
1277 tmp = rs.field(0);
1278 }
1279
1280 rs.close();
1281
1282 return tmp;
1283
1284 } catch (e) {
1285 exception_error("get_local_category_unread", e);
1286 }
1287 }
1288
1289 function printCategoryHeader(cat_id, hidden, can_browse) {
1290 try {
1291 if (hidden == undefined) hidden = false;
1292 if (can_browse == undefined) can_browse = false;
1293
1294 var tmp_category = get_local_category_title(cat_id);
1295 var tmp = "";
1296
1297 var cat_unread = get_local_category_unread(cat_id);
1298
1299 var holder_style = "";
1300 var ellipsis = "";
1301
1302 if (hidden) {
1303 holder_style = "display:none;";
1304 ellipsis = "…";
1305 }
1306
1307 var catctr_class = (cat_unread > 0) ? "catCtrHasUnread" : "catCtrNoUnread";
1308
1309 var browse_cat_link = "";
1310 var inner_title_class = "catTitleNL";
1311
1312 if (can_browse) {
1313 browse_cat_link = "onclick=\"javascript:viewCategory("+cat_id+")\"";
1314 inner_title_class = "catTitle";
1315 }
1316
1317 var cat_class = "feedCat";
1318
1319 tmp += "<li class=\""+cat_class+"\" id=\"FCAT-"+cat_id+"\">"+
1320 "<img onclick=\"toggleCollapseCat("+cat_id+")\" class=\"catCollapse\""+
1321 " title=\""+__('Click to collapse category')+"\""+
1322 " src=\"images/cat-collapse.png\"><span class=\""+inner_title_class+"\" "+
1323 " id=\"FCATN-"+cat_id+"\" "+browse_cat_link+
1324 "\">"+tmp_category+"</span>";
1325
1326 tmp += "<span id=\"FCAP-"+cat_id+"\">";
1327
1328 tmp += " <span id=\"FCATCTR-"+cat_id+"\" "+
1329 "class=\""+catctr_class+"\">("+cat_unread+")</span> "+ellipsis;
1330
1331 tmp += "</span>";
1332
1333 tmp += "<ul class=\"feedCatList\" id=\"FCATLIST-"+cat_id+"\" "+
1334 "style='"+holder_style+"'>";
1335
1336 return tmp;
1337 } catch (e) {
1338 exception_error("printCategoryHeader", e);
1339 }
1340 }
1341
1342 function is_local_cat_collapsed(id) {
1343 try {
1344
1345 var rs = db.execute("SELECT collapsed FROM categories WHERE id = ?", [id]);
1346 var cat_hidden = 0;
1347
1348 if (rs.isValidRow()) {
1349 cat_hidden = rs.field(0);
1350 }
1351
1352 rs.close();
1353
1354 return cat_hidden == "1";
1355
1356 } catch (e) {
1357 exception_error("is_local_cat_collapsed", e);
1358 }
1359 }
1360
1361 function get_local_article_labels(id) {
1362 try {
1363 var rs = db.execute("SELECT DISTINCT label_id,caption,fg_color,bg_color "+
1364 "FROM labels, article_labels "+
1365 "WHERE labels.id = label_id AND article_labels.id = ?", [id]);
1366
1367 var tmp = new Array();
1368
1369 while (rs.isValidRow()) {
1370 var e = new Array();
1371
1372 e[0] = rs.field(0);
1373 e[1] = rs.field(1);
1374 e[2] = rs.field(2);
1375 e[3] = rs.field(3);
1376
1377 tmp.push(e);
1378
1379 rs.next();
1380 }
1381
1382 return tmp;
1383
1384 } catch (e) {
1385 exception_error("get_local_article_labels", e);
1386 }
1387 }
1388
1389 function label_local_add_article(id, label_id) {
1390 try {
1391 //debug("label_local_add_article " + id + " => " + label_id);
1392
1393 var rs = db.execute("SELECT COUNT(id) FROM article_labels WHERE "+
1394 "id = ? AND label_id = ?", [id, label_id]);
1395 var check = rs.field(0);
1396
1397 if (rs.isValidRow()) {
1398 var check = rs.field(0);
1399 }
1400 rs.close();
1401
1402 if (check == 0) {
1403 db.execute("INSERT INTO article_labels (id, label_id) VALUES "+
1404 "(?,?)", [id, label_id]);
1405 }
1406
1407 } catch (e) {
1408 exception_error("label_local_add_article", e);
1409 }
1410 }
1411
1412 function get_local_feed_title(id) {
1413 try {
1414
1415 var feed_title = "Unknown feed: " + id;
1416
1417 if (id > 0) {
1418 var rs = db.execute("SELECT title FROM feeds WHERE id = ?", [id]);
1419
1420 if (rs.isValidRow()) {
1421 feed_title = rs.field(0);
1422 }
1423
1424 rs.close();
1425 } else if (id == -1) {
1426 feed_title = __("Starred articles");
1427 } else if (id == -4) {
1428 feed_title = __("All articles");
1429 } else if (id < -10) {
1430
1431 var label_id = -11 - id;
1432
1433 var rs = db.execute("SELECT caption FROM labels WHERE id = ?", [label_id]);
1434
1435 if (rs.isValidRow()) {
1436 feed_title = rs.field(0);
1437 }
1438
1439 rs.close();
1440 }
1441
1442 return feed_title;
1443
1444 } catch (e) {
1445 exception_error("get_local_feed_title", e);
1446 }
1447 }
1448
1449 function format_article_labels(labels, id) {
1450 try {
1451
1452 var labels_str = "";
1453
1454 if (!labels) return "";
1455
1456 for (var i = 0; i < labels.length; i++) {
1457 var l = labels[i];
1458
1459 labels_str += "<span class='hlLabelRef' "+
1460 "style='color : "+l[2]+"; background-color : "+l[3]+"'>"+l[1]+"</span>";
1461 }
1462
1463 return labels_str;
1464
1465 } catch (e) {
1466 exception_error("format_article_labels", e);
1467 }
1468 }
1469
1470 function init_local_sync_data() {
1471 try {
1472
1473 if (!db) return;
1474
1475 var rs = db.execute("SELECT COUNT(*) FROM syncdata WHERE key = 'last_online'");
1476 var has_last_online = 0;
1477
1478 if (rs.isValidRow()) {
1479 has_last_online = rs.field(0);
1480 }
1481
1482 rs.close();
1483
1484 if (!has_last_online) {
1485 db.execute("INSERT INTO syncdata (key, value) VALUES ('last_online', '')");
1486 }
1487
1488 } catch (e) {
1489 exception_error("init_local_sync_data", e);
1490
1491 }
1492 }
1493
1494 function has_local_sync_data() {
1495 try {
1496
1497 var rs = db.execute("SELECT id FROM articles "+
1498 "WHERE modified > (SELECT value FROM syncdata WHERE key = 'last_online') "+
1499 "LIMIT 1");
1500
1501 var tmp = 0;
1502
1503 if (rs.isValidRow()) {
1504 tmp = rs.field(0);
1505 }
1506
1507 rs.close();
1508
1509 return tmp != 0;
1510
1511 } catch (e) {
1512 exception_error("has_local_sync_data", e);
1513 }
1514 }
1515
1516 function prepare_local_sync_data() {
1517 try {
1518 var rs = db.execute("SELECT value FROM syncdata WHERE key = 'last_online'");
1519
1520 var last_online = "";
1521
1522 if (rs.isValidRow()) {
1523 last_online = rs.field(0);
1524 }
1525
1526 rs.close();
1527
1528 var rs = db.execute("SELECT id,unread,marked FROM articles "+
1529 "WHERE modified > ? LIMIT 200", [last_online]);
1530
1531 var tmp = last_online + ";";
1532
1533 var entries = 0;
1534
1535 while (rs.isValidRow()) {
1536 var e = new Array();
1537
1538 tmp = tmp + rs.field(0) + "," + rs.field(1) + "," + rs.field(2) + ";";
1539 entries++;
1540
1541 rs.next();
1542 }
1543
1544 rs.close();
1545
1546 if (entries > 0) {
1547 return tmp;
1548 } else {
1549 return '';
1550 }
1551
1552 } catch (e) {
1553 exception_error("prepare_local_sync_data", e);
1554 }
1555 }
1556
1557 function update_local_sync_data() {
1558 try {
1559 if (db && !offline_mode) {
1560
1561 var rs = db.execute("SELECT id FROM articles "+
1562 "WHERE modified > (SELECT value FROM syncdata WHERE "+
1563 "key = 'last_online') LIMIT 1")
1564
1565 var f_id = 0;
1566
1567 if (rs.isValidRow()) {
1568 f_id = rs.field(0);
1569 }
1570
1571 rs.close();
1572
1573 /* no pending articles to sync */
1574
1575 if (f_id == 0) {
1576 db.execute("UPDATE syncdata SET value = DATETIME('NOW', 'localtime') "+
1577 "WHERE key = 'last_online'");
1578 }
1579
1580 }
1581 } catch (e) {
1582 exception_error("update_local_sync_data", e);
1583 }
1584 }
1585
1586 function catchup_local_feed(id, is_cat) {
1587 try {
1588 if (!db) return;
1589
1590 if (!is_cat) {
1591 if (id >= 0) {
1592 db.execute("UPDATE articles SET unread = 0 WHERE feed_id = ?", [id]);
1593 } else if (id == -1) {
1594 db.execute("UPDATE articles SET unread = 0 WHERE marked = 1");
1595 } else if (id == -4) {
1596 db.execute("UPDATE articles SET unread = 0");
1597 } else if (id < -10) {
1598 var label_id = -11-id;
1599
1600 db.execute("UPDATE articles SET unread = 0 WHERE "+
1601 "(SELECT COUNT(*) FROM article_labels WHERE "+
1602 "article_labels.id = articles.id AND label_id = ?) > 0", [label_id]);
1603 }
1604 }
1605
1606 update_local_feedlist_counters();
1607
1608 } catch (e) {
1609 exception_error("catchup_local_feed", e);
1610 }
1611 }
1612
1613 function toggleOfflineModeInfo() {
1614 try {
1615 var e = $('offlineModeDrop');
1616 var p = $('offlineModePic');
1617
1618 if (Element.visible(e)) {
1619 Element.hide(e);
1620 } else {
1621 Element.show(e);
1622 }
1623
1624 } catch (e) {
1625 exception_error("toggleOfflineModeInfo", e);
1626 }
1627 }
1628
1629 function offlineDownloadStart(stage) {
1630 try {
1631 if (!stage) stage = 0;
1632
1633 if (db && !sync_in_progress && getInitParam("offline_enabled") == "1") {
1634 window.setTimeout("update_offline_data("+stage+")", 100);
1635 }
1636 } catch (e) {
1637 exception_error("offlineDownloadStart", e);
1638 }
1639 }
1640
1641 function offlineDownloadStop() {
1642 try {
1643 if (db && sync_in_progress && getInitParam("offline_enabled") == "1") {
1644
1645 sync_in_progress = false;
1646
1647 if (sync_timer) {
1648 window.clearTimeout(sync_timer);
1649 sync_timer = false;
1650 }
1651
1652 var pic = $("offlineModePic");
1653
1654 if (pic) {
1655 pic.src = "images/offline.png";
1656 var msg = __("Last sync: Cancelled.");
1657 articles_synced = 0;
1658 $("offlineModeSyncMsg").innerHTML = msg;
1659 }
1660
1661 offlineSyncShowHideElems(false);
1662
1663 }
1664 } catch (e) {
1665 exception_error("offlineDownloadStart", e);
1666 }
1667 }
1668
1669 function offlineClearData() {
1670 try {
1671 if (db) {
1672
1673 if (confirm(__("This will remove all offline data stored by Tiny Tiny RSS on this computer. Continue?"))) {
1674
1675 notify_progress("Removing offline data...");
1676
1677 localServer.removeManagedStore("tt-rss");
1678
1679 db.execute("DELETE FROM articles");
1680 db.execute("DELETE FROM article_labels");
1681 db.execute("DELETE FROM labels");
1682 db.execute("DELETE FROM feeds");
1683 db.execute("DELETE FROM cache");
1684
1685 notify_info("Local data removed.");
1686 }
1687 }
1688 } catch (e) {
1689 exception_error("offlineClearData", e);
1690 }
1691 }
1692
1693 function offlineUpdateStore() {
1694 try {
1695 if (offline_mode || !store) return;
1696
1697 store.checkForUpdate();
1698
1699 var timerId = window.setInterval(function() {
1700 if (store.currentVersion) {
1701 window.clearInterval(timerId);
1702 debug("[Local store] sync complete: " + store.currentVersion);
1703 } else if (store.updateStatus == 3) {
1704 debug("[Local store] sync error: " + store.lastErrorMessage);
1705 } }, 500);
1706
1707 } catch (e) {
1708 exception_error("offlineUpdateStore", e);
1709 }
1710 }
1711
1712 function offlineSyncShowHideElems(syncing) {
1713 try {
1714
1715 var elems = $$("div.hideWhenSyncing");
1716
1717 for (var j = 0; j < elems.length; j++) {
1718 if (syncing) {
1719 Element.hide(elems[j]);
1720 } else {
1721 Element.show(elems[j]);
1722 }
1723 }
1724
1725 var elems = $$("div.showWhenSyncing");
1726
1727 for (var j = 0; j < elems.length; j++) {
1728 if (syncing) {
1729 Element.show(elems[j]);
1730 } else {
1731 Element.hide(elems[j]);
1732 }
1733 }
1734
1735 } catch (e) {
1736 exception_error("offlineSyncShowHideElems", e);
1737 }
1738 }
1739
1740 function offlineConfirmModeChange() {
1741 try {
1742
1743 if (db && getInitParam("offline_enabled") == "1" && offlineArticlesStored() > 0) {
1744 var ok = confirm(__("Tiny Tiny RSS has trouble accessing its server. Would you like to go offline?"));
1745
1746 if (ok) {
1747 init_offline();
1748 }
1749 }
1750
1751 } catch (e) {
1752 exception_error("offlineConfirmModeChange", e);
1753 }
1754 }