-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexportMediaWiki.js
More file actions
300 lines (266 loc) · 9.3 KB
/
Copy pathexportMediaWiki.js
File metadata and controls
300 lines (266 loc) · 9.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
'use strict';
const Changeset = require('ep_etherpad-lite/static/js/Changeset');
const padManager = require('ep_etherpad-lite/node/db/PadManager');
const getPadMediaWiki = async (pad, revNum, callback) => {
let atext = pad.atext;
if (revNum) {
atext = await pad.getInternalRevisionAText(revNum);
callback();
}
const MediaWiki = getMediaWikiFromAtext(pad, atext);
callback(null, MediaWiki);
};
exports.getPadMediaWiki = getPadMediaWiki;
const getMediaWikiFromAtext = (pad, atext) => {
const apool = pad.apool();
const textLines = atext.text.slice(0, -1).split('\n');
const attribLines = Changeset.splitAttributionLines(atext.attribs, atext.text);
// Inline character-level formatting tags (headings are line-level, handled separately)
const tags = ['\'\'\'', '\'\'', 'u>', 's>', 'sup>', 'sub>'];
const props = ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript'];
const anumMap = {};
props.forEach((propName, i) => {
const propTrueNum = apool.putAttrib([propName, true], true);
if (propTrueNum >= 0) {
anumMap[propTrueNum] = i;
}
});
const getLineMediaWiki = (text, attribs) => {
const propVals = new Array(tags.length).fill(false);
let currentColor = null;
const ENTER = 1;
const STAY = 2;
const LEAVE = 0;
// Use order of tags (b/i/u) as order of nesting, for simplicity
// and decent nesting. For example,
// <b>Just bold<b> <b><i>Bold and italics</i></b> <i>Just italics</i>
// becomes
// <b>Just bold <i>Bold and italics</i></b> <i>Just italics</i>
let textCursor = 0;
const chunks = [];
const takeText = (chars) => {
const chunk = text.slice(textCursor, textCursor + chars);
textCursor += chars;
return chunk;
};
const assem = {
append: (chunk) => { chunks.push(chunk); },
toString: () => chunks.join(''),
};
const emitOpenTag = (i) => {
if (tags[i].indexOf('>') !== -1) {
assem.append('<');
}
assem.append(tags[i]);
};
const emitCloseTag = (i) => {
if (tags[i].indexOf('>') !== -1) {
assem.append('</');
}
assem.append(tags[i]);
};
const urls = _findURLs(text);
let idx = 0;
const processNextChars = (numChars) => {
if (numChars <= 0) {
return;
}
const iter = Changeset.opIterator(Changeset.subattribution(attribs, idx, idx + numChars));
idx += numChars;
while (iter.hasNext()) {
const o = iter.next();
let propChanged = false;
Changeset.eachAttribNumber(o.attribs, (a) => {
if (a in anumMap) {
const i = anumMap[a]; // i = 0 => bold, etc.
if (!propVals[i]) {
propVals[i] = ENTER;
propChanged = true;
} else {
propVals[i] = STAY;
}
}
});
for (let i = 0; i < propVals.length; i++) {
if (propVals[i] === true) {
propVals[i] = LEAVE;
propChanged = true;
} else if (propVals[i] === STAY) {
propVals[i] = true; // set it back
}
}
// now each member of propVal is in {false,LEAVE,ENTER,true}
// according to what happens at start of span
const newColor = Changeset.opAttributeValue(o, 'color', apool) || null;
const colorChanged = newColor !== currentColor;
if (propChanged || colorChanged) {
// Close color span before adjusting inline tags (color is innermost)
if (colorChanged && currentColor) {
assem.append('</span>');
}
if (propChanged) {
// leaving bold (e.g.) also leaves italics, etc.
let left = false;
for (let i = 0; i < propVals.length; i++) {
const v = propVals[i];
if (!left) {
if (v === LEAVE) {
left = true;
}
} else if (v === true) {
propVals[i] = STAY; // tag will be closed and re-opened
}
}
for (let i = propVals.length - 1; i >= 0; i--) {
if (propVals[i] === LEAVE) {
emitCloseTag(i);
propVals[i] = false;
} else if (propVals[i] === STAY) {
emitCloseTag(i);
}
}
for (let i = 0; i < propVals.length; i++) {
if (propVals[i] === ENTER || propVals[i] === STAY) {
emitOpenTag(i);
propVals[i] = true;
}
}
}
// Open new color span after inline tags (color is innermost)
if (colorChanged) {
currentColor = newColor;
if (newColor) {
assem.append(`<span style="color:${newColor};">`);
}
}
} // end if (propChanged || colorChanged)
let chars = o.chars;
if (o.lines) {
chars--; // exclude newline at end of line, if present
}
const s = takeText(chars);
assem.append(s);
} // end iteration over spans in line
if (currentColor) {
assem.append('</span>');
currentColor = null;
}
for (let i = propVals.length - 1; i >= 0; i--) {
if (propVals[i]) {
emitCloseTag(i);
propVals[i] = false;
}
}
};
// end processNextChars
if (urls) {
urls.forEach((urlData) => {
const startIndex = urlData[0];
const url = urlData[1];
const urlLength = url.length;
processNextChars(startIndex - idx);
assem.append('[');
// Do not use processNextChars since a link does not contain syntax and
// needs no escaping
const iter = Changeset.opIterator(Changeset.subattribution(attribs, idx, idx + urlLength));
idx += urlLength;
assem.append(takeText(iter.next().chars));
assem.append(']');
});
}
processNextChars(text.length - idx);
return `${assem.toString()}\n`;
};
// end getLineMediaWiki
const pieces = [];
for (let i = 0; i < textLines.length; i++) {
const line = _analyzeLine(textLines[i], attribLines[i], apool);
const lineContent = getLineMediaWiki(line.text, line.aline);
// lineContent ends with \n; strip it for wrapping then re-add
const contentText = lineContent.slice(0, -1);
if (line.headingType) {
if (line.headingType === 'code') {
pieces.push(`<code>${contentText}</code>\n`);
} else {
const level = parseInt(line.headingType[1], 10);
const markers = '='.repeat(level);
pieces.push(`${markers} ${contentText} ${markers}\n`);
}
} else if (line.listLevel && lineContent) {
if (line.listTypeName === 'number') {
pieces.push(`${'#'.repeat(line.listLevel)} ${contentText}\n`);
} else if (line.listTypeName === 'indent') {
pieces.push(`${':'.repeat(line.listLevel)} ${contentText}\n`);
} else {
pieces.push(`${'*'.repeat(line.listLevel)} ${contentText}\n`);
}
} else {
pieces.push(lineContent);
}
}
return pieces.join('');
};
const _analyzeLine = (text, aline, apool) => {
const line = {};
// identify list and heading line attributes
let lineMarker = 0;
line.listLevel = 0;
if (aline) {
const opIter = Changeset.opIterator(aline);
if (opIter.hasNext()) {
const op = opIter.next();
let listType = Changeset.opAttributeValue(op, 'list', apool);
if (listType) {
lineMarker = 1;
listType = /([a-z]+)([12345678])/.exec(listType);
if (listType) {
line.listTypeName = listType[1];
line.listLevel = Number(listType[2]);
}
}
const heading = Changeset.opAttributeValue(op, 'heading', apool);
if (heading) {
lineMarker = 1;
line.headingType = heading; // e.g. 'h1', 'h2', ..., 'h6', 'code'
}
}
}
if (lineMarker) {
line.text = text.substring(1);
line.aline = Changeset.subattribution(aline, 1);
} else {
line.text = text;
line.aline = aline;
}
return line;
};
exports.getPadMediaWikiDocument = async (padId, revNum, callback) => {
try {
const pad = await padManager.getPad(padId, null);
getPadMediaWiki(pad, revNum, (err, MediaWiki) => {
callback(null, MediaWiki);
});
} catch (e) {
callback(e, null);
}
};
// copied from ACE
/* eslint-disable-next-line max-len */
const _REGEX_WORDCHAR = /[\u0030-\u0039\u0041-\u005A\u0061-\u007A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u1FFF\u3040-\u9FFF\uF900-\uFDFF\uFE70-\uFEFE\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFDC]/;
/* eslint-disable-next-line max-len, no-useless-escape */
const _REGEX_URLCHAR = new RegExp(`(${/[-:@a-zA-Z0-9_.,~%+\/\\?=&#;()$]/.source}|${_REGEX_WORDCHAR.source})`);
/* eslint-disable-next-line max-len */
const _REGEX_URL = new RegExp(`${/(?:(?:https?|s?ftp|ftps|file|smb|afp|nfs|(x-)?man|gopher|txmt):\/\/|mailto:)/.source + _REGEX_URLCHAR.source}*(?![:.,;])${_REGEX_URLCHAR.source}`, 'g');
// returns null if no URLs, or [[startIndex1, url1], [startIndex2, url2], ...]
const _findURLs = (text) => {
_REGEX_URL.lastIndex = 0;
let urls = null;
let execResult;
while ((execResult = _REGEX_URL.exec(text))) {
urls = (urls || []);
const startIndex = execResult.index;
const url = execResult[0];
urls.push([startIndex, url]);
}
return urls;
};