MediaWiki:Common.js: Difference between revisions
(Changes the code) |
(Changed the code again....) |
||
Line 6: | Line 6: | ||
api.postWithToken('csrf', { | api.postWithToken('csrf', { | ||
action: 'edit', | action: 'edit', | ||
title: 'DMZ:Users', | title: 'DMZ:Users', | ||
appendtext: '\n* ' + mw.config.get('wgUserName'), // Append the current user's name | appendtext: '\n* ' + mw.config.get('wgUserName'), // Append the current user's name | ||
summary: 'User self-added to DMZ' | summary: 'User self-added to DMZ' | ||
}).done(function (response) { | }).done(function (response) { | ||
if (response.edit && response.edit.result === 'Success') { | if (response.edit && response.edit.result === 'Success') { | ||
alert('You have | alert('You have been added to the DMZ.'); | ||
// Notify administrators | |||
api.postWithToken('csrf', { | |||
action: 'edit', | |||
title: 'User_talk:Admin', | |||
appendtext: '\n* ' + mw.config.get('wgUserName') + ' added themselves to the DMZ.', | |||
summary: 'Notifying admins of DMZ addition' | |||
}); | |||
} else { | } else { | ||
alert('Error: Unable to add to DMZ.'); | alert('Error: Unable to add to DMZ.'); |
Revision as of 12:32, 8 May 2024
/* Any JavaScript here will be loaded for all users on every page load. */ mw.loader.using(['mediawiki.api']).then(function () { function addToDMZ() { var api = new mw.Api(); api.postWithToken('csrf', { action: 'edit', title: 'DMZ:Users', appendtext: '\n* ' + mw.config.get('wgUserName'), // Append the current user's name summary: 'User self-added to DMZ' }).done(function (response) { if (response.edit && response.edit.result === 'Success') { alert('You have been added to the DMZ.'); // Notify administrators api.postWithToken('csrf', { action: 'edit', title: 'User_talk:Admin', appendtext: '\n* ' + mw.config.get('wgUserName') + ' added themselves to the DMZ.', summary: 'Notifying admins of DMZ addition' }); } else { alert('Error: Unable to add to DMZ.'); } }).fail(function () { alert('Error contacting the API.'); }); } $(document).on('click', '.addToDMZLink', function (e) { e.preventDefault(); addToDMZ(); }); });