This repository has been archived by the owner on Jun 18, 2021. It is now read-only.
forked from macruzbar-zz/Wikimedia-Resource-Center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMediawiki:Gadget-wrcEditor-core.js
736 lines (686 loc) · 20.8 KB
/
Mediawiki:Gadget-wrcEditor-core.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
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
724
725
726
727
728
729
730
731
732
733
734
735
736
/**
* See:
* https://meta.wikimedia.org/wiki/MediaWiki:Gadget-wrcEditor.js
*/
( function () {
'use strict';
mw.loader.using( [
'mediawiki.api',
'oojs-ui',
'oojs-ui-core',
'oojs-ui.styles.icons-editing-core',
'ext.gadget.luaparse'
] ).done( function () {
var editButton, cleanRawEntry, gadgetMsg, getContentModuleQuery,
getRelevantRawEntry, parseContentModule, openWindow, uniqueId, userLang;
// Declare an asterisk to be used by mandatory editor fields
var asterisk = " *";
userLang = mw.config.get( 'wgUserLanguage' );
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 Wikimedia
* Resource Center.
*
* @return {Object}
*/
getContentModuleQuery = function () {
return {
action: 'query',
prop: 'revisions',
titles: 'Module:Wikimedia Resource Center/Content',
rvprop: 'content',
rvlimit: 1
};
};
/**
* Takes Lua-formatted Wikimedia Resource Center content and returns an
* abstract syntax tree.
*
* @param {Object} sourceblob The original API return
* @return {Object} Abstract syntax tree
*/
parseContentModule = function ( sourceblob ) {
var ast, i, raw;
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;
}
};
/**
* Picks through the abstract syntax tree and returns a specific requested
* entry
*
* @param {Object} entries The abstract syntax tree
* @param {string} uniqueId the entry we want to pick out.
*/
getRelevantRawEntry = function ( entries, uniqueId ) {
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 == 'unique_id' &&
entries[ i ].value.fields[ j ].value.value == uniqueId
) {
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++ ) {
if ( relevantRawEntry[ i ].key.name == 'audiences' ) {
entryData.audiences = [];
for (
j = 0;
j < relevantRawEntry[ i ].value.fields.length;
j++
) {
entryData.audiences.push(
relevantRawEntry[ i ].value.fields[ j ].value.value
);
}
} else {
entryData[ relevantRawEntry[ i ].key.name ] = relevantRawEntry[ i ].value.value;
}
}
return entryData;
};
/**
* Subclass ProcessDialog
*
* @class WrcEditor
* @extends OO.ui.ProcessDialog
*
* @constructor
* @param {Object} config
*/
function WrcEditor( config ) {
this.header = config.header;
this.description = '';
this.contact = '';
this.related = '';
this.category = '';
this.audiences = [];
if ( config.unique_id ) {
this.uniqueId = config.unique_id;
}
// If this is a new entry, there is no unique ID until the page is
// saved. This is how we know it's a new entry.
if ( config.description ) {
this.description = config.description;
}
if ( config.contact ) {
this.contact = config.contact;
}
if ( config.related ) {
this.related = config.related;
}
if ( config.category ) {
this.category = config.category;
}
if ( config.audiences ) {
this.audiences = config.audiences;
}
if ( config.community ) {
this.community = config.community;
}
WrcEditor.super.call( this, config );
}
OO.inheritClass( WrcEditor, OO.ui.ProcessDialog );
WrcEditor.static.name = 'wrcEditor';
WrcEditor.static.title = gadgetMsg[ 'editor-header' ];
WrcEditor.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.
*/
WrcEditor.prototype.initialize = function () {
var dialog, fieldAudiencesSelected, fieldCommunityEvaluate, i;
dialog = this;
WrcEditor.super.prototype.initialize.call( this );
this.content = new OO.ui.PanelLayout( {
padded: true,
expanded: false
} );
this.fieldHeader = new OO.ui.TextInputWidget( {
value: this.header
} );
this.fieldDescription = new OO.ui.MultilineTextInputWidget( {
value: this.description,
rows: 5
} );
this.fieldRelated = new OO.ui.TextInputWidget( {
value: this.related
} );
this.fieldContact = new OO.ui.TextInputWidget( {
value: this.contact
} );
this.fieldCategory = new OO.ui.DropdownInputWidget( {
options: [
new OO.ui.MenuOptionWidget( {
data: 'Contact and Questions',
label: gadgetMsg[ 'category-contact-and-questions' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Skills Development',
label: gadgetMsg[ 'category-skills-development' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Grants Support',
label: gadgetMsg[ 'category-grants-support' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Programs Support',
label: gadgetMsg[ 'category-programs-support' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Software Basics',
label: gadgetMsg[ 'category-software-basics' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Software Development',
label: gadgetMsg[ 'category-software-development' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Technical Infrastructure',
label: gadgetMsg[ 'category-technical-infrastructure' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Global Reach Partnerships',
label: gadgetMsg[ 'category-global-reach-partnerships' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Legal',
label: gadgetMsg[ 'category-legal' ]
} ),
new OO.ui.MenuOptionWidget( {
data: 'Communications',
label: gadgetMsg[ 'category-communications' ]
} )
]
} );
this.fieldCategory.setValue( this.category );
fieldAudiencesSelected = [];
for ( i = 0; i < this.audiences.length; i++ ) {
fieldAudiencesSelected.push(
{ data: this.audiences[ i ], label: gadgetMsg[ 'audience-' + this.audiences[ i ].toLowerCase().replace( / /g, '-' ) ] }
);
}
this.fieldAudiences = new OO.ui.MenuTagMultiselectWidget( {
selected: fieldAudiencesSelected,
options: [
{ data: 'For program coordinators', label: gadgetMsg[ 'audience-for-program-coordinators' ] },
{ data: 'For contributors', label: gadgetMsg[ 'audience-for-contributors' ] },
{ data: 'For developers', label: gadgetMsg[ 'audience-for-developers' ] },
{ data: 'For affiliate organizers', label: gadgetMsg[ 'audience-for-affiliate-organizers' ] }
]
} );
fieldCommunityEvaluate = function () {
if ( dialog.community == 'no' ) {
return true;
}
return false;
};
this.fieldCommunity = new OO.ui.CheckboxInputWidget( {
selected: fieldCommunityEvaluate()
} );
// This will be used to make a notice for required fields
//this.fieldNotice = new OO.ui.HiddenInputWidget( {} );
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.fieldHeader,
{
label: gadgetMsg[ 'editor-field-header' ],
align: 'top',
help: gadgetMsg[ 'editor-help-header' ]
}
),
new OO.ui.FieldLayout(
this.fieldDescription,
{
label: gadgetMsg[ 'editor-field-description' ],
align: 'top',
help: gadgetMsg[ 'editor-help-description' ]
}
),
new OO.ui.FieldLayout(
this.fieldContact,
{
label: gadgetMsg[ 'editor-field-contact' ],
align: 'top',
help: gadgetMsg[ 'editor-help-contact' ]
}
),
new OO.ui.FieldLayout(
this.fieldRelated,
{
label: gadgetMsg[ 'editor-field-relatedpages' ],
align: 'top',
help: gadgetMsg[ 'editor-help-relatedpages' ]
}
),
new OO.ui.FieldLayout(
this.fieldCategory,
{
label: gadgetMsg[ 'editor-field-category' ] + asterisk,
align: 'top'
}
),
new OO.ui.FieldLayout(
this.fieldAudiences,
{
label: gadgetMsg[ 'editor-field-audiences' ] + asterisk,
align: 'top'
}
),
new OO.ui.FieldLayout(
this.fieldCommunity,
{
label: gadgetMsg[ 'editor-field-wmf' ],
align: 'inline'
}
)/*,
new OO.ui.FieldLayout(
this.fieldNotice,
{
label: gadgetMsg[ 'required-field-notice' ],
align: 'top'
}
)*/
]
} );
if ( this.uniqueId ) {
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
*
*/
WrcEditor.prototype.getBodyHeight = function () {
return 660;
};
/**
* In the event "Select" is pressed
*
*/
WrcEditor.prototype.getActionProcess = function ( action ) {
var dialog = this;
if ( action === 'continue' && dialog.fieldHeader.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 the Lua table.
*
* @param {string} deleteFlag A string that says 'delete' (or anything,
* really) if the entry being edited is flagged for deletion
*/
WrcEditor.prototype.saveItem = function ( deleteFlag ) {
var dialog = this;
dialog.pushPending();
new mw.Api().get( getContentModuleQuery() ).done( function ( data ) {
var i, j, editSummary, entries, insertInPlace, insertInPlacei18n,
itemIndex, generateKeyValuePair, generateTranslateStuff,
manifest = [],
processWorkingEntry, raw, sanitizeInput,
workingEntry;
/**
* 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, ' = ' );
if ( k == 'audiences' ) {
jsonarray = JSON.stringify( v );
// Lua uses { } for "arrays"
jsonarray = jsonarray.replace( '[', '{' );
jsonarray = jsonarray.replace( ']', '}' );
// Style changes (single quotes, spaces after commas)
jsonarray = jsonarray.replace( /\"/g, '\'' );
jsonarray = jsonarray.replace( /,/g, ', ' );
// Basic input sanitation
jsonarray = sanitizeInput( jsonarray );
res += jsonarray;
} else {
v = sanitizeInput( v );
v = v.replace( /'/g, '\\\'' );
res += '\'' + v + '\'';
}
res += ',\n';
return res;
};
generateTranslateStuff = function ( k, v, uid ) {
return '* <trans' + 'late><!--T:content-' +
uid +
'-' +
k +
'--> ' +
v +
'</trans' + 'late>\n';
};
/**
* Compares a given Wikimedia Resource Center entry against the
* edit fields and applies changes where relevant.
*
* @param {Object} workingEntry the entry being worked on
* @return {Object} The same entry but with modifications
*/
processWorkingEntry = function ( workingEntry ) {
workingEntry.header = dialog.fieldHeader.getValue();
if ( dialog.fieldDescription.getValue() ) {
workingEntry.description = dialog.fieldDescription.getValue();
} else if ( !dialog.fieldDescription.getValue() && workingEntry.description ) {
delete workingEntry.description;
}
if ( dialog.fieldContact.getValue() ) {
workingEntry.contact = dialog.fieldContact.getValue();
} else if ( !dialog.fieldContact.getValue() && workingEntry.contact ) {
delete workingEntry.contact;
}
if ( dialog.fieldRelated.getValue() ) {
workingEntry.related = dialog.fieldRelated.getValue();
} else if ( !dialog.fieldRelated.getValue() && workingEntry.related ) {
delete workingEntry.related;
}
if ( dialog.fieldCategory.getValue() ) {
workingEntry.category = dialog.fieldCategory.getValue();
} else if ( !dialog.fieldCategory.getValue() && workingEntry.category ) {
delete workingEntry.category;
}
if ( dialog.fieldAudiences.getValue() ) {
workingEntry.audiences = dialog.fieldAudiences.getValue();
} else if ( !dialog.fieldAudiences.getValue() && workingEntry.audiences ) {
delete workingEntry.audiences;
}
if ( dialog.fieldCommunity.isSelected() ) {
workingEntry.community = 'no';
} else if ( !dialog.fieldCommunity.isSelected() && workingEntry.community ) {
delete workingEntry.community;
}
return workingEntry;
};
// Cycle through existing entries. If we are editing an existing
// entry, that entry will be modified in place.
entries = parseContentModule( data.query.pages );
for ( i = 0; i < entries.length; i++ ) {
workingEntry = cleanRawEntry( entries[ i ].value.fields );
if ( workingEntry.unique_id == dialog.uniqueId ) {
if ( deleteFlag ) {
editSummary = 'Removing entry '.concat( workingEntry.header );
} else {
workingEntry = processWorkingEntry( workingEntry );
editSummary = 'Editing entry '.concat( workingEntry.header );
}
}
if ( workingEntry.unique_id != dialog.uniqueId || !deleteFlag ) {
manifest.push( workingEntry );
}
}
// No unique ID means this is a new entry
if ( !dialog.uniqueId ) {
workingEntry = {
unique_id: Math.random().toString( 36 ).substring( 2 )
};
workingEntry = processWorkingEntry( workingEntry );
editSummary = 'Adding entry '.concat( workingEntry.header );
manifest.push( workingEntry );
}
// Re-generate the Lua table based on `manifest`
// Also re-generate the translation string page
insertInPlace = 'return {\n';
insertInPlacei18n = '==Content==\n';
for ( i = 0; i < manifest.length; i++ ) {
insertInPlace += '\t{\n';
if ( manifest[ i ].unique_id ) {
insertInPlace += generateKeyValuePair(
'unique_id',
manifest[ i ].unique_id
);
}
if ( manifest[ i ].header ) {
insertInPlace += generateKeyValuePair(
'header',
manifest[ i ].header
);
insertInPlacei18n += generateTranslateStuff(
'header',
manifest[ i ].header,
manifest[ i ].unique_id
);
}
if ( manifest[ i ].description ) {
insertInPlace += generateKeyValuePair(
'description',
manifest[ i ].description
);
insertInPlacei18n += generateTranslateStuff(
'description',
manifest[ i ].description,
manifest[ i ].unique_id
);
}
if ( manifest[ i ].contact ) {
insertInPlace += generateKeyValuePair(
'contact',
manifest[ i ].contact
);
insertInPlacei18n += generateTranslateStuff(
'contact',
manifest[ i ].contact,
manifest[ i ].unique_id
);
}
if ( manifest[ i ].related ) {
insertInPlace += generateKeyValuePair(
'related',
manifest[ i ].related
);
insertInPlacei18n += generateTranslateStuff(
'related',
manifest[ i ].related,
manifest[ i ].unique_id
);
}
if ( manifest[ i ].category ) {
insertInPlace += generateKeyValuePair(
'category',
manifest[ i ].category
);
}
if ( manifest[ i ].audiences ) {
insertInPlace += generateKeyValuePair(
'audiences',
manifest[ i ].audiences
);
}
if ( manifest[ i ].community ) {
insertInPlace += generateKeyValuePair(
'community',
manifest[ i ].community
);
}
insertInPlace += '\t},\n';
}
insertInPlace += '}';
new mw.Api().postWithToken(
'csrf',
{
action: 'edit',
nocreate: true,
summary: editSummary,
pageid: 10355457, // Module:Wikimedia_Resource_Center/Content
text: insertInPlace,
contentmodel: 'Scribunto'
}
).done( function () {
dialog.close();
new mw.Api().postWithToken(
'csrf',
{
action: 'edit',
nocreate: true,
summary: editSummary,
pageid: 10405434, // Template:I18n/Wikimedia_Resource_Center
section: 4, // ==Content==
text: insertInPlacei18n
}
).done( function () {
// 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-editfailed' ] );
dialog.close();
} );
} );
};
/**
* Event handler for when someone clicks on an edit icon/button
*
* @param {Object} config
*/
openWindow = function ( config ) {
var wrcEditor, windowManager;
config.size = 'large';
wrcEditor = new WrcEditor( config );
windowManager = new OO.ui.WindowManager();
$( 'body' ).append( windowManager.$element );
windowManager.addWindows( [ wrcEditor ] );
windowManager.openWindow( wrcEditor );
};
$( '.wrc-icons' ).each( function () {
var $icon = $( this ),
editButton;
editButton = new OO.ui.ButtonWidget( {
framed: false,
icon: 'edit'
} ).on( 'click', function () {
new mw.Api().get( getContentModuleQuery() ).done( function ( data ) {
var entryData, uniqueId;
uniqueId = editButton.$element
.closest( '.wrc-card' )
.data( 'wrc-unique-id' );
entryData = cleanRawEntry(
getRelevantRawEntry(
parseContentModule( data.query.pages ),
uniqueId
)
);
openWindow( entryData );
} );
} );
$icon.append( editButton.$element );
} );
$( '.wrc-add-button' ).each( function () {
var $addButton = $( this ),
addButton;
addButton = new OO.ui.ButtonWidget( {
icon: 'add',
label: gadgetMsg[ 'editor-addbutton' ],
flags: [ 'primary', 'progressive' ]
} ).on( 'click', function () {
var category = addButton.$element
.closest( '.wrc-add-button' )
.data( 'wrc-category' );
openWindow( { category: category } );
} );
$addButton.css( 'margin', '1.125em' );
$addButton.append( addButton.$element );
} );
} );
} );
}() );