Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | |
3 * Copyright (C) 2006-2016 Eyeo GmbH | |
4 * | |
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 | |
7 * published by the Free Software Foundation. | |
8 * | |
9 * Adblock Plus is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
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/>. | |
16 */ | |
17 | |
1 "use strict"; | 18 "use strict"; |
2 | 19 |
3 let readline = require("readline"); | 20 let readline = require("readline"); |
4 | |
5 // Hack to force `require("url")` to return our URL module instead of the | |
6 // one included with Node.js! We manually load it here and then tweak the cache. | |
7 // (After loading our code we must clear it again so that Node.js libraries will | |
8 // be given the URL module that they expect.) | |
9 require("url.js"); | |
10 require.cache["url"] = require.cache[require.resolve("url.js")]; | |
Sebastian Noack
2016/02/21 20:34:44
I'd rather rename our url module, here and in Adbl
kzar
2016/02/22 12:28:05
OK I've renamed the module urlHelpers and removed
Sebastian Noack
2016/02/22 17:35:27
I might have got an even a better idea. How about
kzar
2016/02/22 18:09:28
Sounds good, done.
| |
11 | |
12 let Filter = require("filterClasses").Filter; | 21 let Filter = require("filterClasses").Filter; |
13 let contentBlockerLists = require("./lib/contentBlockerLists.js"); | 22 let ContentBlockerList = require("./lib/abp2blocklist.js").ContentBlockerList; |
14 | |
15 delete require.cache["url"]; | |
16 | 23 |
17 var rl = readline.createInterface({input: process.stdin, terminal: false}); | 24 var rl = readline.createInterface({input: process.stdin, terminal: false}); |
18 var filters = []; | 25 var blockerList = new ContentBlockerList(); |
19 | 26 |
20 rl.on("line", line => | 27 rl.on("line", line => |
21 { | 28 { |
22 if (line.charAt(0) != "[") | 29 if (/^\s*[^\[\s]/.test(line)) |
Sebastian Noack
2016/02/21 20:34:44
What's about empty lines? It seems that we didn't
kzar
2016/02/22 12:28:05
It appears that contentBlockerLists.js logic was h
Sebastian Noack
2016/02/22 17:35:27
OK, I looked into it and figured that this case wa
kzar
2016/02/22 18:09:28
Done.
As for lines with only white-space, we're c
Sebastian Noack
2016/02/22 18:20:26
Yeah, I already figured that myself. The point is
kzar
2016/02/22 19:46:01
OK add the custom subscription of http://static.kz
| |
23 filters.push(Filter.fromText(line)); | 30 blockerList.addFilter(Filter.fromText(line)); |
24 }); | 31 }); |
25 | 32 |
26 rl.on("close", () => | 33 rl.on("close", () => |
27 { | 34 { |
28 console.log(JSON.stringify(contentBlockerLists.convertFilters(filters), | 35 console.log(JSON.stringify(blockerList.generateRules(), |
29 null, "\t")); | 36 null, "\t")); |
30 }); | 37 }); |
LEFT | RIGHT |