Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/image-optimization/modules/optimization/assets/js/classes/ |
Upload File : |
import apiFetch from '@wordpress/api-fetch'; import APIError from './exceptions/APIError'; const v1Prefix = '/image-optimizer/v1'; class API { static async request( { path, data, method = 'POST' } ) { try { const response = await apiFetch( { path, method, data, } ); if ( ! response.success ) { throw new APIError( response.data.message ); } return response.data; } catch ( e ) { if ( e instanceof APIError ) { throw e; } else { throw new APIError( e.message ); } } } static async optimizeSingleImage( { imageId, reoptimize = false } ) { return API.request( { path: `${ v1Prefix }/optimize/image`, data: { imageId, reoptimize, 'image-optimization-optimize-image': window?.imageOptimizerControlSettings?.optimizeSingleImageNonce, }, } ); } static async restoreSingleImage( imageId ) { return API.request( { path: `${ v1Prefix }/backups/restore/${ imageId }`, data: { 'image-optimization-restore-single': window?.imageOptimizerControlSettings?.restoreSingleImageNonce, }, } ); } static async getOptimizationStatus( imageIds ) { return API.request( { path: `${ v1Prefix }/optimize/status`, data: { image_ids: imageIds, }, } ); } } export default API;