OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 * However, if patterns.ini already did exist and/or any preference | 42 * However, if patterns.ini already did exist and/or any preference |
43 * is set to a non-default value, this indicates that this isn't the | 43 * is set to a non-default value, this indicates that this isn't the |
44 * first run, but something went wrong. | 44 * first run, but something went wrong. |
45 * | 45 * |
46 * This function detects the first run, and makes sure that the user | 46 * This function detects the first run, and makes sure that the user |
47 * gets notified (on the first run page) if the data appears incomplete | 47 * gets notified (on the first run page) if the data appears incomplete |
48 * and therefore will be reinitialized. | 48 * and therefore will be reinitialized. |
49 */ | 49 */ |
50 function detectFirstRun() | 50 function detectFirstRun() |
51 { | 51 { |
52 firstRun = FilterStorage.subscriptions.length == 0; | 52 firstRun = FilterStorage.subscriptionCount == 0; |
53 | 53 |
54 if (firstRun && (!FilterStorage.firstRun || Prefs.currentVersion)) | 54 if (firstRun && (!FilterStorage.firstRun || Prefs.currentVersion)) |
55 reinitialized = true; | 55 reinitialized = true; |
56 | 56 |
57 Prefs.currentVersion = info.addonVersion; | 57 Prefs.currentVersion = info.addonVersion; |
58 } | 58 } |
59 | 59 |
60 /** | 60 /** |
61 * Determines whether to add the default ad blocking subscriptions. | 61 * Determines whether to add the default ad blocking subscriptions. |
62 * Returns true, if there are no filter subscriptions besides those | 62 * Returns true, if there are no filter subscriptions besides those |
63 * other subscriptions added automatically, and no custom filters. | 63 * other subscriptions added automatically, and no custom filters. |
64 * | 64 * |
65 * On first run, this logic should always result in true since there | 65 * On first run, this logic should always result in true since there |
66 * is no data and therefore no subscriptions. But it also causes the | 66 * is no data and therefore no subscriptions. But it also causes the |
67 * default ad blocking subscriptions to be added again after some | 67 * default ad blocking subscriptions to be added again after some |
68 * data corruption or misconfiguration. | 68 * data corruption or misconfiguration. |
69 * | 69 * |
70 * @return {boolean} | 70 * @return {boolean} |
71 */ | 71 */ |
72 function shouldAddDefaultSubscriptions() | 72 function shouldAddDefaultSubscriptions() |
73 { | 73 { |
74 for (let subscription of FilterStorage.subscriptions) | 74 for (let subscription of FilterStorage.subscriptions()) |
75 { | 75 { |
76 if (subscription instanceof DownloadableSubscription && | 76 if (subscription instanceof DownloadableSubscription && |
77 subscription.url != Prefs.subscriptions_exceptionsurl && | 77 subscription.url != Prefs.subscriptions_exceptionsurl && |
78 subscription.url != Prefs.subscriptions_antiadblockurl && | 78 subscription.url != Prefs.subscriptions_antiadblockurl && |
79 subscription.type != "circumvention") | 79 subscription.type != "circumvention") |
80 return false; | 80 return false; |
81 | 81 |
82 if (subscription instanceof SpecialSubscription && | 82 if (subscription instanceof SpecialSubscription && |
83 subscription.filters.length > 0) | 83 subscription.filters.length > 0) |
84 return false; | 84 return false; |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 * | 334 * |
335 * @param {function} callback | 335 * @param {function} callback |
336 */ | 336 */ |
337 exports.setSubscriptionsCallback = callback => | 337 exports.setSubscriptionsCallback = callback => |
338 { | 338 { |
339 subscriptionsCallback = callback; | 339 subscriptionsCallback = callback; |
340 }; | 340 }; |
341 | 341 |
342 // Exports for tests only | 342 // Exports for tests only |
343 exports.chooseFilterSubscriptions = chooseFilterSubscriptions; | 343 exports.chooseFilterSubscriptions = chooseFilterSubscriptions; |
OLD | NEW |