-
Notifications
You must be signed in to change notification settings - Fork 1
/
MediaWikiJS.ts
723 lines (638 loc) · 22.9 KB
/
MediaWikiJS.ts
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
import { API } from './API';
import { MediaWikiJSError } from './MediaWikiJSError';
import { Config, ResObject } from './types';
/**
* A MediaWikiJS object.
* @param options - The configuration options.
* @param options.url - The url to the wiki's api.php file.
* @param [options.botUsername] - The bot's bot username, obtained from Special:BotPasswords.
* @param [options.botPassword] - The bot's bot password, obtained from Special:BotPasswords.
*/
export class MediaWikiJS {
api: API;
API_LIMIT: number;
options: Config;
constructor(options: Config) {
if (!options) {
throw new MediaWikiJSError('NO_CONFIG');
}
this.api = new API(this, options);
this.options = options;
this.API_LIMIT = 5000;
}
/**
* Logs in to a wiki bot.
* @param [username] - username The bot username of the account to log in to.
* @param [password] - The bot password of the account to log in to.
*/
async login(username?: string, password?: string): Promise<Record<string, unknown>> {
if (username && !this.options.botUsername) this.options.botUsername = username;
if (password && !this.options.botPassword) this.options.botPassword = password;
if (!username && this.options.botUsername) username = this.options.botUsername;
if (!password && this.options.botPassword) password = this.options.botPassword;
if (!username || !password) throw new MediaWikiJSError('NO_CREDENTIALS');
const queryToken = await this.api.get({
action: 'query',
meta: 'tokens',
type: 'login'
});
const loginObj = (lgtoken: string) => {
const out: { action: string, lgname: string | undefined, lgpassword: string | undefined, lgtoken?: string } = {
action: 'login',
lgname: username,
lgpassword: password
};
if (lgtoken) out.lgtoken = lgtoken;
return out;
};
// Initial attempt
let actionLogin = await this.api.post(loginObj(queryToken?.query?.tokens?.logintoken));
// Support for MW 1.19
if (actionLogin?.login?.result === 'NeedToken') actionLogin = await this.api.post(loginObj(actionLogin?.login?.token));
// Successful login
if (actionLogin?.login?.result === 'Success') return actionLogin;
// Reason throwing
if (actionLogin?.login?.result) throw new MediaWikiJSError('FAILED_LOGIN', actionLogin?.login?.result);
// Unspecified throwing
throw new MediaWikiJSError('FAILED_LOGIN', 'Unspecified error! Dumping: ', JSON.stringify(actionLogin));
}
/**
* Logs out of a wiki bot.
* Removes cookies and deletes tokens.
*/
async logout(): Promise<ResObject> {
const token = await this.getCSRFToken();
const res = await this.api.post({
action: 'logout',
token
});
this.api.jar.removeAllCookiesSync();
return res;
}
/**
* Gets a CSRF token.
*/
async getCSRFToken(): Promise<string> {
let tokenPack: ResObject = await this.api.get({
action: 'query',
meta: 'tokens',
type: 'csrf'
});
let token;
if (tokenPack?.query?.tokens?.csrftoken) {
token = tokenPack.query.tokens.csrftoken;
} else {
// MW 1.19 support
tokenPack = await this.api.get({
action: 'query',
prop: 'info',
intoken: 'edit',
titles: 'F'
});
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
token = Object.values(tokenPack.query.pages)[0].edittoken;
}
return token;
}
/**
* Gets the first item in an object.
* @param object - The object to get the first item of.
*/
getFirstItem(object: {[key: string]: never}): {[key: string]: never} {
const key = Object.keys(object).shift();
if (!key) return object;
return object[key];
}
/**
* Gets only the page titles of a list and formats it into an array.
* @param array - The array to get a list from.
* @param property - The property of the page title in each object.
*/
getList(array: Record<string, unknown>[], property = 'title'): string[] {
const list: string[] = [];
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
array.forEach((elem: {[key: string]: never}) => list.push(elem[property]));
return list;
}
/**
* Gets pages in a category.
* @param category - The category to get pages of.
* @param onlyTitles - Whether to only list the page titles.
*/
async getPagesInCategory(category: string, onlyTitles = false): Promise<string[] | Record<string, unknown>[]> {
const body = await this.api.get({
action: 'query',
list: 'categorymembers',
cmtitle: category,
cmlimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.categorymembers);
return body.query.categorymembers;
}
/**
* Gets all categories an article is in.
* @param title - The title of the page to get categories from.
* @param onlyTitles - Whether to only list the page titles.
*/
async getArticleCategories(title: string, onlyTitles = false): Promise<string[] | Record<string, unknown>[]> {
const body = await this.api.get({
action: 'query',
prop: 'categories',
cllimit: this.API_LIMIT,
titles: title
});
const page = this.getFirstItem(body.query.pages);
if (onlyTitles) return this.getList(page.categories);
return page.categories;
}
/**
* Searches the wiki.
* @param keyword - The keyword for the search.
* @param onlyTitles - Whether to only list the page titles.
*/
async search(keyword: string, onlyTitles = false): Promise<string[] | Record<string, unknown>[]> {
const body = await this.api.get({
action: 'query',
list: 'search',
srsearch: keyword,
srprop: 'timestamp',
srlimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.search);
return body.query.search;
}
/**
* Main wrapper for editing pages.
* @param params - Mandatory params for the edit.
*/
doEdit(params: {[key:string]: unknown}): Promise<Record<string, unknown>> {
return this.api.post({
action: 'edit',
bot: '',
minor: params.minor || '',
...params,
}, true);
}
/**
* Edits the contents of a page.
* @param options - The options for the edit.
* @param options.title - The title of the page to edit.
* @param options.content - The content of the edit.
* @param options.summary - The summary of the edit.
* @param options.minor - Whether to mark the edit as minor.
*/
edit({ title, content, summary, minor = true }: {
title: string,
content: string,
summary: string,
minor?: boolean
}): Promise<ResObject> {
return this.doEdit({ title: title, text: content, summary: summary, minor: minor });
}
/**
* Appends content to a page.
* @param options - The options for the edit.
* @param options.title - The title of the page to edit.
* @param options.content - The content of the edit.
* @param options.summary - The summary of the edit.
* @param options.minor - Whether to mark the edit as minor.
*/
prepend({ title, content, summary, minor = true }: {
title: string,
content: string,
summary: string,
minor?: boolean
}): Promise<ResObject> {
return this.doEdit({ title: title, prependtext: content, summary: summary, minor: minor });
}
/**
* Appends content to a page.
* @param options - The options for the edit.
* @param options.title - The title of the page to edit.
* @param options.content - The content of the edit.
* @param options.summary - The summary of the edit.
* @param options.minor - Whether to mark the edit as minor.
*/
append({ title, content, summary, minor = true }: {
title: string,
content: string,
summary: string,
minor?: boolean
}): Promise<ResObject> {
return this.doEdit({ title: title, appendtext: content, summary: summary, minor: minor });
}
/**
* Undoes a revision.
* @param options - The options for the undo.
* @param options.title - The title of the page of which revision to undo.
* @param options.revision - The revision to undo.
* @param options.summary - The summary of the edit.
*/
undo({ title, revision, summary }: {
title: string,
revision: string,
summary: string
}): Promise<ResObject> {
return this.doEdit({ title: title, undo: revision, summary: summary });
}
/**
* Deletes a page.
* @param options - The options for the deletion.
* @param options.title - The title of the page to delete.
* @param options.reason - The reason for deleting the page.
*/
delete({ title, reason = '' }: { title: string, reason?: string }): Promise<ResObject> {
return this.api.post({
action: 'delete',
title,
reason,
}, true);
}
/**
* Restore revisions of a deleted page.
* @param options - The options for the deletion.
* @param options.title - The title of the page to restore.
* @param options.reason - The reason for restoring this page.
*/
restore({ title, reason = '' }: { title: string, reason?: string }): Promise<ResObject> {
return this.api.post({
action: 'undelete',
title,
reason,
}, true);
}
/**
* Change the protection level of a page.
* @param options - The options for the protection.
* @param options.title - The title of the page to modify the protection level of.
* @param options.protections - The protections to set the page to.
* @param options.expiry - The expiry for the protection.
* @param options.reason - The reason for modifying the page's protection level.
* @param options.cascade - Whether to enable cascading protection.
*/
protect({ title, protections, expiry, reason, cascade = false }: {
title: string,
protections: {edit: string | undefined, move: string | undefined},
expiry: string,
reason: string,
cascade?: boolean
}): Promise<ResObject> {
const formattedProtections = [];
for (const [key, val] of Object.entries(protections)) {
formattedProtections.push(`${key}=${val}`);
}
return this.api.post({
action: 'protect',
title,
protections: formattedProtections.join('|'),
expiry,
reason,
cascade,
}, true);
}
/**
* Blocks a user.
* @param options - The options for the block.
* @param options.user - The username of the user to block.
* @param options.expiry - The expiry of the block.
* @param options.reason - The reason for the block.
* @param [options.allowUserTalk] - Whether to block the user from editing their own talk page.
* @param [options.autoblock] - Whether to automatically block the last used IP address, and any subsequent IP addresses they try to login from.
* @param [options.reblock] - Whether to overwrite the existing block, if the user is already blocked.
*/
block({ user, expiry, reason, allowUserTalk = false, autoblock = true, reblock = false }: {
user: string,
expiry: string,
reason: string,
allowUserTalk?: boolean,
autoblock?: boolean
reblock?: boolean
}): Promise<ResObject> {
return this.api.post({
action: 'block',
user,
expiry,
reason,
allowusertalk: allowUserTalk,
autoblock,
reblock,
}, true);
}
/**
* Unblocks a user.
* @param user - The username of the user to unblock.
* @param reason - The reason for the unblock.
*/
unblock(user: string, reason: string): Promise<ResObject> {
return this.api.post({
action: 'unblock',
user,
reason,
}, true);
}
/**
* Purges the cache of a list of pages.
* @param titles - The title(s) of the pages to delete.
*/
purge(titles: string[] | string): Promise<ResObject> {
const params: {
action: string, generator?: string, gcmtitle?: string[] | string,
pageids?: string, titles?: string
} = { action: 'purge' };
if (typeof titles === 'string' && titles.startsWith('Category:')) {
params.generator = 'categorymembers';
params.gcmtitle = titles;
} else {
if (!Array.isArray(titles)) titles = [titles];
if (typeof titles[0] === 'number') params.pageids = titles.join( '|' );
else params.titles = titles.join( '|' );
}
return this.api.post(params);
}
/**
* Sends an email to a user.
* @param options - The options for the email.
* @param options.user - The user to email.
* @param options.subject - The subject of the email.
* @param options.content - The content of the email.
*/
email({ user, subject, content }: {
user: string, subject: string, content: string
}): Promise<ResObject> {
return this.api.post({
action: 'emailuser',
target: user,
subject,
content,
ccme: '',
}, true);
}
/**
* Get all edits by a user.
* @param options - The options for the request.
* @param options.user - The users to retrieve contributions for.
* @param options.start - The start timestamp to return from.
* @param options.namespace - Only list contributions in these namespaces.
* @param options.onlyTitles - Whether to only list the page titles.
*/
async getUserContribs({ user, start, namespace = '', onlyTitles = false }: {
user: string,
start: string,
namespace?: string,
onlyTitles?: boolean
}): Promise<string[] | Record<string, unknown>> {
const body = await this.api.get({
action: 'query',
list: 'usercontribs',
ucuser: user,
ucstart: start,
uclimit: this.API_LIMIT,
ucnamespace: namespace
});
if (onlyTitles) this.getList(body.query.usercontribs);
return body.query.usercontribs;
}
/**
* Creates a new account.
* @param username - The username for the new account.
* @param password - The password for the new account.
*/
async createAccount(username: string, password: string): Promise<ResObject> {
const body = await this.api.get({
action: 'query',
meta: 'tokens',
type: 'createaccount'
});
return this.api.post({
action: 'createaccount',
createreturnurl: this.api.url,
createtoken: body.tokens.createaccounttoken,
username: username,
password: password,
retype: password
});
}
/**
* Moves a page.
* @param options - The options for the move.
* @param options.from - The page title to rename.
* @param options.to - The new page title.
* @param options.reason - The reason for moving this page.
*/
move({ from, to, reason }: {
from: string,
to: string,
reason: string
}): Promise<ResObject> {
return this.api.post({
action: 'move',
from,
to,
bot: '',
reason,
}, true);
}
/**
* Gets all images on the wiki.
* @param start - The image title to start enumerating from.
* @param onlyTitles - Whether to only list the image titles.
*/
async getImages(start: string, onlyTitles = false): Promise<string[] | ResObject[]> {
const body = await this.api.get({
action: 'query',
list: 'allimages',
aifrom: start,
ailimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.allimages);
return body.query.allimages;
}
/**
* Gets all images from an article.
* @param options - The options for the request.
* @param options.page - The page to get all its images from.
* @param options.onlyTitles - Whether to only list the image titles.
* @param options.otherOptions - Any other options for the request.
*/
async getImagesFromArticle({ page, onlyTitles = false, otherOptions = {} }: {
page: string,
onlyTitles?: boolean,
otherOptions?: Record<string, unknown>
}): Promise<string[] | ResObject[]> {
const body = await this.api.get({
action: 'query',
prop: 'images',
titles: page,
...otherOptions
});
const article = this.getFirstItem(body.query.pages);
if (onlyTitles) return this.getList(article.images);
return article.images;
}
/**
* Find all pages that use the given image title.
* @param fileName - Title to search.
* @param onlyTitles - Whether to only list the page titles.
*/
async getImageUsage(fileName: string, onlyTitles = false): Promise<string[] | Record<string, unknown>[]> {
const body = await this.api.get({
action: 'query',
list: 'imageusage',
iutitle: fileName,
iulimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.imageusage);
return body.query.imageusage;
}
/**
* Gets information about the current user.
*/
async whoAmI(): Promise<ResObject> {
const body = await this.api.get({
action: 'query',
meta: 'userinfo',
uiprop: 'groups|rights|ratelimits|editcount|realname|email'
});
return body.query.userinfo;
}
/**
* Gets information about a given user.
* @param username - The username of the account to look up.
*/
whoIs(username: string): Promise<ResObject> {
return this.whoAre([username]);
}
/**
* Gets information about multiple users.
* @param usernames - The usernames of the accounts to look up.
*/
async whoAre(usernames: string[]): Promise<ResObject> {
const body = await this.api.get({
action: 'query',
list: 'users',
ususers: usernames.join( '|' ),
usprop: 'blockinfo|groups|implicitgroups|rights|editcount|registration|emailable|gender'
});
return body.query.users;
}
/**
* Expands all templates within wikitext.
* @param text
* @param title
*/
async expandTemplates(text: string, title: string): Promise<string> {
const body = await this.api.get({
action: 'expandtemplates',
text,
title,
prop: 'parsetree'
});
return body.expandtemplates.parsetree;
}
/**
* Parses content and returns parser output.
* @param text - Text to parse.
* @param title - Title of page the text belongs to.
*/
async parse(text: string, title: string): Promise<string> {
const body = await this.api.get({
action: 'parse',
text,
title,
contentmodel: 'wikitext',
disablelimitreport: true
});
return body.parse.text;
}
/**
* Enumerate recent changes.
* @param start - The timestamp to start enumerating from.
* @param onlyTitles - Whether to only list the page titles.
*/
async getRecentChanges(start = '', onlyTitles = false): Promise<string[] | ResObject[]> {
const body = await this.api.get({
action: 'query',
list: 'recentchanges',
rcprop: 'title|timestamp|comments|user|flags|sizes',
rcstart: start,
rclimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.recentchanges);
return body.query.recentchanges;
}
/**
* Return general information about the site.
* @param props - Which information to get.
*/
async getSiteInfo(props: string | string[]): Promise<ResObject> {
if (typeof props === 'string') props = [props];
const body = await this.api.get({
action: 'query',
meta: 'siteinfo',
siprop: props.join('|')
});
return body.query;
}
/**
* Returns site statistics.
*/
getSiteStats(): Promise<ResObject> {
return this.getSiteInfo('statistics');
}
/**
* Gets the wiki's MediaWiki version.
*/
async getMwVersion(): Promise<string> {
const siteInfo = await this.getSiteInfo('general');
let version;
version = siteInfo && siteInfo.general && siteInfo.general.generator;
[version] = version.match(/[\d.]+/);
return version;
}
/**
* Returns a list of all pages from a query page.
* @param queryPage - The query page.
* @param onlyTitles - Whether to only list the page titles.
*/
async getQueryPage(queryPage: string, onlyTitles = false): Promise<string[] | ResObject[]> {
const body = await this.api.get({
action: 'query',
list: 'querypage',
qppage: queryPage,
qplimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.querypage.results);
return body.query.querypage.results;
}
/**
* Returns all external URLs from the given page.
* @param page - The page to get its external URLs from.
*/
async getExternalLinks(page: string): Promise<string[]> {
const body = await this.api.get({
action: 'query',
prop: 'extlinks',
titles: page,
ellimit: this.API_LIMIT
});
return this.getList(this.getFirstItem(body.query.pages).extlinks, '*');
}
/**
* Find all pages that link to the given page.
* @param page - Title to search.
* @param onlyTitles - Whether to only list the page titles.
*/
async getBackLinks(page: string, onlyTitles = false): Promise<string[] | ResObject[]> {
const body = await this.api.get({
action: 'query',
list: 'backlinks',
blnamespace: 0,
bltitle: page,
bllimit: this.API_LIMIT
});
if (onlyTitles) return this.getList(body.query.backlinks);
return body.query.backlinks;
}
}