1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
|
"use strict";
var $stream = null,
isCollapsed = true;
function is_normal_mode() {
return $stream.hasClass('normal');
}
function is_global_mode() {
return $stream.hasClass('global');
}
function redirect(url, new_tab) {
if (url) {
if (new_tab) {
window.open(url);
} else {
location.href = url;
}
}
}
function needsScroll($elem) {
var $win = $(window),
winTop = $win.scrollTop(),
winHeight = $win.height(),
winBottom = winTop + winHeight,
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.outerHeight();
return (elemTop < winTop || elemBottom > winBottom) ? elemTop - (winHeight / 2) : 0;
}
function str2int(str) {
if (str == '') {
return 0;
}
return parseInt(str.replace(/\D/g, ''), 10) || 0;
}
function numberFormat(nStr) {
if (nStr < 0) {
return 0;
}
// http://www.mredkj.com/javascript/numberFormat.html
nStr += '';
var x = nStr.split('.'),
x1 = x[0],
x2 = x.length > 1 ? '.' + x[1] : '',
rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ' ' + '$2');
}
return x1 + x2;
}
function incLabel(p, inc) {
var i = str2int(p) + inc;
return i > 0 ? ' (' + numberFormat(i) + ')' : '';
}
function incUnreadsFeed(article, feed_id, nb) {
//Update unread: feed
var elem = $('#' + feed_id + '>.feed').get(0),
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0,
feed_priority = elem ? str2int(elem.getAttribute('data-priority')) : 0;
if (elem) {
elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
}
//Update unread: category
elem = $('#' + feed_id).parent().prevAll('.category').children(':first').get(0);
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
if (elem) {
elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
}
//Update unread: all
if (feed_priority > 0) {
elem = $('#aside_flux .all').children(':first').get(0);
if (elem) {
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
}
}
//Update unread: favourites
if (article && article.closest('div').hasClass('favorite')) {
elem = $('#aside_flux .favorites').children(':first').get(0);
if (elem) {
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
elem.setAttribute('data-unread', numberFormat(feed_unreads + nb));
}
}
var isCurrentView = false;
//Update unread: title
document.title = document.title.replace(/((?: \([ 0-9]+\))?)( · .*?)((?: \([ 0-9]+\))?)$/, function (m, p1, p2, p3) {
var $feed = $('#' + feed_id);
if (article || ($feed.closest('.active').length > 0 && $feed.siblings('.active').length === 0)) {
isCurrentView = true;
return incLabel(p1, nb) + p2 + incLabel(p3, feed_priority > 0 ? nb : 0);
} else {
return p1 + p2 + incLabel(p3, feed_priority > 0 ? nb : 0);
}
});
return isCurrentView;
}
var pending_feeds = [];
function mark_read(active, only_not_read) {
if (active.length === 0 ||
(only_not_read === true && !active.hasClass("not_read"))) {
return false;
}
var url = active.find("a.read").attr("href");
if (url === undefined) {
return false;
}
var feed_url = active.find(".website>a").attr("href"),
feed_id = feed_url.substr(feed_url.lastIndexOf('f_')),
index_pending = pending_feeds.indexOf(feed_id);
if (index_pending !== -1) {
return false;
}
pending_feeds.push(feed_id);
$.ajax({
type: 'POST',
url: url,
data : { ajax: true }
}).done(function (data) {
var $r = active.find("a.read").attr("href", data.url),
inc = 0;
if (active.hasClass("not_read")) {
active.removeClass("not_read");
inc--;
} else if (only_not_read !== true || active.hasClass("not_read")) {
active.addClass("not_read");
inc++;
}
$r.find('.icon').replaceWith(data.icon);
incUnreadsFeed(active, feed_id, inc);
pending_feeds.splice(index_pending, 1);
});
}
function mark_favorite(active) {
if (active.length === 0) {
return false;
}
var url = active.find("a.bookmark").attr("href");
if (url === undefined) {
return false;
}
var feed_url = active.find(".website>a").attr("href"),
feed_id = feed_url.substr(feed_url.lastIndexOf('f_')),
index_pending = pending_feeds.indexOf(feed_id);
if (index_pending !== -1) {
return false;
}
pending_feeds.push(feed_id);
$.ajax({
type: 'POST',
url: url,
data : { ajax: true }
}).done(function (data) {
var $b = active.find("a.bookmark").attr("href", data.url),
inc = 0;
if (active.hasClass("favorite")) {
active.removeClass("favorite");
inc--;
} else {
active.addClass("favorite").find('.bookmark');
inc++;
}
$b.find('.icon').replaceWith(data.icon);
var favourites = $('.favorites>a').contents().last().get(0);
if (favourites && favourites.textContent) {
favourites.textContent = favourites.textContent.replace(/((?: \([ 0-9]+\))?\s*)$/, function (m, p1) {
return incLabel(p1, inc);
});
}
if (active.closest('div').hasClass('not_read')) {
var elem = $('#aside_flux .favorites').children(':first').get(0),
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
if (elem) {
elem.setAttribute('data-unread', numberFormat(feed_unreads + inc));
}
}
pending_feeds.splice(index_pending, 1);
});
}
function toggleContent(new_active, old_active) {
old_active.removeClass("active");
if (new_active.length === 0) {
return;
}
old_active.removeClass("current");
if (does_lazyload) {
new_active.find('img[data-original], iframe[data-original]').each(function () {
this.setAttribute('src', this.getAttribute('data-original'));
this.removeAttribute('data-original');
});
}
if (old_active[0] !== new_active[0]) {
if (isCollapsed) {
new_active.addClass("active");
}
new_active.addClass("current");
}
var box_to_move = "html,body",
relative_move = false;
if (is_global_mode()) {
box_to_move = "#panel";
relative_move = true;
}
var new_pos = new_active.position().top,
old_scroll = $(box_to_move).scrollTop();
if (hide_posts) {
new_pos = new_active.position().top;
old_scroll = $(box_to_move).scrollTop();
if (relative_move) {
new_pos += old_scroll;
}
if (old_active[0] !== new_active[0]) {
new_active.children(".flux_content").first().each(function () {
$(box_to_move).scrollTop(new_pos).scrollTop();
});
}
} else {
if (relative_move) {
new_pos += old_scroll;
}
$(box_to_move).scrollTop(new_pos).scrollTop();
}
if (auto_mark_article) {
mark_read(new_active, true);
}
}
function prev_entry() {
var old_active = $(".flux.current"),
new_active = old_active.length === 0 ? $(".flux:last") : old_active.prevAll(".flux:first");
toggleContent(new_active, old_active);
}
function next_entry() {
var old_active = $(".flux.current"),
new_active = old_active.length === 0 ? $(".flux:first") : old_active.nextAll(".flux:first");
toggleContent(new_active, old_active);
if (!auto_load_more) {
var last_active = $(".flux:last");
if (last_active.attr("id") === new_active.attr("id")) {
load_more_posts();
}
}
}
function prev_feed() {
var active_feed = $("#aside_flux .feeds li.active");
if (active_feed.length > 0) {
active_feed.prev().find('a.feed').each(function(){this.click();});
} else {
last_feed();
}
}
function next_feed() {
var active_feed = $("#aside_flux .feeds li.active");
if (active_feed.length > 0) {
active_feed.next().find('a.feed').each(function(){this.click();});
} else {
first_feed();
}
}
function first_feed() {
var feed = $("#aside_flux .feeds.active li:first");
if (feed.length > 0) {
feed.find('a')[1].click();
}
}
function last_feed() {
var feed = $("#aside_flux .feeds.active li:last");
if (feed.length > 0) {
feed.find('a')[1].click();
}
}
function prev_category() {
var active_cat = $("#aside_flux .category.stick.active");
if (active_cat.length > 0) {
var prev_cat = active_cat.parent('li').prev().find('.category.stick a.btn');
if (prev_cat.length > 0) {
prev_cat[0].click();
}
} else {
last_category();
}
return;
}
function next_category() {
var active_cat = $("#aside_flux .category.stick.active");
if (active_cat.length > 0) {
var next_cat = active_cat.parent('li').next().find('.category.stick a.btn');
if (next_cat.length > 0) {
next_cat[0].click();
}
} else {
first_category();
}
return;
}
function first_category() {
var cat = $("#aside_flux .category.stick:first");
if (cat.length > 0) {
cat.find('a.btn')[0].click();
}
}
function last_category() {
var cat = $("#aside_flux .category.stick:last");
if (cat.length > 0) {
cat.find('a.btn')[0].click();
}
}
function collapse_entry() {
isCollapsed = !isCollapsed;
$(".flux.current").toggleClass("active");
}
function auto_share(key) {
var share = $(".flux.current.active").find('.dropdown-target[id^="dropdown-share"]');
var shares = share.siblings('.dropdown-menu').find('.item a');
if (typeof key === "undefined") {
if (!share.length) {
return;
}
// Display the share div
window.location.hash = share.attr('id');
// Force scrolling to the share div
var scroll = needsScroll(share.closest('.bottom'));
if (scroll !== 0) {
$('html,body').scrollTop(scroll);
}
// Force the key value if there is only one action, so we can trigger it automatically
if (shares.length === 1) {
key = 1;
} else {
return;
}
}
// Trigger selected share action and hide the share div
key = parseInt(key);
if (key <= shares.length) {
shares[key - 1].click();
share.siblings('.dropdown-menu').find('.dropdown-close a')[0].click();
}
}
function inMarkViewport(flux, box_to_follow, relative_follow) {
var top = flux.position().top;
if (relative_follow) {
top += box_to_follow.scrollTop();
}
var height = flux.height(),
begin = top + 3 * height / 4,
bot = Math.min(begin + 75, top + height),
windowTop = box_to_follow.scrollTop(),
windowBot = windowTop + box_to_follow.height() / 2;
return (windowBot >= begin && bot >= windowBot);
}
function init_lazyload() {
if ($.fn.lazyload) {
if (is_global_mode()) {
$(".flux_content img").lazyload({
container: $("#panel")
});
} else {
$(".flux_content img").lazyload();
}
}
}
function init_posts() {
init_lazyload();
var box_to_follow = $(window),
relative_follow = false;
if (is_global_mode()) {
box_to_follow = $("#panel");
relative_follow = true;
}
if (auto_mark_scroll) {
box_to_follow.scroll(function () {
$('.not_read:visible').each(function () {
if ($(this).children(".flux_content").is(':visible') && inMarkViewport($(this), box_to_follow, relative_follow)) {
mark_read($(this), true);
}
});
});
}
if (auto_load_more) {
box_to_follow.scroll(function () {
var load_more = $("#load_more");
if (!load_more.is(':visible')) {
return;
}
var boxBot = box_to_follow.scrollTop() + box_to_follow.height(),
load_more_top = load_more.position().top;
if (relative_follow) {
load_more_top += box_to_follow.scrollTop();
}
if (boxBot >= load_more_top) {
load_more_posts();
}
});
}
}
function init_column_categories() {
if (!is_normal_mode()) {
return;
}
$('#aside_flux').on('click', '.category>a.dropdown-toggle', function () {
$(this).children().each(function() {
if (this.alt === '▽') {
this.src = this.src.replace('/icons/down.', '/icons/up.');
this.alt = '△';
} else {
this.src = this.src.replace('/icons/up.', '/icons/down.');
this.alt = '▽';
}
});
$(this).parent().next(".feeds").slideToggle();
return false;
});
$('#aside_flux').on('click', '.feeds .dropdown-toggle', function () {
if ($(this).nextAll('.dropdown-menu').length === 0) {
var feed_id = $(this).closest('li').attr('id').substr(2),
feed_web = $(this).data('fweb'),
template = $('#feed_config_template').html().replace(/!!!!!!/g, feed_id).replace('http://example.net/', feed_web);
$(this).attr('href', '#dropdown-' + feed_id).prev('.dropdown-target').attr('id', 'dropdown-' + feed_id).parent().append(template);
}
});
}
function init_shortcuts() {
if (!(window.shortcut && window.shortcuts)) {
if (window.console) {
console.log('FreshRSS waiting for sortcut.js…');
}
window.setTimeout(init_shortcuts, 50);
return;
}
// Touches de manipulation
shortcut.add(shortcuts.mark_read, function () {
// on marque comme lu ou non lu
var active = $(".flux.current");
mark_read(active, false);
}, {
'disable_in_input': true
});
shortcut.add("shift+" + shortcuts.mark_read, function () {
// on marque tout comme lu
var url = $(".nav_menu a.read_all").attr("href");
redirect(url, false);
}, {
'disable_in_input': true
});
shortcut.add(shortcuts.mark_favorite, function () {
// on marque comme favori ou non favori
var active = $(".flux.current");
mark_favorite(active);
}, {
'disable_in_input': true
});
shortcut.add(shortcuts.collapse_entry, function () {
collapse_entry();
}, {
'disable_in_input': true
});
shortcut.add(shortcuts.auto_share, function () {
auto_share();
}, {
'disable_in_input': true
});
for(var i = 1; i < 10; i++){
shortcut.add(i.toString(), function (e) {
auto_share(String.fromCharCode(e.keyCode));
}, {
'disable_in_input': true
});
}
// Touches de navigation pour les articles
shortcut.add(shortcuts.prev_entry, prev_entry, {
'disable_in_input': true
});
shortcut.add(shortcuts.first_entry, function () {
var old_active = $(".flux.current"),
first = $(".flux:first");
if (first.hasClass("flux")) {
toggleContent(first, old_active);
}
}, {
'disable_in_input': true
});
shortcut.add(shortcuts.next_entry, next_entry, {
'disable_in_input': true
});
shortcut.add(shortcuts.last_entry, function () {
var old_active = $(".flux.current"),
last = $(".flux:last");
if (last.hasClass("flux")) {
toggleContent(last, old_active);
}
}, {
'disable_in_input': true
});
// Touches de navigation pour les flux
shortcut.add("shift+" + shortcuts.prev_entry, prev_feed, {
'disable_in_input': true
});
shortcut.add("shift+" + shortcuts.next_entry, next_feed, {
'disable_in_input': true
});
shortcut.add("shift+" + shortcuts.first_entry, first_feed, {
'disable_in_input': true
});
shortcut.add("shift+" + shortcuts.last_entry, last_feed, {
'disable_in_input': true
});
// Touches de navigation pour les categories
shortcut.add("alt+" + shortcuts.prev_entry, prev_category, {
'disable_in_input': true
});
shortcut.add("alt+" + shortcuts.next_entry, next_category, {
'disable_in_input': true
});
shortcut.add("alt+" + shortcuts.first_entry, first_category, {
'disable_in_input': true
});
shortcut.add("alt+" + shortcuts.last_entry, last_category, {
'disable_in_input': true
});
shortcut.add(shortcuts.go_website, function () {
var url_website = $(".flux.current .link a").attr("href");
if (auto_mark_site) {
$(".flux.current").each(function () {
mark_read($(this), true);
});
}
redirect(url_website, true);
}, {
'disable_in_input': true
});
shortcut.add(shortcuts.load_more, function () {
load_more_posts();
}, {
'disable_in_input': true
});
}
function init_stream(divStream) {
divStream.on('click', '.flux_header', function (e) { //flux_header_toggle
if ($(e.target).closest('.item.website, .item.link').length > 0) {
return;
}
var old_active = $(".flux.current"),
new_active = $(this).parent();
isCollapsed = true;
if (e.target.tagName.toUpperCase() === 'A') { //Leave real links alone
if (auto_mark_article) {
mark_read(new_active, true);
}
return true;
}
toggleContent(new_active, old_active);
});
divStream.on('click', '.flux a.read', function () {
var active = $(this).parents(".flux");
mark_read(active, false);
return false;
});
divStream.on('click', '.flux a.bookmark', function () {
var active = $(this).parents(".flux");
mark_favorite(active);
return false;
});
divStream.on('click', '.item.title > a', function (e) {
if (e.ctrlKey) {
return true; //Allow default control-click behaviour such as open in backround-tab
}
$(this).parent().click(); //Will perform toggle flux_content
return false;
});
divStream.on('click', '.flux .content a', function () {
$(this).attr('target', '_blank');
});
if (auto_mark_site) {
divStream.on('click', '.flux .link > a', function () {
mark_read($(this).parent().parent().parent(), true);
});
}
}
function init_nav_entries() {
var $nav_entries = $('#nav_entries');
$nav_entries.find('.previous_entry').click(function () {
prev_entry();
return false;
});
$nav_entries.find('.next_entry').click(function () {
next_entry();
return false;
});
$nav_entries.find('.up').click(function () {
var active_item = $(".flux.current"),
windowTop = $(window).scrollTop(),
item_top = active_item.position().top;
if (windowTop > item_top) {
$("html,body").scrollTop(item_top);
} else {
$("html,body").scrollTop(0);
}
return false;
});
}
function init_actualize() {
var auto = false;
$("#actualize").click(function () {
$.getScript('./?c=javascript&a=actualize').done(function () {
if (auto && feed_count < 1) {
auto = false;
return;
}
updateFeeds();
});
return false;
});
if (auto_actualize_feeds) {
auto = true;
$("#actualize").click();
}
}
// <notification>
var notification = null,
notification_interval = null,
notification_working = false;
function openNotification(msg, status) {
if (notification_working === true) {
return false;
}
notification_working = true;
notification.removeClass();
notification.addClass(status);
notification.find(".msg").html(msg);
notification.fadeIn(300);
notification_interval = window.setInterval(closeNotification, 4000);
}
function closeNotification() {
notification.fadeOut(600, function() {
notification.removeClass();
notification.addClass('closed');
window.clearInterval(notification_interval);
notification_working = false;
});
}
function init_notifications() {
notification = $("#notification");
notification.find("a.close").click(function () {
closeNotification();
return false;
});
if (notification.find(".msg").html().length > 0) {
notification_working = true;
notification_interval = window.setInterval(closeNotification, 4000);
}
}
// </notification>
function refreshUnreads() {
$.getJSON('./?c=javascript&a=nbUnreadsPerFeed').done(function (data) {
var isAll = $('.category.all > .active').length > 0;
$.each(data, function(feed_id, nbUnreads) {
feed_id = 'f_' + feed_id;
var elem = $('#' + feed_id + '>.feed').get(0),
feed_unreads = elem ? str2int(elem.getAttribute('data-unread')) : 0;
if ((incUnreadsFeed(null, feed_id, nbUnreads - feed_unreads) || isAll) && //Update of current view?
(nbUnreads - feed_unreads > 0)) {
$('#new-article').show();
};
});
});
}
//<endless_mode>
var url_load_more = "",
load_more = false,
box_load_more = null;
function load_more_posts() {
if (load_more || url_load_more === '' || box_load_more === null) {
return;
}
load_more = true;
$('#load_more').addClass('loading');
$.get(url_load_more, function (data) {
box_load_more.children('.flux:last').after($('#stream', data).children('.flux, .day'));
$('.pagination').replaceWith($('.pagination', data));
$('#bigMarkAsRead').attr('href', $('#nav_menu_read_all>a').attr('href'));
$('[id^=day_]').each(function (i) {
var ids = $('[id="' + this.id + '"]');
if (ids.length > 1) {
$('[id="' + this.id + '"]:gt(0)').remove();
}
});
init_load_more(box_load_more);
init_lazyload();
$('#load_more').removeClass('loading');
load_more = false;
});
}
function init_load_more(box) {
box_load_more = box;
var $next_link = $("#load_more");
if (!$next_link.length) {
// no more article to load
url_load_more = "";
return;
}
url_load_more = $next_link.attr("href");
var $prefetch = $('#prefetch');
if ($prefetch.attr('href') !== url_load_more) {
$prefetch.attr('rel', 'next'); //Remove prefetch
$.ajax({url: url_load_more, ifModified: true }); //TODO: Try to find a less agressive solution
$prefetch.attr('href', url_load_more);
}
$next_link.click(function () {
load_more_posts();
return false;
});
}
//</endless_mode>
//<Web login form>
function poormanSalt() { //If crypto.getRandomValues is not available
var text = '$2a$04$',
base = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ.0123456789/abcdefghijklmnopqrstuvwxyz';
for (var i = 22; i > 0; i--) {
text += base.charAt(Math.floor(Math.random() * 64));
}
return text;
}
function init_loginForm() {
var $loginForm = $('#loginForm');
if ($loginForm.length === 0) {
return;
}
if (!(window.dcodeIO)) {
if (window.console) {
console.log('FreshRSS waiting for bcrypt.js…');
}
window.setTimeout(init_loginForm, 100);
return;
}
$loginForm.on('submit', function() {
$('#loginButton').attr('disabled', '');
var success = false;
$.ajax({
url: './?c=javascript&a=nonce&user=' + $('#username').val(),
dataType: 'json',
async: false
}).done(function (data) {
if (data.salt1 == '' || data.nonce == '') {
alert('Invalid user!');
} else {
try {
var strong = window.Uint32Array && window.crypto && (typeof window.crypto.getRandomValues === 'function'),
s = dcodeIO.bcrypt.hashSync($('#passwordPlain').val(), data.salt1),
c = dcodeIO.bcrypt.hashSync(data.nonce + s, strong ? 4 : poormanSalt());
$('#challenge').val(c);
if (s == '' || c == '') {
alert('Crypto error!');
} else {
success = true;
}
} catch (e) {
alert('Crypto exception! ' + e);
}
}
}).fail(function() {
alert('Communication error!');
});
$('#loginButton').removeAttr('disabled');
return success;
});
}
//</Web login form>
//<persona>
function init_persona() {
if (!(navigator.id)) {
if (window.console) {
console.log('FreshRSS waiting for Persona…');
}
window.setTimeout(init_persona, 100);
return;
}
$('a.signin').click(function() {
navigator.id.request();
return false;
});
$('a.signout').click(function() {
navigator.id.logout();
return false;
});
navigator.id.watch({
loggedInUser: current_user_mail,
onlogin: function(assertion) {
// A user has logged in! Here you need to:
// 1. Send the assertion to your backend for verification and to create a session.
// 2. Update your UI.
$.ajax ({
type: 'POST',
url: url_login,
data: {assertion: assertion},
success: function(res, status, xhr) {
/*if (res.status === 'failure') {
alert (res_obj.reason);
} else*/ if (res.status === 'okay') {
location.href = url_freshrss;
}
},
error: function(res, status, xhr) {
alert("Login failure: " + res);
}
});
},
onlogout: function() {
// A user has logged out! Here you need to:
// Tear down the user's session by redirecting the user or making a call to your backend.
// Also, make sure loggedInUser will get set to null on the next page load.
// (That's a literal JavaScript null. Not false, 0, or undefined. null.)
$.ajax ({
type: 'POST',
url: url_logout,
success: function(res, status, xhr) {
location.href = url_freshrss;
},
error: function(res, status, xhr) {
//alert("logout failure" + res);
}
});
}
});
}
//</persona>
function init_confirm_action() {
$('.confirm').click(function () {
return confirm(str_confirmation);
});
}
function init_print_action() {
$('.print-article').click(function () {
var content = "<html><head><style>"
+ "body { font-family: Serif; text-align: justify; }"
+ "a { color: #000; text-decoration: none; }"
+ "a:after { content: ' [' attr(href) ']'}"
+ "</style></head><body>"
+ $(".flux.current .content").html()
+ "</body></html>";
var tmp_window = window.open();
tmp_window.document.writeln(content);
tmp_window.document.close();
tmp_window.focus();
tmp_window.print();
tmp_window.close();
return false;
});
}
function init_all() {
if (!(window.$ && window.url_freshrss && ((!full_lazyload) || $.fn.lazyload))) {
if (window.console) {
console.log('FreshRSS waiting for JS…');
}
window.setTimeout(init_all, 50);
return;
}
init_notifications();
switch (authType) {
case 'form':
init_loginForm();
break;
case 'persona':
init_persona();
break;
}
init_confirm_action();
$stream = $('#stream');
if ($stream.length > 0) {
init_actualize();
init_column_categories();
init_load_more($stream);
init_posts();
init_stream($stream);
init_nav_entries();
init_shortcuts();
init_print_action();
window.setInterval(refreshUnreads, 120000);
}
if (window.console) {
console.log('FreshRSS init done.');
}
}
if (document.readyState && document.readyState !== 'loading') {
if (window.console) {
console.log('FreshRSS immediate init…');
}
init_all();
} else if (document.addEventListener) {
document.addEventListener('DOMContentLoaded', function () {
if (window.console) {
console.log('FreshRSS waiting for DOMContentLoaded…');
}
init_all();
}, false);
}
|