-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
208 lines (172 loc) · 8.5 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
'use strict';
let
fs = require('fs'),
path = require('path'),
config = JSON.parse(fs.readFileSync(path.normalize(__dirname + '/config.json', 'utf8'))),
Discourse = require('discourse-api'),
api = new Discourse(config.url, config.api.key, config.api.username);
// Obtain an array in the format "<old_id>": "post:<post_num>, topic:<topic_id>" by running an import script
// patched to `puts "\nXXX \"#{quoted_post_id}\": \"post:#{post.post_number}, topic:#{post.topic_id}\""`,
// for example after this line: https://github.com/discourse/discourse/pull/3802/files#diff-45f56f21760a426538b1ae78cdd2ab81R173
let post_id_to_post_num_and_topic = null;
try {
post_id_to_post_num_and_topic = JSON.parse(fs.readFileSync(path.normalize(__dirname + '/post_id_mapping.json', 'utf8')));
} catch (error) {
console.warn('post_id_mapping.json not found. No quote processing will be done.');
}
let tasks = [
function HRs(raw) {
return raw.replace(/\r?\n\[hr]\r?\n/g, '\n\n----------\n');
},
// Markdown autolinks, so no need for [url=http://example.com]http://example.com[/url]
function BBCodeAutoURL(raw) {
return raw.replace(/\[url=(.*?)]\1\[\/url]/g, '$1');
},
// MyBB hyperlinks '(http://example.com)' correctly. Discourse does not - https://meta.discourse.org/t/url-auto-linking-doesnt-hyperlink-if-open-paren-precedes-the-protocol/33630/1
function URLsInParens(raw) {
return raw.replace(/[^\]]\(([a-z]+:\/\/[^ )]+)\)/g, '([$1]($1))'); // don't process URLs in parens that are part of Markdown URLS, e.g. [text](http://...)
},
// Convert [url=...]text[/url] to Markdown
function BBCodeURL(raw) {
return raw.replace(/\[url=(.*?)](.*?)\[\/url]/g, '[$2]($1)');
},
function align(raw) {
return raw.replace(/\[align=center](.*?)\[\/align]/g, '# $1');
},
function BBCodeBoldItalic(raw) {
return raw.replace(/\[i]([^*\n]+?)\[\/i]/g, '*$1*').replace(/\[b]([^*\n]+?)\[\/b]/g, '**$1**'); // Markdown *'s don't work across newlines
},
function quote(raw) {
function convertUsername(username) {
return username.replace(/\s+/g, '_')
.replace('Gary_Isaac_Wolf', 'Agaricus'); // TODO this would be useful for @mentions too; make configurable
}
if (!post_id_to_post_num_and_topic) return raw;
return raw.replace(
/\[quote='([^']+)'.*?pid='(\d+).*?]/g,
function (match, username, pid) {
return `[quote="${convertUsername(username)}`
+ (post_id_to_post_num_and_topic[pid] ? `, ${post_id_to_post_num_and_topic[pid]}` : '')
+ '"]';
}
);
},
// \n is enough. We don't need \r\n, and it also complicates regexps.
function rmCRs(raw) {
return raw.replace(/\r/g, '');
}
];
let warningPatterns = {
"unescaped '<' character": /<(?!a |\/a>|\/?kbd>|img )/g, // `<a href` or `<a name` are fine
'leading spaces that bbcode ignores but Discourse formats as code': /^ +\S/mg,
'list in BBCode format': /\[list]/g,
'BBCode underline': /\[u]/g, // Discourse handles that, but it may also be an underline for a converted link. TODO check only if it's in a URL?
'blank line between nested [quote]s may force raw display': /\[quote[\s\S]+\[quote[\s\S]+\[quote/g, // https://meta.discourse.org/t/weird-parsing-rule-for-nested-quote-preceded-by-newline/33679/3
'potential missing attachment': /attach/g,
'link to MyBB post/thread': /forum\.quantifiedself\.com/g, // TODO make this configurable
'potential old post number reference': /post.*?#\d+/ig, // See posts #77 and #85
'potential code block': /\(\) \{/g,
'potential list item without preceding newline': /^[^-*\n].*\n[-*]\s+/mg, // avoid false positives on items 2..n of a list
'BBCode font tag': /\[font=/mg, // echoed raw
'BBCode size tag': /\[size=/mg // seems to be ignored
};
function processPost(raw) {
// Run all processing tasks.
let replacements = [];
for (let task of tasks) {
let result = task(raw);
if (result !== raw) {
replacements.push(task.name);
raw = result;
}
}
// Check for warning patterns.
let warnings = [];
for (let warning of Object.keys(warningPatterns)) {
let howMany = raw.match(warningPatterns[warning]);
if (howMany) warnings.push(warning + ` (x${howMany.length})`);
}
return {
raw: raw,
replacements: replacements,
warnings: warnings
};
}
function doPostProcess() {
let count = 0;
let countColorUsed = 0;
let lastPost = api.getLastPostIdSync();
for (let id = 1; id <= lastPost; id++) { // to change only one post, replace 1 and lastPost with its id
try {
let post = api.getPostSync(id);
if (post.deleted_at) {
console.log(`Skipping deleted post ${config.url}/p/${id}`);
continue;
}
if (post.errors) {
console.log(`Error getting post ${id}: ${post.errors}`);
continue;
}
let processedPost = processPost(post.raw);
if (!post.topic_id) processedPost.warnings.push('no topic id');
if (/\[color=/.test(processedPost.raw)) {
countColorUsed++;
}
if (processedPost.warnings.length) {
console.log(`WARNING: post ${config.url}/p/${id} contains:`, processedPost.warnings.join(', '));
}
// If the resulting post is no longer the same, update it, unless all we'd do is remove CRs (too insignificant to create a revision for)
if (processedPost.replacements.length >= 2 || (processedPost.replacements.length === 1 && processedPost.replacements[0] !== 'rmCRs')) {
// Dry run, only log post changes
if (config.dryRun) {
console.log(`Dry run in post ${config.url}/p/${id}:`, processedPost.replacements.join(', '));
console.log(`Dry run replacement post: `, processedPost.raw);
count++;
}
else {
let result = api.updatePostSync(id, processedPost.raw, 'Fix formatting post-migration: ' + processedPost.replacements.join(', '));
if (result.statusCode === 200) {
console.log(`Fixed in post ${config.url}/p/${id}:`, processedPost.replacements.join(', '));
count++;
} else {
console.log(`Error ${result.statusCode} while updating post ${config.url}/p/${id}:`, result.headers.status, String.fromCharCode.apply(null, result.body));
}
}
}
} catch (error) {
console.log(`Exception error while processing post ${id}:`, error);
}
}
console.log('\n\nTotal posts updated:', count);
if (!countColorUsed) {
console.log("\nNo [color=...] tags were actually used. You can uninstall the bbcode-color plugin if you don't want to allow colors.");
}
}
/**
* Delete users and ban their email and IP.
* @param {string} filter - Single or multi-line string, with each line interpreted as a search filter,
* e.g. a name or email address. Use the filter *very* carefully - try to make it as strict as possible,
* e.g. matching a complete spam domain name, like `@sofimail.com`.
*/
function deleteAndBlockUsers(filter) {
let users, deletedCount = 0, errorCount = 0;
filter.split('\n').forEach(function applyFilterLine(line) {
do {
users = api.filterUsersSync(line);
for (let user of users) {
let response = api.deleteAndBlockUserSync(user.id, user.username);
if (response.statusCode === 200) {
console.log('User deleted and blocked: ', user.username, user.email);
deletedCount++;
} else {
console.log(`ERROR ${response.statusCode} while deleting ${user.username}:`, response.headers.status);
errorCount++;
}
}
} while (users.length === 100); // the API is capped at 100 results - https://meta.discourse.org/t/scroll-through-full-user-list/23047
});
console.log(`${deletedCount} users matching the filter have been deleted and blocked. ${errorCount} errors encountered.`);
}
console.log('Starting Discourse post-processing...');
doPostProcess();
deleteAndBlockUsers('@sofimail.com');