This repository was archived by the owner on May 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathutil.js
212 lines (199 loc) · 7.35 KB
/
util.js
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
const request = require('request')
const { sanitizeABPInput } = require('./filtering')
const fs = require('fs')
const { AdBlockClient, adBlockLists } = require('..')
/**
* Builds an adblock client, given one or more strings containing filter rules.
*
* @param filterRuleData -- either a string, describing adblock filter riles,
* or an array of such strings.
* @param options -- an optional object, describing parse options.
* currently the only used rule is "keepRuleText",
* which is a boolean flag determine whether to keep
* the original filter rule text.
*/
const makeAdBlockClientFromString = (filterRuleData, options) => {
const keepRuleText = !!(options && options.keepRuleText)
return new Promise((resolve) => {
const client = new AdBlockClient()
if (filterRuleData.constructor === Array) {
filterRuleData.forEach(filterRuleDataItem => client.parse(filterRuleDataItem, keepRuleText))
} else {
client.parse(filterRuleData, keepRuleText)
}
resolve(client)
})
}
/**
* Creates an ABlock client from a DAT file
* @param datFilePath - The file path to the DAT file
*/
const makeAdBlockClientFromDATFile = (datFilePath) => {
return new Promise((resolve, reject) => {
fs.readFile(datFilePath, (err, data) => {
if (err) {
reject(err)
return
}
const client = new AdBlockClient()
client.deserialize(data)
resolve(client)
})
})
}
/**
* Creates an ABlock client from a list URL
* @param listURL - The URL to check for obtaining the list.
* @param filter - A filtering function that can be optionally specified.
* @param options -- an optional object, describing parse options.
* currently the only used rule is "keepRuleText",
* which is a boolean flag determine whether to keep
* the original filter rule text.
* It will be called with the URL's body and it can filter and return a new string.
*/
const getSingleListDataFromSingleURL = (listURL, filter, options) => {
return new Promise((resolve, reject) => {
request.get(listURL, function (error, response, body) {
if (error) {
reject(new Error(`Request error: ${error}`))
return
}
if (response.statusCode !== 200) {
reject(new Error(`Error status code ${response.statusCode} returned for URL: ${listURL}`))
return
}
if (filter) {
body = filter(body)
}
body = sanitizeABPInput(body)
resolve(body)
})
})
}
/**
* Creates an AdBlock client from a list URL
* @param listURL -- The URL to check for obtaining the list.
* @param filter -- A filtering function that can be optionally specified.
* @param options -- an optional object, describing parse options.
* currently the only used rule is "keepRuleText",
* which is a boolean flag determine whether to keep
* the original filter rule text.
* It will be called with the URL's body and it can filter and return a new string.
*/
const makeAdBlockClientFromListURL = (listURL, filter, options) => {
return new Promise((resolve, reject) => {
if (listURL.constructor === Array) {
const requestPromises = listURL.map((currentURL) => {
console.log(`${currentURL}...`)
return getSingleListDataFromSingleURL(currentURL, filter)
})
Promise.all(requestPromises).then((results) => {
let body = results.join('\n')
body = sanitizeABPInput(body)
resolve(makeAdBlockClientFromString(body, options))
}).catch((error) => {
reject(new Error(`getSingleListDataFromSingleURL error: ${error}`))
})
} else {
console.log(`${listURL}...`)
getSingleListDataFromSingleURL(listURL, filter).then((listData) => {
const body = sanitizeABPInput(listData)
resolve(makeAdBlockClientFromString(body, options))
}).catch((error) => {
reject(new Error(`getSingleListDataFromSingleURL error: ${error}`))
})
}
})
}
const getListFilterFunction = (uuid) => {
if (uuid === 'FBB430E8-3910-4761-9373-840FC3B43FF2') {
return (input) => input.split('\n').slice(4)
.map((line) => `||${line}`).join('\n')
}
return undefined
}
/**
* Creates an AdBlock client with the rules given in a list described by a UUID.
*
* See lists/* for the definitions of these UUIDs.
*
* @param uuid -- a string, describing on of the UUIDs for a known filter
* list.
* @param options -- an optional object, describing parse options.
* currently the only used rule is "keepRuleText",
* which is a boolean flag determine whether to keep
* the original filter rule text.
*/
const makeAdBlockClientFromListUUID = (uuid, options) => {
let list = adBlockLists.default.find((l) => l.uuid === uuid)
if (!list) {
list = adBlockLists.regions.find((l) => l.uuid === uuid)
}
if (!list) {
list = adBlockLists.malware.find((l) => l.uuid === uuid)
}
if (!list) {
return Promise.reject(new Error(`No list found for UUID ${uuid}`))
}
const filterFn = getListFilterFunction(uuid)
return makeAdBlockClientFromListURL(list.listURL, filterFn, options)
}
/**
* Builds an adblock client by reading one or more files filter rules off disk.
*
* @param filePath -- either a string, describing the path to a file of filter
* rules on disk, or an array of the same.
* @param options -- an optional object, describing parse options.
* currently the only used rule is "keepRuleText",
* which is a boolean flag determine whether to keep
* the original filter rule text.
*/
const makeAdBlockClientFromFilePath = (filePath, options) => {
return new Promise((resolve, reject) => {
let filterRuleData
if (filePath.constructor === Array) {
filterRuleData = filePath.map((filePath) => fs.readFileSync(filePath, 'utf8'))
} else {
filterRuleData = fs.readFileSync(filePath, 'utf8')
}
resolve(makeAdBlockClientFromString(filterRuleData, options))
})
}
const getListBufferFromURL = (listURL, filter) => {
return new Promise((resolve, reject) => {
request.get(listURL, function (error, response, body) {
if (error) {
reject(new Error(`Request error: ${error}`))
return
}
if (response.statusCode !== 200) {
reject(new Error(`Error status code ${response.statusCode} returned for URL: ${listURL}`))
return
}
if (filter) {
body = filter(body)
}
body = sanitizeABPInput(body)
resolve(body)
})
})
}
/**
* Reads a list of sites in the format of one site per newline
* from a file path and returns an array with the sites.
*/
const readSiteList = (path) =>
fs.readFileSync(path, 'utf8').split('\n')
module.exports = {
makeAdBlockClientFromString,
makeAdBlockClientFromDATFile,
makeAdBlockClientFromListURL,
makeAdBlockClientFromFilePath,
makeAdBlockClientFromListUUID,
getListBufferFromURL,
readSiteList,
getListFilterFunction
}