mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-23 15:56:50 +00:00
6e4fd9cff7
Bug: T371041 Change-Id: Id18095d830f6b78770a4f9167268d9717352e7e4
67 lines
2.5 KiB
JavaScript
67 lines
2.5 KiB
JavaScript
// Captcha "errors" usually aren't errors. We simply don't know about them ahead of time,
|
|
// so we save once, then (if required) we get an error with a captcha back and try again after
|
|
// the user solved the captcha.
|
|
// TODO: ConfirmEdit API is horrible, there is no reliable way to know whether it is a "question"
|
|
// or "fancy" type of captcha. They all expose differently named properties in the
|
|
// API for different things in the UI. At this point we only support the SimpleCaptcha and
|
|
// FancyCaptcha which we very intuitively detect by the presence of a "url" property.
|
|
mw.loader.using( 'ext.visualEditor.targetLoader' ).then( () => {
|
|
mw.libs.ve.targetLoader.addPlugin( () => {
|
|
|
|
ve.init.mw.CaptchaSaveErrorHandler = function () {};
|
|
|
|
OO.inheritClass( ve.init.mw.CaptchaSaveErrorHandler, ve.init.mw.SaveErrorHandler );
|
|
|
|
ve.init.mw.CaptchaSaveErrorHandler.static.name = 'confirmEditCaptchas';
|
|
|
|
ve.init.mw.CaptchaSaveErrorHandler.static.matchFunction = function ( data ) {
|
|
const captchaData = ve.getProp( data, 'visualeditoredit', 'edit', 'captcha' );
|
|
|
|
return !!( captchaData && (
|
|
captchaData.url ||
|
|
captchaData.type === 'simple' ||
|
|
captchaData.type === 'question'
|
|
) );
|
|
};
|
|
|
|
ve.init.mw.CaptchaSaveErrorHandler.static.process = function ( data, target ) {
|
|
const captchaInput = new mw.libs.confirmEdit.CaptchaInputWidget(
|
|
ve.getProp( data, 'visualeditoredit', 'edit', 'captcha' )
|
|
);
|
|
ve.targetLinksToNewWindow( captchaInput.$element[ 0 ] );
|
|
|
|
function onCaptchaLoad() {
|
|
target.saveDialog.updateSize();
|
|
captchaInput.focus();
|
|
captchaInput.scrollElementIntoView();
|
|
}
|
|
|
|
captchaInput.on( 'load', onCaptchaLoad );
|
|
// Save when pressing 'Enter' in captcha field as it is single line.
|
|
captchaInput.on( 'enter', () => {
|
|
target.saveDialog.executeAction( 'save' );
|
|
} );
|
|
|
|
// Register extra fields
|
|
target.saveFields.wpCaptchaId = function () {
|
|
return captchaInput.getCaptchaId();
|
|
};
|
|
target.saveFields.wpCaptchaWord = function () {
|
|
return captchaInput.getCaptchaWord();
|
|
};
|
|
|
|
// ProcessDialog's error system isn't great for this yet.
|
|
target.saveDialog.clearMessage( 'api-save-error' );
|
|
target.saveDialog.showMessage( 'api-save-error', captchaInput.$element, { wrap: false } );
|
|
target.saveDialog.popPending();
|
|
onCaptchaLoad();
|
|
|
|
// Emit event for tracking. TODO: This is a bad design
|
|
target.emit( 'saveErrorCaptcha' );
|
|
};
|
|
|
|
ve.init.mw.saveErrorHandlerFactory.register( ve.init.mw.CaptchaSaveErrorHandler );
|
|
|
|
} );
|
|
} );
|