%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/varak.net/wiki.varak.net/resources/src/
Upload File :
Create Path :
Current File : /www/varak.net/wiki.varak.net/resources/src/mediawiki.special.changecredentials.js

/*!
 * JavaScript for change credentials form.
 */
( function () {
	mw.hook( 'htmlform.enhance' ).add( function ( $root ) {
		var api = new mw.Api();

		$root.find( '.mw-changecredentials-validate-password.oo-ui-fieldLayout' ).each( function () {
			var currentApiPromise,
				self = OO.ui.FieldLayout.static.infuse( $( this ) );

			self.getField().setValidation( function ( password ) {
				var d;

				if ( currentApiPromise ) {
					currentApiPromise.abort();
					currentApiPromise = undefined;
				}

				password = password.trim();

				if ( password === '' ) {
					self.setErrors( [] );
					return true;
				}

				d = $.Deferred();
				currentApiPromise = api.post( {
					action: 'validatepassword',
					password: password,
					formatversion: 2,
					errorformat: 'html',
					errorsuselocal: true,
					uselang: mw.config.get( 'wgUserLanguage' )
				} ).done( function ( resp ) {
					var pwinfo = resp.validatepassword,
						good = pwinfo.validity === 'Good',
						errors = [];

					currentApiPromise = undefined;

					if ( !good ) {
						pwinfo.validitymessages.map( function ( m ) {
							errors.push( new OO.ui.HtmlSnippet( m.html ) );
						} );
					}
					self.setErrors( errors );
					d.resolve( good );
				} ).fail( d.reject );

				return d.promise( { abort: currentApiPromise.abort } );
			} );
		} );
	} );
}() );

Zerion Mini Shell 1.0