main.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. "use strict";
  2. var $stream = null;
  3. function is_normal_mode() {
  4. return $stream.hasClass('normal');
  5. }
  6. function is_global_mode() {
  7. return $stream.hasClass('global');
  8. }
  9. function redirect(url, new_tab) {
  10. if (url) {
  11. if (new_tab) {
  12. window.open(url);
  13. } else {
  14. location.href = url;
  15. }
  16. }
  17. }
  18. function incLabel(p, inc) {
  19. var i = (parseInt(p.replace(/\D/g, ''), 10) || 0) + inc;
  20. return i > 0 ? ' (' + i + ')' : '';
  21. }
  22. function mark_read(active, only_not_read) {
  23. if (active[0] === undefined || (only_not_read === true && !active.hasClass("not_read"))) {
  24. return false;
  25. }
  26. var url = active.find("a.read").attr("href");
  27. if (url === undefined) {
  28. return false;
  29. }
  30. $.ajax({
  31. type: 'POST',
  32. url: url,
  33. data : { ajax: true }
  34. }).done(function (data) {
  35. var res = $.parseJSON(data);
  36. active.find("a.read").attr("href", res.url);
  37. var inc = 0;
  38. if (active.hasClass("not_read")) {
  39. active.removeClass("not_read");
  40. inc--;
  41. } else if (only_not_read !== true || active.hasClass("not_read")) {
  42. active.addClass("not_read");
  43. inc++;
  44. }
  45. //Update unread: feed
  46. var feed_url = active.find(".website>a").attr("href"),
  47. feed_id = feed_url.substr(feed_url.lastIndexOf('f_')),
  48. elem = $('#' + feed_id + ' .feed').get(0),
  49. feed_unread = elem ? (parseInt(elem.getAttribute('data-unread'), 10) || 0) : 0,
  50. feed_priority = elem ? (parseInt(elem.getAttribute('data-priority'), 10) || 0) : 0;
  51. if (elem) {
  52. elem.setAttribute('data-unread', Math.max(0, feed_unread + inc));
  53. }
  54. //Update unread: category
  55. elem = $('#' + feed_id).parent().prevAll('.category').children(':first').get(0);
  56. feed_unread = elem ? (parseInt(elem.getAttribute('data-unread'), 10) || 0) : 0;
  57. if (elem) {
  58. elem.setAttribute('data-unread', Math.max(0, feed_unread + inc));
  59. }
  60. //Update unread: all
  61. if (feed_priority > 0) {
  62. elem = $('#aside_flux .all').children(':first').get(0);
  63. if (elem) {
  64. feed_unread = elem ? (parseInt(elem.getAttribute('data-unread'), 10) || 0) : 0;
  65. elem.setAttribute('data-unread', Math.max(0, feed_unread + inc));
  66. }
  67. }
  68. //Update unread: favourites
  69. if (active.closest('div').hasClass('favorite')) {
  70. elem = $('#aside_flux .favorites').children(':first').get(0);
  71. if (elem) {
  72. feed_unread = elem ? (parseInt(elem.getAttribute('data-unread'), 10) || 0) : 0;
  73. elem.setAttribute('data-unread', Math.max(0, feed_unread + inc));
  74. }
  75. }
  76. //Update unread: title
  77. document.title = document.title.replace(/((?: \(\d+\))?)( - .*?)((?: \(\d+\))?)$/, function (m, p1, p2, p3) {
  78. return incLabel(p1, inc) + p2 + incLabel(p3, feed_priority > 0 ? inc : 0);
  79. });
  80. });
  81. }
  82. function mark_favorite(active) {
  83. if (active[0] === undefined) {
  84. return false;
  85. }
  86. var url = active.find("a.bookmark").attr("href");
  87. if (url === undefined) {
  88. return false;
  89. }
  90. $.ajax({
  91. type: 'POST',
  92. url: url,
  93. data : { ajax: true }
  94. }).done(function (data) {
  95. var res = $.parseJSON(data);
  96. active.find("a.bookmark").attr("href", res.url);
  97. var inc = 0;
  98. if (active.hasClass("favorite")) {
  99. active.removeClass("favorite");
  100. inc--;
  101. } else {
  102. active.addClass("favorite");
  103. inc++;
  104. }
  105. var favourites = $('.favorites>a').contents().last().get(0);
  106. if (favourites && favourites.textContent) {
  107. favourites.textContent = favourites.textContent.replace(/((?: \(\d+\))?\s*)$/, function (m, p1) {
  108. return incLabel(p1, inc);
  109. });
  110. }
  111. if (active.closest('div').hasClass('not_read')) {
  112. var elem = $('#aside_flux .favorites').children(':first').get(0),
  113. feed_unread = elem ? (parseInt(elem.getAttribute('data-unread'), 10) || 0) : 0;
  114. elem.setAttribute('data-unread', Math.max(0, feed_unread + inc));
  115. }
  116. });
  117. }
  118. function toggleContent(new_active, old_active) {
  119. if (does_lazyload) {
  120. new_active.find('img[data-original]').each(function () {
  121. this.setAttribute('src', this.getAttribute('data-original'));
  122. this.removeAttribute('data-original');
  123. });
  124. }
  125. old_active.removeClass("active");
  126. if (old_active[0] !== new_active[0]) {
  127. new_active.addClass("active");
  128. }
  129. var box_to_move = "html,body",
  130. relative_move = false;
  131. if (is_global_mode()) {
  132. box_to_move = "#panel";
  133. relative_move = true;
  134. }
  135. var new_pos = new_active.position().top,
  136. old_scroll = $(box_to_move).scrollTop();
  137. if (hide_posts) {
  138. new_pos = new_active.position().top;
  139. old_scroll = $(box_to_move).scrollTop();
  140. if (relative_move) {
  141. new_pos += old_scroll;
  142. }
  143. if (old_active[0] !== new_active[0]) {
  144. new_active.children(".flux_content").first().each(function () {
  145. $(box_to_move).scrollTop(new_pos).scrollTop();
  146. });
  147. }
  148. } else {
  149. if (relative_move) {
  150. new_pos += old_scroll;
  151. }
  152. $(box_to_move).scrollTop(new_pos).scrollTop();
  153. }
  154. if (auto_mark_article) {
  155. mark_read(new_active, true);
  156. }
  157. }
  158. function prev_entry() {
  159. var old_active = $(".flux.active"),
  160. last_active = $(".flux:last"),
  161. new_active = old_active.prevAll(".flux:first");
  162. if (new_active.hasClass("flux")) {
  163. toggleContent(new_active, old_active);
  164. } else if (old_active[0] === undefined && new_active[0] === undefined) {
  165. toggleContent(last_active, old_active);
  166. }
  167. }
  168. function next_entry() {
  169. var old_active = $(".flux.active"),
  170. first_active = $(".flux:first"),
  171. last_active = $(".flux:last"),
  172. new_active = old_active.nextAll(".flux:first");
  173. if (new_active.hasClass("flux")) {
  174. toggleContent(new_active, old_active);
  175. } else if (old_active[0] === undefined && new_active[0] === undefined) {
  176. toggleContent(first_active, old_active);
  177. }
  178. if ((!auto_load_more) && (last_active.attr("id") === new_active.attr("id"))) {
  179. load_more_posts();
  180. }
  181. }
  182. function inMarkViewport(flux, box_to_follow, relative_follow) {
  183. var top = flux.position().top;
  184. if (relative_follow) {
  185. top += box_to_follow.scrollTop();
  186. }
  187. var height = flux.height(),
  188. begin = top + 3 * height / 4,
  189. bot = Math.min(begin + 75, top + height),
  190. windowTop = box_to_follow.scrollTop(),
  191. windowBot = windowTop + box_to_follow.height() / 2;
  192. return (windowBot >= begin && bot >= windowBot);
  193. }
  194. function init_lazyload() {
  195. if ($.fn.lazyload) {
  196. if (is_global_mode()) {
  197. $(".flux_content img").lazyload({
  198. container: $("#panel")
  199. });
  200. } else {
  201. $(".flux_content img").lazyload();
  202. }
  203. }
  204. }
  205. function init_posts() {
  206. init_lazyload();
  207. var box_to_follow = $(window),
  208. relative_follow = false;
  209. if (is_global_mode()) {
  210. box_to_follow = $("#panel");
  211. relative_follow = true;
  212. }
  213. if (auto_mark_scroll) {
  214. box_to_follow.scroll(function () {
  215. $('.not_read:visible').each(function () {
  216. if ($(this).children(".flux_content").is(':visible') && inMarkViewport($(this), box_to_follow, relative_follow)) {
  217. mark_read($(this), true);
  218. }
  219. });
  220. });
  221. }
  222. if (auto_load_more) {
  223. box_to_follow.scroll(function () {
  224. var load_more = $("#load_more");
  225. if (!load_more.is(':visible')) {
  226. return;
  227. }
  228. var boxBot = box_to_follow.scrollTop() + box_to_follow.height(),
  229. load_more_top = load_more.position().top;
  230. if (relative_follow) {
  231. load_more_top += box_to_follow.scrollTop();
  232. }
  233. if (boxBot >= load_more_top) {
  234. load_more_posts();
  235. }
  236. });
  237. }
  238. }
  239. function init_column_categories() {
  240. if (!is_normal_mode()) {
  241. return;
  242. }
  243. $('#aside_flux').on('click', '.category>a.dropdown-toggle', function () {
  244. $(this).children().toggleClass("i_down").toggleClass("i_up");
  245. $(this).parent().next(".feeds").slideToggle();
  246. return false;
  247. });
  248. }
  249. function init_shortcuts() {
  250. if (!(window.shortcut && window.shortcuts)) {
  251. if (window.console) {
  252. console.log('FreshRSS waiting for sortcut.js…');
  253. }
  254. window.setTimeout(init_shortcuts, 50);
  255. return;
  256. }
  257. // Touches de manipulation
  258. shortcut.add(shortcuts.mark_read, function () {
  259. // on marque comme lu ou non lu
  260. var active = $(".flux.active");
  261. mark_read(active, false);
  262. }, {
  263. 'disable_in_input': true
  264. });
  265. shortcut.add("shift+" + shortcuts.mark_read, function () {
  266. // on marque tout comme lu
  267. var url = $(".nav_menu a.read_all").attr("href");
  268. redirect(url, false);
  269. }, {
  270. 'disable_in_input': true
  271. });
  272. shortcut.add(shortcuts.mark_favorite, function () {
  273. // on marque comme favori ou non favori
  274. var active = $(".flux.active");
  275. mark_favorite(active);
  276. }, {
  277. 'disable_in_input': true
  278. });
  279. // Touches de navigation
  280. shortcut.add(shortcuts.prev_entry, prev_entry, {
  281. 'disable_in_input': true
  282. });
  283. shortcut.add("shift+" + shortcuts.prev_entry, function () {
  284. var old_active = $(".flux.active"),
  285. first = $(".flux:first");
  286. if (first.hasClass("flux")) {
  287. toggleContent(first, old_active);
  288. }
  289. }, {
  290. 'disable_in_input': true
  291. });
  292. shortcut.add(shortcuts.next_entry, next_entry, {
  293. 'disable_in_input': true
  294. });
  295. shortcut.add("shift+" + shortcuts.next_entry, function () {
  296. var old_active = $(".flux.active"),
  297. last = $(".flux:last");
  298. if (last.hasClass("flux")) {
  299. toggleContent(last, old_active);
  300. }
  301. }, {
  302. 'disable_in_input': true
  303. });
  304. shortcut.add(shortcuts.go_website, function () {
  305. var url_website = $(".flux.active .link a").attr("href");
  306. if (auto_mark_site) {
  307. $(".flux.active").each(function () {
  308. mark_read($(this), true);
  309. });
  310. }
  311. redirect(url_website, true);
  312. }, {
  313. 'disable_in_input': true
  314. });
  315. }
  316. function init_stream_delegates(divStream) {
  317. divStream.on('click', '.flux_header>.item.title, .flux_header>.item.date', function (e) { //flux_header_toggle
  318. var old_active = $(".flux.active"),
  319. new_active = $(this).parent().parent();
  320. if (e.target.tagName.toUpperCase() === 'A') { //Leave real links alone
  321. if (auto_mark_article) {
  322. mark_read(new_active, true);
  323. }
  324. return true;
  325. }
  326. toggleContent(new_active, old_active);
  327. });
  328. divStream.on('click', '.flux a.read', function () {
  329. var active = $(this).parents(".flux");
  330. mark_read(active, false);
  331. return false;
  332. });
  333. divStream.on('click', '.flux a.bookmark', function () {
  334. var active = $(this).parents(".flux");
  335. mark_favorite(active);
  336. return false;
  337. });
  338. divStream.on('click', '.flux .content a', function () {
  339. $(this).attr('target', '_blank');
  340. });
  341. divStream.on('click', '.item.title>a', function (e) {
  342. if (e.ctrlKey) {
  343. return true; //Allow default control-click behaviour such as open in backround-tab
  344. }
  345. $(this).parent().click(); //Will perform toggle flux_content
  346. return false;
  347. });
  348. if (auto_mark_site) {
  349. divStream.on('click', '.flux .link a', function () {
  350. mark_read($(this).parent().parent().parent(), true);
  351. });
  352. }
  353. }
  354. function init_nav_entries() {
  355. var $nav_entries = $('#nav_entries');
  356. $nav_entries.find('.previous_entry').click(function () {
  357. prev_entry();
  358. return false;
  359. });
  360. $nav_entries.find('.next_entry').click(function () {
  361. next_entry();
  362. return false;
  363. });
  364. $nav_entries.find('.up').click(function () {
  365. var active_item = $(".flux.active"),
  366. windowTop = $(window).scrollTop(),
  367. item_top = active_item.position().top;
  368. if (windowTop > item_top) {
  369. $("html,body").scrollTop(item_top);
  370. } else {
  371. $("html,body").scrollTop(0);
  372. }
  373. return false;
  374. });
  375. }
  376. function init_templates() {
  377. $('#aside_flux').on('click', '.feeds .dropdown-toggle', function () {
  378. if ($(this).nextAll('.dropdown-menu').length === 0) {
  379. var feed_id = $(this).closest('li').attr('id').substr(2),
  380. feed_web = $(this).data('fweb'),
  381. template = $('#feed_config_template').html().replace(/!!!!!!/g, feed_id).replace('http://example.net/', feed_web);
  382. $(this).attr('href', '#dropdown-' + feed_id).prev('.dropdown-target').attr('id', 'dropdown-' + feed_id).parent().append(template);
  383. }
  384. });
  385. }
  386. function init_actualize() {
  387. $("#actualize").click(function () {
  388. $.getScript('./?c=javascript&a=actualize').done(function () {
  389. updateFeeds();
  390. });
  391. return false;
  392. });
  393. if(auto_actualize_feeds) {
  394. $.getScript('./?c=javascript&a=actualize').done(function () {
  395. updateFeeds();
  396. });
  397. }
  398. }
  399. function closeNotification() {
  400. $(".notification").fadeOut(600, function () {
  401. $(".notification").remove();
  402. });
  403. }
  404. function init_notifications() {
  405. var notif = $(".notification");
  406. if (notif[0] !== undefined) {
  407. window.setInterval(closeNotification, 4000);
  408. notif.find("a.close").click(function () {
  409. closeNotification();
  410. return false;
  411. });
  412. }
  413. }
  414. //<endless_mode>
  415. var url_load_more = "",
  416. load_more = false;
  417. function load_more_posts() {
  418. if (load_more || url_load_more === '') {
  419. return;
  420. }
  421. load_more = true;
  422. $('#load_more').addClass('loading');
  423. $.get(url_load_more, function (data) {
  424. $stream.children('.flux:last').after($('#stream', data).children('.flux, .day'));
  425. $('.pagination').replaceWith($('.pagination', data));
  426. $('[id^=day_]').each(function (i) {
  427. var ids = $('[id="' + this.id + '"]');
  428. if (ids.length > 1) $('[id="' + this.id + '"]:gt(0)').remove();
  429. });
  430. init_load_more();
  431. init_lazyload();
  432. $('#load_more').removeClass('loading');
  433. load_more = false;
  434. });
  435. }
  436. function init_load_more() {
  437. var $next_link = $("#load_more");
  438. if (!$next_link.length) {
  439. // no more article to load
  440. url_load_more = "";
  441. return;
  442. }
  443. url_load_more = $next_link.attr("href");
  444. var $prefetch = $('#prefetch');
  445. if ($prefetch.attr('href') !== url_load_more) {
  446. $prefetch.attr('rel', 'next'); //Remove prefetch
  447. $.ajax({url: url_load_more, ifModified: true }); //TODO: Try to find a less agressive solution
  448. $prefetch.attr('href', url_load_more);
  449. }
  450. $next_link.click(function () {
  451. load_more_posts();
  452. return false;
  453. });
  454. }
  455. //</endless_mode>
  456. //<persona>
  457. function init_persona() {
  458. if (!(navigator.id)) {
  459. if (window.console) {
  460. console.log('FreshRSS waiting for Persona…');
  461. }
  462. window.setTimeout(init_persona, 100);
  463. return;
  464. }
  465. $('a.signin').click(function() {
  466. navigator.id.request();
  467. return false;
  468. });
  469. $('a.signout').click(function() {
  470. navigator.id.logout();
  471. return false;
  472. });
  473. navigator.id.watch({
  474. loggedInUser: current_user_mail,
  475. onlogin: function(assertion) {
  476. // A user has logged in! Here you need to:
  477. // 1. Send the assertion to your backend for verification and to create a session.
  478. // 2. Update your UI.
  479. $.ajax ({
  480. type: 'POST',
  481. url: url_login,
  482. data: {assertion: assertion},
  483. success: function(res, status, xhr) {
  484. var res_obj = jQuery.parseJSON(res);
  485. if (res_obj.status == 'failure') {
  486. //alert (res_obj.reason);
  487. } else if (res_obj.status == 'okay') {
  488. location.href = url_freshrss;
  489. }
  490. },
  491. error: function(res, status, xhr) {
  492. alert("login failure : " + res);
  493. }
  494. });
  495. },
  496. onlogout: function() {
  497. // A user has logged out! Here you need to:
  498. // Tear down the user's session by redirecting the user or making a call to your backend.
  499. // Also, make sure loggedInUser will get set to null on the next page load.
  500. // (That's a literal JavaScript null. Not false, 0, or undefined. null.)
  501. $.ajax ({
  502. type: 'POST',
  503. url: url_logout,
  504. success: function(res, status, xhr) {
  505. location.href = url_freshrss;
  506. },
  507. error: function(res, status, xhr) {
  508. //alert("logout failure" + res);
  509. }
  510. });
  511. }
  512. });
  513. }
  514. //</persona>
  515. function init_confirm_action() {
  516. $('.confirm').click(function () {
  517. return confirm(str_confirmation);
  518. });
  519. }
  520. function init_all() {
  521. if (!(window.$ && window.url_freshrss && ((!full_lazyload) || $.fn.lazyload))) {
  522. if (window.console) {
  523. console.log('FreshRSS waiting for JS…');
  524. }
  525. window.setTimeout(init_all, 50);
  526. return;
  527. }
  528. $stream = $('#stream');
  529. init_posts();
  530. init_column_categories();
  531. if (load_shortcuts) {
  532. init_shortcuts();
  533. }
  534. init_stream_delegates($stream);
  535. init_nav_entries();
  536. init_templates();
  537. init_notifications();
  538. init_actualize();
  539. init_load_more();
  540. if (use_persona) {
  541. init_persona();
  542. }
  543. init_confirm_action();
  544. if (window.console) {
  545. console.log('FreshRSS init done.');
  546. }
  547. }
  548. if (document.readyState && document.readyState !== 'loading') {
  549. if (window.console) {
  550. console.log('FreshRSS immediate init…');
  551. }
  552. init_all();
  553. } else if (document.addEventListener) {
  554. document.addEventListener('DOMContentLoaded', function () {
  555. if (window.console) {
  556. console.log('FreshRSS waiting for DOMContentLoaded…');
  557. }
  558. init_all();
  559. }, false);
  560. }