forked from mileszim/webpurify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpurify.js
More file actions
461 lines (384 loc) · 13.3 KB
/
webpurify.js
File metadata and controls
461 lines (384 loc) · 13.3 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
var querystring = require('querystring');
var http = require('http');
var https = require('https');
/**
* WebPurify NPM Module
* A Node NPM module for interacting with the WebPurify API
* @param {Object} options The options object, passed in on initialization. This defines
* several master paramaters handling the connection and interaction with the API.
* @throws {Error} Throws an error if parameters are invalid.
* @throws {Error} Throws an error if API key is missing.
* @constructor
*/
function WebPurify(options) {
if (!(this instanceof WebPurify)) return new WebPurify(options);
// Handle bad parameters
if (!(options instanceof Object)) {
throw new Error('Invalid parameters');
}
if (typeof options.api_key !== 'string') {
throw new Error('Invalid API Key');
}
// API Information
var endpoints = {
us: 'api1.webpurify.com',
eu: 'api1-eu.webpurify.com',
ap: 'api1-ap.webpurify.com'
};
var rest_path = '/services/rest/';
// Configured options
this.options = {
api_key: options.api_key,
endpoint: options.endpoint || 'us',
enterprise: options.enterprise || false
};
this.request_base = {
host: endpoints[this.options.endpoint],
path: rest_path
};
this.query_base = {
api_key: this.options.api_key,
format: 'json',
};
}
/**
* Handles the HTTP/S requests
* @param {string} host The hostname for the request URL (ie. api1.webpurify.com)
* @param {string} path The path of the request (ie. /services/rest/)
* @param {string} method The method, either 'GET or 'PUT'
* @param {boolean} ssl True or false for using HTTPS or HTTP. If you are using enterprise API, you can set this to true.
* @param {Function} callback The callback function
*/
WebPurify.prototype.request = function(host, path, method, ssl, callback) {
var options = {
hostname: host,
port: 80,
path: path,
method: method
};
var base_type = http;
if (ssl) {
base_type = https;
}
var req = base_type.request(options, function(res) {
res.on('data', function(data) {
try {
data = JSON.parse(data);
} catch (e) {
return callback("Invalid JSON");
}
callback(null, data);
});
});
req.on('error', function(error) {
callback(error.message, null);
});
req.end();
};
/**
* Formats the request for the request function
* @param {Object} params The params object passed into the request
* @param {Object} options The optional parameters for the API request (can be left blank)
* @param {Function} callback The callback function
* @throws {Error} Returns invalid callback error if callback is not a function.
*/
WebPurify.prototype.get = function(params, options, callback) {
// Adjust or throw errors
if (options instanceof Function) {
callback = options;
options = null;
}
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
// make query and request
var query = this.request_base.path + '?' + querystring.stringify(this.query_base) + '&' + querystring.stringify(params);
if (options !== null) query += '&' + querystring.stringify(options);
this.request(this.request_base.host, query, 'GET', this.options.enterprise, function(error, response) {
try {
if (!error && response) {
var rsp = response.rsp;
var status = rsp['@attributes'].stat;
// errors (to handle later)
if (status==='fail' && rsp.err instanceof Object) {
return callback(rsp.err['@attributes'], null);
// accepted
} else if (status==='ok') {
return callback(null, WebPurify.prototype.strip(rsp));
}
}
}
catch (err) {
console.log('webpurify failed', err, response);
return callback(err);
}
return callback(error || 'wp failed');
});
return this;
};
/**
* Strips the WebPurify JSON response to be useful
* @param {Object} response The response JSON to be stripped
* @return {Object} The stripped response
*/
WebPurify.prototype.strip = function(response) {
if (response) {
delete response['@attributes'];
delete response.api_key;
delete response.method;
delete response.format;
}
return response;
};
/**
* Handles errors
* @param {Object} err The error object
* @return {string} An error message
*/
WebPurify.prototype.handleError = function(err) {
if (err.msg) return "Error: " + err.msg;
return "There was an error.";
};
/**
* WebPurify API: Check
* Checks the passed text for any profanity. If found, returns true, else false.
* @param {string} text The text to check for profanity
* @param {Object} options The optional API parameters
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback is not a function.
*/
WebPurify.prototype.check = function(text, options, callback) {
// Adjust or throw errors
if (options instanceof Function) {
callback = options;
options = null;
}
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.check';
this.get({method:method,text:text}, options, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.found === '1' ? true : false);
}
});
};
/**
* WebPurify API: CheckCount
* Checks the passed text for any profanity. If found, returns number of found words, else 0.
* @param {string} text The text to check for profanity
* @param {Object} options The optional API parameters
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback is not a function.
*/
WebPurify.prototype.checkCount = function(text, options, callback) {
// Adjust or throw errors
if (options instanceof Function) {
callback = options;
options = null;
}
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.checkcount';
this.get({method:method,text:text}, options, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, parseInt(res.found, 10));
}
});
};
/**
* WebPurify API: Replace
* Checks the passed text for any profanity. If found, returns the text with profanity altered by symbol. Else 0.
* @param {string} text The text to check for profanity
* @param {string} replace_symbol The symbol to replace profanity with (ie. '*')
* @param {Object} options The optional API parameters
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback is not a function.
*/
WebPurify.prototype.replace = function(text, replace_symbol, options, callback) {
// Adjust or throw errors
if (options instanceof Function) {
callback = options;
options = null;
}
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.replace';
this.get({method:method,text:text,replacesymbol:replace_symbol}, options, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.text);
}
});
};
/**
* WebPurify API: Return
* Checks the passed text for any profanity. If found, returns an array of expletives.
* @param {string} text The text to check for profanity
* @param {Object} options The optional API parameters
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback is not a function.
*/
WebPurify.prototype.return = function(text, options, callback) {
// Adjust or throw errors
if (options instanceof Function) {
callback = options;
options = null;
}
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.return';
this.get({method:method,text:text}, options, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
if (!res.expletive) {
callback(null, []);
} else if (res.expletive && typeof res.expletive==='string') {
callback(null, [res.expletive]);
} else {
callback(null, res.expletive);
}
}
});
};
/**
* WebPurify API: addToBlacklist
* Add a word to the blacklist
* @param {string} word The word to add to the blacklist
* @param {string} deep_search 1 if deepsearch, 0 or null if you don't care
* @param {Function} callback The callback function (optional)
*/
WebPurify.prototype.addToBlacklist = function(word, deep_search, callback) {
// Adjust or throw errors
if (deep_search instanceof Function) {
callback = deep_search;
deep_search = null;
}
var method = 'webpurify.live.addtoblacklist';
this.get({method:method,word:word,ds:deep_search}, function(err,res) {
if (callback) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.success === '1' ? true : false);
}
}
});
};
/**
* WebPurify API: removeFromBlacklist
* Remove a word from the blacklist
* @param {string} word The word to remove from the blacklist
* @param {Function} callback The callback function
*/
WebPurify.prototype.removeFromBlacklist = function(word, callback) {
var method = 'webpurify.live.removefromblacklist';
this.get({method:method,word:word}, function(err,res) {
if (callback) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.success === '1' ? true : false);
}
}
});
};
/**
* WebPurify API: getBlacklist
* Get the blacklist
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback does not exist or invalid.
*/
WebPurify.prototype.getBlacklist = function(callback) {
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.getblacklist';
this.get({method:method}, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
if (!res.word) {
callback(null, []);
} else if (res.word && typeof res.word==='string') {
callback(null, [res.word]);
} else {
callback(null, res.word);
}
}
});
};
/**
* WebPurify API: addToWhitelist
* Add a word to the whitelist
* @param {string} word The word to add to the whitelist
* @param {Function} callback The callback function (optional)
*/
WebPurify.prototype.addToWhitelist = function(word, callback) {
var method = 'webpurify.live.addtowhitelist';
this.get({method:method,word:word}, function(err,res) {
if (callback) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.success === '1' ? true : false);
}
}
});
};
/**
* WebPurify API: removeFromWhitelist
* Remove a word from the whitelist
* @param {string} word The word to remove from the whitelist
* @param {Function} callback The callback function
*/
WebPurify.prototype.removeFromWhitelist = function(word, callback) {
var method = 'webpurify.live.removefromwhitelist';
this.get({method:method,word:word}, function(err,res) {
if (callback) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
callback(null, res.success === '1' ? true : false);
}
}
});
};
/**
* WebPurify API: getWhitelist
* Get the whitelist
* @param {Function} callback The callback function
* @throws {Error} Throws an error if callback does not exist or invalid.
*/
WebPurify.prototype.getWhitelist = function(callback) {
if (!(callback instanceof Function)) {
throw new Error('Invalid Callback');
}
var method = 'webpurify.live.getwhitelist';
this.get({method:method}, function(err,res) {
if (err) {
callback(WebPurify.prototype.handleError(err),null);
} else {
if (!res.word) {
callback(null, []);
} else if (res.word && typeof res.word==='string') {
callback(null, [res.word]);
} else {
callback(null, res.word);
}
}
});
};
/**
* EXPORT
*/
module.exports = WebPurify;