-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMediawiki:Gadget-wrcAddNewGroup.js
623 lines (577 loc) · 18.3 KB
/
Mediawiki:Gadget-wrcAddNewGroup.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
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
/**
* Gadget (based on JavaScript) to add new group (ANG) to
* [[Module:Wikimedia Resource Center/Groups]] on the Wikimedia
* Resource Center (WRC).
*/
( function () {
'use strict';
if ( mw.config.values.wgPageName.split('/')[0] == 'Connect' ) {
mw.loader.using( [
'ext.gadget.luaparse',
'mediawiki.api',
'oojs-ui',
'oojs-ui-core',
'oojs-ui.styles.icons-editing-core'
] ).done( function () {
var cleanRawEntry, gadgetMsg, getContentGroups,
getContentModule, getRelevantRawEntry, openWindow,
userLang;
userLang = mw.config.get( 'wgUserLanguage' );
/**
* Query the I18n Template for keywords to be used in this gadget.
* NOTE: The strings must be marked for translation before the keys/value
* pair works in the gadget.
*/
new mw.Api().get( {
action: 'query',
list: 'messagecollection',
mcgroup: 'page-Template:I18n/Wikimedia_Resource_Center',
mclanguage: userLang
} ).done( function ( data ) {
var i, res, key, val, gadgetMsg = {};
res = data.query.messagecollection;
for ( i = 0; i < res.length; i++ ) {
key = res[ i ].key.replace( 'Template:I18n/Wikimedia_Resource_Center/', '' );
val = res[ i ].translation;
if ( !val ) {
// No translation; fall back to English
val = res[ i ].definition;
}
gadgetMsg[ key ] = val;
}
/**
* Provides API parameters for getting the content of the
* [[Module:Wikimedia Resource Center/Groups]] page
*
* @return {Object}
*/
getContentGroups = function () {
return {
action: 'query',
prop: 'revisions',
titles: 'Module:Wikimedia Resource Center/Groups',
rvprop: 'content',
rvlimit: 1
};
};
/**
* Loops through the API response and returns a specific requested entry
*
* @param {Object} entries API response.
* @param {string} username The entry we want to pick out.
*/
getRelevantRawEntry = function ( entries, name ) {
var i, j;
// Look through the individual entries
for ( i = 0; i < entries.length; i++ ) {
// Loop through the individual key-value pairs within each entry
for ( j = 0; j < entries[ i ].value.fields.length; j++ ) {
if (
entries[ i ].value.fields[ j ].key.name == 'name' &&
entries[ i ].value.fields[ j ].value.value == name
) {
return entries[ i ].value.fields;
}
}
}
};
/**
* Take a raw entry from the abstract syntax tree and make it an object
* that is easier to work with.
*
* @param {Object} relevantRawEntry the raw entry from the AST
* @return {Object} The cleaned up object
*/
cleanRawEntry = function ( relevantRawEntry ) {
var entryData = {},
i, j;
for ( i = 0; i < relevantRawEntry.length; i++ ) {
entryData[ relevantRawEntry[ i ].key.name ] = relevantRawEntry[ i ].value.value;
}
return entryData;
};
/**
* Get an entire content of the [[Module:Wikimedia Resource Center/Groups]] page
*
* @param {Object} sourceblob The original API return
* @return {Object} raw An Abstract Syntax Tree
*/
getContentModule = function ( sourceblob ) {
var i, raw, ast;
for ( i in sourceblob ) { // should only be one result
raw = sourceblob[ i ].revisions[ 0 ][ '*' ];
ast = luaparse.parse( raw );
return ast.body[ 0 ].arguments[ 0 ].fields;
}
};
/**
* Subclass ProcessDialog
*
* @class WrcAddNewGroup
* @extends OO.ui.ProcessDialog
*
* @constructor
* @param {Object} config
*/
function WrcAddNewGroup( config ) {
this.type = 'group'; // default here is group
this.name = '';
this.description = '';
this.icon = '';
this.facebook = '';
this.twitter = '';
this.facebook = '';
if ( config.name ) {
this.name = config.name;
}
if ( config.description ) {
this.description = config.description;
}
if ( config.icon ) {
this.icon = config.icon;
}
if ( config.facebook ) {
this.facebook = config.facebook;
}
if ( config.twitter ) {
this.twitter = config.twitter;
}
if ( config.youtube ) {
this.youtube = config.youtube;
}
WrcAddNewGroup.super.call( this, config );
}
OO.inheritClass( WrcAddNewGroup, OO.ui.ProcessDialog );
WrcAddNewGroup.static.name = 'wrcAddNewGroup';
WrcAddNewGroup.static.title = gadgetMsg[ 'editor-ang-button' ];
WrcAddNewGroup.static.actions = [
{
action: 'continue',
modes: 'edit',
label: gadgetMsg[ 'editor-save' ],
flags: [ 'primary', 'constructive' ]
},
{
action: 'cancel',
modes: 'edit',
label: gadgetMsg[ 'editor-cancel' ],
flags: 'safe'
}
];
/**
* Use the initialize() method to add content to the dialog's $body,
* to initialize widgets, and to set up event handlers.
*/
WrcAddNewGroup.prototype.initialize = function () {
var dialog;
dialog = this;
WrcAddNewGroup.super.prototype.initialize.call( this );
this.content = new OO.ui.PanelLayout( {
padded: true,
expanded: false
} );
this.fieldType = new OO.ui.TextInputWidget( {
value: this.type,
indicator: 'required',
required: true
} );
this.fieldName = new OO.ui.TextInputWidget( {
value: this.name,
indicator: 'required',
required: true
} );
this.fieldDescription = new OO.ui.MultilineTextInputWidget( {
value: this.description,
rows: 5,
indicator: 'required',
required: true
} );
this.fieldIcon = new OO.ui.TextInputWidget( {
value: this.icon
} );
// Adding form fields to get social media links
this.fieldFacebook = new OO.ui.TextInputWidget( {
value: this.facebook
} );
this.fieldTwitter = new OO.ui.TextInputWidget( {
value: this.twitter
} );
this.fieldYouTube = new OO.ui.TextInputWidget( {
value: this.youtube
} );
this.deleteButton = new OO.ui.ButtonWidget( {
label: gadgetMsg[ 'editor-remove-entry' ],
icon: 'trash',
flags: [ 'destructive' ]
} ).on( 'click', function () {
new OO.ui.confirm(
gadgetMsg[ 'editor-remove-confirm' ]
).done( function ( confirmed ) {
if ( confirmed ) {
dialog.saveItem( 'delete' );
}
} );
} );
// Append things to fieldSet
this.fieldSet = new OO.ui.FieldsetLayout( {
items: [
new OO.ui.FieldLayout(
this.fieldName,
{
label: gadgetMsg[ 'editor-ang-fieldname' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fieldname-help' ]
}
),
new OO.ui.FieldLayout(
this.fieldDescription,
{
label: gadgetMsg[ 'editor-ang-fielddescription' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fielddescription-help' ]
}
),
new OO.ui.FieldLayout(
this.fieldIcon,
{
label: gadgetMsg[ 'editor-ang-fieldicon' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fieldicon-help' ]
}
),
new OO.ui.FieldLayout(
this.fieldFacebook,
{
label: gadgetMsg[ 'editor-ang-fieldfacebook' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fieldfacebook-help' ]
}
),
new OO.ui.FieldLayout(
this.fieldTwitter,
{
label: gadgetMsg[ 'editor-ang-fieldtwitter' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fieldtwitter-help' ]
}
),
new OO.ui.FieldLayout(
this.fieldYouTube,
{
label: gadgetMsg[ 'editor-ang-fieldyoutube' ],
align: 'top',
help: gadgetMsg[ 'editor-ang-fieldyoutube-help' ]
}
)
]
} );
if ( this.name ) {
this.fieldSet.addItems( [
new OO.ui.FieldLayout(
this.deleteButton
)
] );
}
// When everything is done
this.content.$element.append( this.fieldSet.$element );
this.$body.append( this.content.$element );
};
/**
* Set custom height for the modal window
*
*/
WrcAddNewGroup.prototype.getBodyHeight = function () {
return 550; // NOTE: Remember to add height when new fields are added
};
/**
* In the event "Select" is pressed
*/
WrcAddNewGroup.prototype.getActionProcess = function ( action ) {
var dialog = this;
if ( action === 'continue' && dialog.fieldType.getValue() ) {
return new OO.ui.Process( function () {
dialog.saveItem();
} );
} else {
return new OO.ui.Process( function () {
dialog.close();
} );
}
return NewItemDialog.parent.prototype.getActionProcess.call( this, action );
};
/**
* Save the changes to [[Module:Wikimedia Resource Center/Groups]] page.
*/
WrcAddNewGroup.prototype.saveItem = function ( deleteFlag ) {
var dialog = this, content, insertGroupPage ='',
generateGrouppageData, gpName;
dialog.pushPending();
new mw.Api().get( getContentGroups() ).done( function ( data ) {
var i, insertInPlace, sanitizeInput, processWorkingEntry,
editSummary, manifest = [], workingEntry,
generateKeyValuePair, entries, pageName;
/**
* Sanitizes input for saving to wiki
*
* @param {string} s
*
* @return {string}
*/
sanitizeInput = function ( s ) {
return s
.replace( /\\/g, '\\\\' )
.replace( /\n/g, '<br />' );
};
/**
* Creates Lua-style key-value pairs, including converting the
* audiences array into a proper sequential table.
*
* @param {string} k The key
* @param {string} v The value
*
* @return {string}
*/
generateKeyValuePair = function ( k, v ) {
var res, jsonarray;
res = '\t\t'.concat( k, ' = ' );
v = sanitizeInput( v );
v = v.replace( /'/g, '\\\'' );
res += '\'' + v + '\'';
res += ',\n';
return res;
};
/**
* Compares a given Wikimedia Resource Center entry against the
* edit fields and applies changes where necessary. Also, build the
* the group page Template here in order to create the group.
*
* @param {Object} workingEntry the entry being worked on
* @return {Object} The same entry but with modifications
*/
processWorkingEntry = function ( workingEntry ) {
workingEntry.type = dialog.fieldType.getValue();
if ( dialog.fieldType.getValue() ) {
workingEntry.type = dialog.fieldType.getValue();
} else if ( !dialog.fieldType.getValue() && workingEntry.type ) {
delete workingEntry.type;
}
if ( dialog.fieldName.getValue() ) {
workingEntry.name = dialog.fieldName.getValue();
} else if ( !dialog.fieldName.getValue() && workingEntry.name ) {
delete workingEntry.name;
}
if ( dialog.fieldDescription.getValue() ) {
workingEntry.description = dialog.fieldDescription.getValue();
} else if ( !dialog.fieldDescription.getValue() && workingEntry.description ) {
delete workingEntry.description;
}
if ( dialog.fieldIcon.getValue() ) {
workingEntry.icon = dialog.fieldIcon.getValue();
} else if ( !dialog.fieldIcon.getValue() && workingEntry.icon ) {
delete workingEntry.icon;
}
if ( dialog.fieldFacebook.getValue() ) {
workingEntry.facebook = dialog.fieldFacebook.getValue();
} else if ( !dialog.fieldFacebook.getValue() && workingEntry.facebook ) {
delete workingEntry.facebook;
}
if ( dialog.fieldTwitter.getValue() ) {
workingEntry.twitter = dialog.fieldTwitter.getValue();
} else if ( !dialog.fieldTwitter.getValue() && workingEntry.twitter ) {
delete workingEntry.twitter;
}
if ( dialog.fieldYouTube.getValue() ) {
workingEntry.youtube = dialog.fieldYouTube.getValue();
} else if ( !dialog.fieldYouTube.getValue() && workingEntry.youtube ) {
delete workingEntry.youtube;
}
return workingEntry;
};
// Cycle through existing entries. If we are editing an existing
// entry, that entry will be modified in place.
entries = getContentModule( data.query.pages );
for ( i = 0; i < entries.length; i++ ) {
workingEntry = cleanRawEntry( entries[ i ].value.fields );
if ( workingEntry.name == dialog.name ) {
if ( deleteFlag ) {
editSummary = 'Removing entry: '.concat( workingEntry.name );
} else {
workingEntry = processWorkingEntry( workingEntry );
editSummary = 'Editing entry: '.concat( workingEntry.name );
}
}
if ( workingEntry.name != dialog.name || !deleteFlag ) {
manifest.push( workingEntry );
}
}
// No unique group name means this is a new entry
if ( !dialog.name ) {
workingEntry = {};
workingEntry = processWorkingEntry( workingEntry );
editSummary = gadgetMsg[ 'editor-ang-preeditsummary' ].concat( workingEntry.name );
manifest.push( workingEntry );
}
// Re-generate the Lua table based on `manifest`
insertInPlace = 'return {\n';
for ( i = 0; i < manifest.length; i++ ) {
insertInPlace += '\t{\n';
if ( manifest[ i ].type ) {
insertInPlace += generateKeyValuePair(
'type',
manifest[ i ].type
);
}
if ( manifest[ i ].name ) {
insertInPlace += generateKeyValuePair(
'name',
manifest[ i ].name.split(" ").join("_")
);
// Save the page name
pageName = 'Connect/' + manifest[ i ].name;
gpName = manifest[ i ].name.split(" ").join("_");
}
if ( manifest[ i ].description ) {
insertInPlace += generateKeyValuePair(
'description',
manifest[ i ].description
);
}
if ( manifest[ i ].icon ) {
insertInPlace += generateKeyValuePair(
'icon',
manifest[ i ].icon
);
}
if ( manifest[ i ].facebook ) {
insertInPlace += generateKeyValuePair(
'facebook',
manifest[ i ].facebook
);
}
if ( manifest[ i ].twitter ) {
insertInPlace += generateKeyValuePair(
'twitter',
manifest[ i ].twitter
);
}
if ( manifest[ i ].youtube ) {
insertInPlace += generateKeyValuePair(
'youtube',
manifest[ i ].youtube
);
}
insertInPlace += '\t},\n';
}
insertInPlace += '}';
// Build the invokation of the Lua script here
insertGroupPage += '<!--\nTo edit this page, please do so on [[Connect]]. ';
insertGroupPage += 'Click on the little pencil on the card corresponding ';
insertGroupPage += 'to the group and edit the details.\n-->\n';
insertGroupPage += '{{#invoke:Connect Groups|group_page|';
insertGroupPage += gpName;
insertGroupPage += '}}\n\n[[Category:Connect groups|{{SUBPAGENAME}}]]';
new mw.Api().postWithToken(
'csrf',
{
action: 'edit',
nocreate: true,
summary: editSummary,
pageid: 10588351, // Module:Wikimedia_Resource_Center/Groups
text: insertInPlace,
contentmodel: 'Scribunto'
}
).done( function () {
dialog.close();
// Purge the cache of the page from which the edit was made
new mw.Api().postWithToken(
'csrf',
{ action: 'purge', titles: mw.config.values.wgPageName }
).done( function () {
location.reload();
} );
} ).fail( function () {
alert( gadgetMsg[ 'editor-ang-failed-alert' ] );
dialog.close();
} );
// Now create the group page as sub-page of connect
new mw.Api().postWithToken(
'csrf',
{
action: 'edit',
title: pageName, // Page name as sub-page of Connect
summary: editSummary,
text: insertGroupPage,
contentmodel: 'wikitext'
}
).done( function () {
dialog.close();
// Purge the cache of the page from which the edit was made
new mw.Api().postWithToken(
'csrf',
{ action: 'purge', titles: mw.config.values.wgPageName }
).done( function () {
location.reload();
} );
} ).fail( function () {
alert( gadgetMsg[ 'editor-ang-failed-alert' ] );
dialog.close();
} );
} );
};
/**
* Event handler for when someone clicks on an edit icon/button
*
* @param {Object} config
*/
openWindow = function ( config ) {
var wrcAddNewGroup, windowManager;
config.size = 'large';
wrcAddNewGroup = new WrcAddNewGroup( config );
windowManager = new OO.ui.WindowManager();
$( 'body' ).append( windowManager.$element );
windowManager.addWindows( [ wrcAddNewGroup ] );
windowManager.openWindow( wrcAddNewGroup );
};
// Edit user content via the form
$( '.group-edit-icon' ).each( function () {
var $icon = $( this ),
editButton;
editButton = new OO.ui.ButtonWidget( {
framed: false,
icon: 'edit'
} ).on( 'click', function () {
new mw.Api().get( getContentGroups() ).done( function ( data ) {
var entryData, gpName, content;
gpName = editButton.$element
.closest( '.wrc-card' )
.data( 'wrc-unique-id' );
entryData = cleanRawEntry(
getRelevantRawEntry(
getContentModule( data.query.pages ),
gpName
)
);
openWindow( entryData );
} );
} );
$icon.css( 'float', 'right' );
$icon.append( editButton.$element );
} );
// Open dialog when "Add new group" is clicked
$( '.wrc-ag-button' ).each( function () {
var $addButton = $( this ),
addButton;
addButton = new OO.ui.ButtonWidget( {
icon: 'add',
label: gadgetMsg[ 'editor-ang-button' ],
flags: [ 'primary', 'progressive' ]
} ).on( 'click', function () {
openWindow( {} );
} );
$addButton.css( 'margin', '1.125em' );
$addButton.append( addButton.$element );
} );
} );
} );
}
}() );