| 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 | 
|  11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the |  11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  12  * GNU General Public License for more details. |  12  * GNU General Public License for more details. | 
|  13  * |  13  * | 
|  14  * You should have received a copy of the GNU General Public License |  14  * You should have received a copy of the GNU General Public License | 
|  15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. |  15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
|  16  */ |  16  */ | 
|  17  |  17  | 
|  18 "use strict"; |  18 "use strict"; | 
|  19  |  19  | 
|  20 const {Filter, ActiveFilter} = require("../adblockpluscore/lib/filterClasses"); |  20 const {Filter, ActiveFilter} = require("../adblockpluscore/lib/filterClasses"); | 
|  21 const {FilterNotifier} = require("../adblockpluscore/lib/filterNotifier"); |  21 const {filterNotifier} = require("../adblockpluscore/lib/filterNotifier"); | 
|  22 const {FilterStorage} = require("../adblockpluscore/lib/filterStorage"); |  22 const {FilterStorage} = require("../adblockpluscore/lib/filterStorage"); | 
|  23 const {Prefs} = require("./prefs"); |  23 const {Prefs} = require("./prefs"); | 
|  24 const {SpecialSubscription} = |  24 const {SpecialSubscription} = | 
|  25   require("../adblockpluscore/lib/subscriptionClasses"); |  25   require("../adblockpluscore/lib/subscriptionClasses"); | 
|  26  |  26  | 
|  27 Promise.all([FilterNotifier.once("load"), Prefs.untilLoaded]).then(() => |  27 Promise.all([filterNotifier.once("load"), Prefs.untilLoaded]).then(() => | 
|  28 { |  28 { | 
|  29   if (Prefs.data_cleanup_done) |  29   if (Prefs.data_cleanup_done) | 
|  30     return; |  30     return; | 
|  31  |  31  | 
|  32   if (FilterStorage.firstRun) |  32   if (FilterStorage.firstRun) | 
|  33   { |  33   { | 
|  34     Prefs.data_cleanup_done = true; |  34     Prefs.data_cleanup_done = true; | 
|  35     return; |  35     return; | 
|  36   } |  36   } | 
|  37  |  37  | 
|  38   let haveHitCounts = []; |  38   let haveHitCounts = []; | 
|  39  |  39  | 
|  40   for (let key in Filter.knownFilters) |  40   for (let key in Filter.knownFilters) | 
|  41   { |  41   { | 
|  42     let filter = Filter.knownFilters[key]; |  42     let filter = Filter.knownFilters[key]; | 
|  43     if (!(filter instanceof ActiveFilter)) |  43     if (!(filter instanceof ActiveFilter)) | 
|  44       continue; |  44       continue; | 
|  45  |  45  | 
|  46     if (filter.disabled) |  46     if (filter.disabled) | 
|  47     { |  47     { | 
|  48       // Enable or replace disabled filters |  48       // Enable or replace disabled filters | 
|  49       filter.disabled = false; |  49       filter.disabled = false; | 
|  50  |  50  | 
|  51       for (let subscription of filter.subscriptions) |  51       for (let subscription of filter.subscriptions()) | 
|  52       { |  52       { | 
|  53         if (subscription instanceof SpecialSubscription) |  53         if (subscription instanceof SpecialSubscription) | 
|  54         { |  54         { | 
|  55           while (true) |  55           while (true) | 
|  56           { |  56           { | 
|  57             let position = subscription.filters.indexOf(filter); |  57             let position = subscription.filters.indexOf(filter); | 
|  58             if (position < 0) |  58             if (position < 0) | 
|  59               break; |  59               break; | 
|  60  |  60  | 
|  61             let newFilter = Filter.fromText("! " + filter.text); |  61             let newFilter = Filter.fromText("! " + filter.text); | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
|  75  |  75  | 
|  76   // Remove any existing automatic backups |  76   // Remove any existing automatic backups | 
|  77   let backups = []; |  77   let backups = []; | 
|  78   for (let i = 1; i < 100; i++) |  78   for (let i = 1; i < 100; i++) | 
|  79     backups.push(`file:patterns-backup${i}.ini`); |  79     backups.push(`file:patterns-backup${i}.ini`); | 
|  80   browser.storage.local.remove(backups, () => |  80   browser.storage.local.remove(backups, () => | 
|  81   { |  81   { | 
|  82     Prefs.data_cleanup_done = true; |  82     Prefs.data_cleanup_done = true; | 
|  83   }); |  83   }); | 
|  84 }); |  84 }); | 
| OLD | NEW |