forked from ninenine/nodebb-plugin-beep
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
224 lines (200 loc) · 6.46 KB
/
index.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
213
214
215
216
217
218
219
220
221
222
223
224
'use strict';
const validator = require('validator');
var winston = require.main.require('winston');
var meta = require.main.require('./src/meta');
var translator = require.main.require('./src/translator');
var toRegExp = require('./lib/toRegExp');
var parseContent = require('./lib/parseContent');
var defaultBanList = [
'anal', 'anus', 'arse', 'ass', 'ballsack', 'balls', 'bastard', 'bitch', 'biatch', 'bloody',
'blowjob', 'blow job', 'bollock', 'bollok', 'boner', 'boob', 'bugger', 'bum', 'butt', 'buttplug',
'clitoris', 'cock', 'coon', 'crap', 'cunt', 'damn', 'dick', 'dildo', 'dyke', 'fag', 'feck',
'fellate', 'fellatio', 'felching', 'fuck', 'f u c k', 'fudgepacker', 'fudge packer', 'flange',
'homo', 'jerk', 'jizz', 'knobend', 'knob end', 'labia', 'muff', 'nigger', 'nigga', 'penis',
'piss', 'poop', 'prick', 'pube', 'pussy', 'queer', 'sex', 'shit', 's hit', 'sh1t', 'slut',
'smegma', 'spunk', 'tit', 'tosser', 'turd', 'twat', 'vagina', 'wank', 'whore',
];
const pluginName = 'Censor Curse Words';
var Beep = {
banned_words_raw: '',
banned_words: null,
banned_urls: null,
illegal_words: null,
illegal_usernames: null,
parseContent: function (content, symbol) {
var nil = '^(?!x)x';
return parseContent(content, Beep.banned_words || nil, Beep.banned_urls || nil, Beep.censorWholeWord, symbol || '*');
},
toRegExp: toRegExp,
loadList: function (callback) {
// Load Banned Words from config
meta.settings.get('beep', function (err, hash) {
if (err) {
return callback(err);
}
Beep.illegal_words = Beep.toRegExp(hash.illegal, true);
Beep.illegal_usernames = Beep.toRegExp(hash['illegal-usernames'], false);
if (hash.id && hash.id.length) {
var words = hash.id.split(',').filter(function (word) {
return !Beep.illegal_words.test(word);
});
Beep.banned_words = Beep.toRegExp(words, true);
Beep.banned_words_raw = hash.id;
} else {
Beep.banned_words = Beep.toRegExp(defaultBanList, true);
Beep.banned_words_raw = defaultBanList.join(', ');
winston.info('Default list of Banned Words is enabled. Please go to administration panel to change the list.');
}
Beep.banned_urls = Beep.toRegExp(hash.urls);
Beep.censorWholeWord = hash.censorWholeWord === 'on';
if (meta.config) {
meta.config.beep = meta.config.beep || {};
meta.config.beep.censorWholeWord = Beep.censorWholeWord;
}
callback();
});
},
init: function (params, callback) {
var router = params.router;
var middleware = params.middleware;
function render(req, res, next) {
res.render('admin/plugins/beep', {
title: pluginName,
});
}
router.get('/admin/plugins/beep', middleware.admin.buildHeader, render);
router.get('/api/admin/plugins/beep', render);
router.get('/api/plugins/beep', function (req, res) {
if (Beep.banned_words) {
res.status(200).send(Beep.banned_words_raw);
} else {
res.status(501);
}
});
Beep.loadList(callback);
},
appendConfig: function (config, callback) {
meta.settings.getOne('beep', 'censorWholeWord', function (err, censorWholeWord) {
if (err) {
return callback(null, config);
}
config.beep = {
censorWholeWord: censorWholeWord === 'on',
};
callback(err, config);
});
},
checkForIllegalWords: function (data, callback) {
var postContent = data.content || data.data && data.data.content;
var postTitle = data.title || data.topic && data.topic.title;
var titleMatch = postTitle && postTitle.match(Beep.illegal_words);
if (titleMatch) {
translator.translate('[[beep:titleMatch.error, ' + titleMatch[0] + ']]', function (translated) {
callback(new Error(translated));
});
return;
}
var contentMatch = postContent && postContent.match(Beep.illegal_words);
if (contentMatch) {
translator.translate('[[beep:contentMatch.error, ' + contentMatch[0] + ']]', function (translated) {
callback(new Error(translated));
});
return;
}
callback(null, data);
},
onListChange: function (hash) {
if (hash && hash.plugin === 'beep') {
Beep.loadList(function () {});
}
},
parse: function (data, callback) {
if (!data || !data.postData || !data.postData.content) {
return callback(null, data);
}
data.postData.content = Beep.parseContent(data.postData.content);
callback(null, data);
},
parseRaw: function (content, callback) {
if (!content) {
return callback(null, content);
}
content = Beep.parseContent(content);
callback(null, content);
},
parseSignature: function (data, callback) {
if (!data || !data.userData || !data.userData.signature) {
return callback(null, data);
}
data.userData.signature = Beep.parseContent(data.userData.signature);
callback(null, data);
},
parseTopic: function (data, callback) {
// from http://htmlarrows.com/symbols/
var starHTML = '*';
if (data.topic.hasOwnProperty('title')) {
data.topic.title = Beep.parseContent(data.topic.title, starHTML);
}
if (data.topic.hasOwnProperty('slug')) {
data.topic.slug = Beep.parseContent(data.topic.slug, starHTML);
}
if (data.topic.hasOwnProperty('titleRaw')) {
data.topic.titleRaw = Beep.parseContent(data.topic.titleRaw, starHTML);
}
callback(null, data);
},
filterTags: function (data, callback) {
var match;
data.tags.some(function (tag) {
match = tag && tag.match(Beep.illegal_words);
return !!match;
});
if (match) {
translator.translate('[[beep:tagMatch.error, ' + match[0] + ']]', function (translated) {
callback(new Error(translated));
});
return;
}
data.tags = data.tags.map(function (tag) {
return Beep.parseContent(tag, '+');
});
callback(null, data);
},
admin: {
menu: function (custom_header, callback) {
custom_header.plugins.push({
route: '/plugins/beep',
icon: 'fa-microphone-slash',
name: pluginName,
});
callback(null, custom_header);
},
},
post: {
getFields: function (data, callback) {
if (data.fields.indexOf('content') !== -1) {
data.posts.forEach(function (post) {
post.content = Beep.parseContent(post.content);
});
}
callback(null, data);
},
},
messaging: {
getTeaser: function (data, callback) {
data.teaser.content = Beep.parseContent(data.teaser.content);
callback(null, data);
},
},
filterUserCreate: function (hookData) {
const { user } = hookData;
if (user && user.username) {
const isIllegal = user.username.match(Beep.illegal_usernames);
if (isIllegal) {
throw new Error(`[[beep:username.error, ${validator.escape(user.username)}]]`);
}
}
return hookData;
},
};
module.exports = Beep;