PluginProbe
Media Cloud Sync / 1.4.1
Media Cloud Sync v1.4.1
1.4.1 1.4.0 1.3.12 1.3.11 1.3.10 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.2.0 1.2.10 1.2.11 1.2.12 1.2.13 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 All 35 releases
← All changes | includes/api.php +534 -93 1.2.41.4.1 View file →
@@ -30,20 +30,39 @@
30 30 */
31 31
32 32 public function register_routes() {
33 33 $this->add_route( '/verifyCredentials', 'verifyCredentials', 'POST' );
34 - $this->add_route( '/permissions/checkExist', 'verifyBucketExist', 'POST' );
35 - $this->add_route( '/permissions/addNewBucket', 'createBucket', 'POST' );
36 - $this->add_route( '/permissions/write', 'verifyObjectWrite', 'POST' );
34 + $this->add_route( '/bucket/checkExist', 'verifyBucketExist', 'POST' );
35 + $this->add_route( '/bucket/addNew', 'createBucket', 'POST' );
36 + $this->add_route( '/permissions/status', 'verifyStatus', 'POST' );
37 + $this->add_route( '/permissions/write', 'verifyWrite', 'POST' );
37 38 $this->add_route( '/permissions/delete', 'verifyObjectDelete', 'POST' );
39 + $this->add_route( '/permissions/read', 'verifyRead', 'POST' );
38 40
39 41 $this->add_route( '/security/get_security', 'getBucketSecuritySettings', 'POST' );
40 42 $this->add_route( '/security/block_public_access', 'changePublicAccess', 'POST' );
41 43 $this->add_route( '/security/object_ownership_enforce', 'changeObjectOwnership', 'POST' );
42 44
45 + $this->add_route( '/getSettings', 'getSettings' );
43 46 $this->add_route( '/saveConfig', 'saveConfig', 'POST' );
44 - $this->add_route( '/getSettings', 'getSettings' );
45 - $this->add_route( '/uploadCredentials', 'uploadCredentials', 'POST' );
47 + $this->add_route( '/refreshCounts', 'refreshCounts', 'POST' );
48 + $this->add_route( '/getErrorLogs', 'getErrorLogs', 'POST' );
49 + $this->add_route( '/clearErrorLogs', 'clearErrorLogs', 'POST' );
50 +
51 + // Upgrade Database Routes
52 + $this->add_route( '/upgrade/status', 'getUpgradeStatus' );
53 + $this->add_route( '/upgrade/start', 'startUpgrade', 'POST' );
54 +
55 + // Sync Routes
56 + $this->add_route( '/sync/status', 'getStatus' );
57 + $this->add_route( '/sync/start', 'startSync', 'POST' );
58 + $this->add_route( '/sync/pause', 'pauseSync', 'POST' );
59 + $this->add_route( '/sync/resume', 'resumeSync', 'POST' );
60 + $this->add_route( '/sync/stop', 'stopSync', 'POST' );
61 + $this->add_route( '/sync/tick', 'tickSync', 'POST' );
62 + $this->add_route( '/sync/setMethod', 'setSyncMethod', 'POST' );
63 +
64 + $this->add_route( '/sync/retrySingle', 'retrySingle', 'POST' );
46 65 }
47 66
48 67 /**
49 68 * Verify the Service Credentials
@@ -65,17 +84,31 @@
65 84 public function createBucket( $data ) {
66 85 return new WP_REST_Response( Service::instance()->createBucket($data->get_params()), 200 );
67 86 }
68 87
69 -
70 88 /**
71 - * Verify the Bucket Write Permission
89 + * Saved connection status checks (storage, CDN).
90 + * @since 1.3.11
72 91 */
73 - public function verifyObjectWrite( $data ) {
74 - return new WP_REST_Response( Service::instance()->verifyObjectWritePermission($data->get_params()), 200 );
92 + public function verifyStatus( $data ) {
93 + $params = $data->get_params();
94 + $check = isset( $params['check'] ) ? sanitize_text_field( $params['check'] ) : 'storage';
95 + return new WP_REST_Response( Service::instance()->verifyStatus( $check ), 200 );
75 96 }
76 97
77 98 /**
99 + * Verify bucket write permission (configure wizard) or saved storage status (legacy route).
100 + * @since 1.3.11
101 + */
102 + public function verifyWrite( $data ) {
103 + $params = $data->get_params();
104 + if ( !empty( $params['service'] ) ) {
105 + return new WP_REST_Response( Service::instance()->verifyObjectWritePermission( $params ), 200 );
106 + }
107 + return new WP_REST_Response( Service::instance()->verifyStatus( 'storage' ), 200 );
108 + }
109 +
110 + /**
78 111 * Verify the Bucket delete Permission
79 112 */
80 113 public function verifyObjectDelete( $data ) {
81 114 return new WP_REST_Response( Service::instance()->verifyObjectDeletePermission($data->get_params()), 200 );
@@ -81,8 +114,16 @@
81 114 return new WP_REST_Response( Service::instance()->verifyObjectDeletePermission($data->get_params()), 200 );
82 115 }
83 116
84 117 /**
118 + * Verify delivery read access (legacy route).
119 + * @since 1.3.11
120 + */
121 + public function verifyRead( $data ) {
122 + return new WP_REST_Response( Service::instance()->verifyStatus( 'cdn' ), 200 );
123 + }
124 +
125 + /**
85 126 * Get the Security Settings
86 127 */
87 128 public function getBucketSecuritySettings( $data ) {
88 129 return new WP_REST_Response( Service::instance()->getBucketSecuritySettings($data->get_params()), 200 );
@@ -107,15 +148,30 @@
107 148 /**
108 149 * Get Settings
109 150 */
110 151 public function getSettings( ) {
152 + // Fetch and update media counts for make sure they are up to date
153 + Counter::fetch_and_update();
154 +
111 155 $data = [
112 - 'credentials' => Utils::get_credentials(),
113 - 'common' => [
114 - 'version' => WPMCS_VERSION,
115 - 'uploaded' => Counter::get( 'uploaded' ),
156 + 'credentials' => Utils::get_credentials( '', [], true ),
157 + 'serviceEnabled' => Utils::is_service_enabled(),
158 + 'serviceError' => Utils::get_service_configuration_error(),
159 + 'common' => [
160 + 'version' => defined('WPMCS_PRO_VERSION') ? WPMCS_PRO_VERSION : WPMCS_VERSION,
161 + 'counts' => [
162 + 'all' => Counter::get_count(),
163 + 'categorized' => $this->getSortedMediaCounts()
164 + ],
165 + 'status' => Utils::get_status('', false),
116 166 'settings' => Utils::get_settings(),
117 - ]
167 + ],
168 + 'sync' => Sync::instance()->get_status(),
169 + 'license' => defined('WPMCS_PRO_VERSION') ? Utils::get_safe_license_data() : [],
170 + 'file_manager' => defined('WPMCS_PRO_VERSION') ? [
171 + 'delete_enabled' => (bool) Utils::get_option('delete_enabled', false, Schema::getConstant('FILE_MANAGER_SETTINGS_KEY')),
172 + 'root_folder' => Utils::get_option('root_folder', '', Schema::getConstant('FILE_MANAGER_SETTINGS_KEY')),
173 + ] : [],
118 174 ];
119 175
120 176 return new WP_REST_Response( $data, 200 );
121 177 }
@@ -133,10 +189,12 @@
133 189 $action = isset($saveData['action']) ? $saveData['action'] : false;
134 190 if($action === false) return new WP_REST_Response( $result, 200 );
135 191
136 192 $service = isset($saveData['service']) ? $saveData['service'] : false;
193 + $serviceLabel = isset($saveData['serviceLabel']) ? $saveData['serviceLabel'] : '';
137 194 $cdn = isset($saveData['cdn']) ? $saveData['cdn'] : [];
138 195 $config = isset($saveData['config']) ? $saveData['config'] : false;
196 + $configSource = isset($saveData['configSource']) ? $saveData['configSource'] : 'database';
139 197 $bucketConfig = isset($saveData['bucketConfig']) ? $saveData['bucketConfig'] : [];
140 198 $security = isset($saveData['security']) ? $saveData['security'] : [];
141 199 $settings = isset($saveData['settings']) ? $saveData['settings'] : [];
142 200
@@ -143,27 +201,51 @@
143 201 $serviceOk = true;
144 202 $settingsOk = true;
145 203
146 204 if( $action === 'cdn' ){
205 + // Switching delivery provider resets the previously selected one's own fields
206 + // back to their defaults (see ChooseCDN.jsx) — that can include private_path/
207 + // enable_private_media, since those live in a delivery entry's own field list,
208 + // so this write needs the same guard the plain settings save uses below.
209 + $validation = apply_filters( 'wpmcs_validate_settings_save', ['ok' => true, 'message' => ''], $settings, $action );
210 + if ( empty( $validation['ok'] ) ) {
211 + return new WP_REST_Response( [
212 + 'success' => false,
213 + 'message' => !empty($validation['message']) ? $validation['message'] : esc_html__('Settings could not be saved.', 'media-cloud-sync')
214 + ], 200 );
215 + }
216 +
147 217 $existing = Utils::get_credentials();
148 218 $existing['cdn'] = $cdn;
149 -
219 +
150 220 $updated = Utils::update_option('credentials', $existing, Schema::getConstant('GLOBAL_SETTINGS_KEY'));
151 221 $updatedSettings = Utils::update_option('settings', $settings, Schema::getConstant('GLOBAL_SETTINGS_KEY'));
152 222
153 223 if(!$updated) $serviceOk = false;
224 + if(!$updatedSettings) $settingsOk = false;
225 +
226 + // Only once both writes actually persisted — a failed credentials write can
227 + // leave the object cache holding an unpersisted bucket identity (see
228 + // Cache::set_object_cache()), so gating on $settingsOk alone isn't enough.
229 + if ($serviceOk && $settingsOk) {
230 + do_action('wpmcs_after_settings_save', $settings, $action);
231 + }
154 232 }
155 233
156 234
157 235 if($action === 'all' || $action === 'service'){
158 - if ( $service === false || empty($config) || empty($bucketConfig)) return new WP_REST_Response( $result, 200 );
236 + // In 'config' source mode the credentials live in the WPMCS_CONFIG constant,
237 + // so an empty config payload is expected and must not block the save.
238 + if ( $service === false || ($configSource !== 'config' && empty($config)) || empty($bucketConfig)) return new WP_REST_Response( $result, 200 );
159 239
160 240 $updated = Utils::update_option(
161 241 'credentials',
162 242 [
163 243 'service' => $service,
244 + 'serviceLabel' => $serviceLabel,
164 245 'cdn' => $cdn,
165 - 'config' => $config,
246 + 'config' => $configSource === 'config' ? [] : $config,
247 + 'configSource' => $configSource,
166 248 'bucketConfig' => $bucketConfig,
167 249 'security' => $security
168 250 ],
169 251 Schema::getConstant('GLOBAL_SETTINGS_KEY')
@@ -168,16 +250,62 @@
168 250 ],
169 251 Schema::getConstant('GLOBAL_SETTINGS_KEY')
170 252 );
171 253 if(!$updated) $serviceOk = false;
254 +
255 + if($serviceOk) {
256 + Utils::set_status('cdnRead', [
257 + 'status' => false,
258 + 'message' => '',
259 + 'lastChecked' => null
260 + ]);
261 + Utils::set_status('storageCredentials', [
262 + 'status' => false,
263 + 'message' => '',
264 + 'lastChecked' => null
265 + ]);
266 + }
172 267 }
173 268
174 269 if(($action === 'all' || $action === 'settings')) {
270 + // Extension point for a pro-only settings-save guard (e.g. private media
271 + // refusing a private_path/base_path change while items are still private
272 + // under the currently-applied path) — free has no opinion here, default
273 + // is "allow". ['ok' => bool, 'message' => string].
274 + $validation = apply_filters( 'wpmcs_validate_settings_save', ['ok' => true, 'message' => ''], $settings, $action );
275 + if ( empty( $validation['ok'] ) ) {
276 + return new WP_REST_Response( [
277 + 'success' => false,
278 + 'message' => !empty($validation['message']) ? $validation['message'] : esc_html__('Settings could not be saved.', 'media-cloud-sync')
279 + ], 200 );
280 + }
281 +
175 282 $updatedSettings = Utils::update_option('settings', $settings, Schema::getConstant('GLOBAL_SETTINGS_KEY'));
176 283 if(!$updatedSettings) $settingsOk = false;
284 +
285 + // Only once both writes actually persisted — a failed credentials write can
286 + // leave the object cache holding an unpersisted bucket identity (see
287 + // Cache::set_object_cache()), so gating on $settingsOk alone isn't enough.
288 + if ($serviceOk && $settingsOk) {
289 + do_action('wpmcs_after_settings_save', $settings, $action);
290 + }
177 291 }
178 292
293 + // Clear plugin caches and refresh counts after any configuration save.
294 + if(in_array($action, ['all', 'service', 'settings', 'cdn'], true)) {
295 + if($action === 'all' || $action === 'service' || $action === 'settings') {
296 + Integration::instance()->clear_all_meta(false);
297 + }
179 298
299 + if($action === 'all' || $action === 'settings') {
300 + Utils::clear_all_content_meta(false, false);
301 + }
302 +
303 + Cache::flush_object_cache();
304 + Counter::instance()->fetch_and_update();
305 + }
306 +
307 +
180 308 if($serviceOk && $settingsOk) {
181 309 $result = [
182 310 'success' => true,
183 311 'message' => esc_html__('Configuration saved successfully', 'media-cloud-sync')
@@ -188,98 +316,411 @@
188 316 }
189 317
190 318
191 319 /**
192 - * Upload Credentials
193 - * @since 1.0.0
194 - */
195 - public function uploadCredentials($request) {
196 - if (isset($_FILES['file']) && !empty($_FILES['file'])) {
197 - $config_file = $_FILES['file'];
198 - if (isset($config_file['type']) && $config_file['type'] == 'application/json') {
199 - if (file_exists($config_file["tmp_name"])) {
320 + * Refresh the Media Counts
321 + *
322 + */
323 + public function refreshCounts( ) {
324 + Cache::flush_object_cache();
325 + Integration::instance()->clear_all_meta();
326 + Counter::instance()->fetch_and_update();
200 327
201 - add_filter( 'upload_dir', [ $this, 'change_file_upload_dir' ]);
202 - add_filter( 'mime_types', [ $this, 'add_custom_mime_type_json' ]);
328 + $result = [
329 + 'success' => true,
330 + 'counts' => [
331 + 'all' => Counter::get_count(),
332 + 'categorized' => $this->getSortedMediaCounts()
333 + ],
334 + 'message' => esc_html__('Media counts refreshed successfully', 'media-cloud-sync')
335 + ];
336 + return new WP_REST_Response( $result, 200 );
337 + }
203 338
204 - if ( ! function_exists( 'wp_handle_upload' ) ) {
205 - require_once( ABSPATH . 'wp-admin/includes/file.php' );
206 - }
207 339
208 - $upload_overrides = [
209 - 'test_form' => false,
210 - 'test_type' => true,
211 - 'mimes' => [ 'json'=>'application/json' ]
212 - ];
340 + /**
341 + * Start Upgrade
342 + * @since 1.3.6
343 + */
344 + public function startUpgrade( $request ) {
345 + $result = Upgrade::instance()->start_upgrade();
346 + return new WP_REST_Response( $result, 200 );
347 + }
213 348
214 - $movefile = wp_handle_upload( $config_file, $upload_overrides );
215 349
216 - remove_filter( 'upload_dir', [ $this, 'change_file_upload_dir' ]);
217 - remove_filter( 'mime_types', [ $this, 'add_custom_mime_type_json' ]);
350 + /**
351 + * Get Upgrade Status
352 + * @since 1.3.6
353 + */ public function getUpgradeStatus( $request ) {
354 + $result = Upgrade::instance()->get_progress();
355 + return new WP_REST_Response( $result, 200 );
356 + }
218 357
219 - if ($movefile && !isset($movefile['error'])) {
220 - $result = [
221 - 'success' => true,
222 - 'file_path' => $movefile['file'],
223 - 'file_name' => basename($movefile['file']),
224 - ];
225 - return new WP_REST_Response($result, 200);
226 - } else {
227 - $result = [
228 - 'success' => false,
229 - 'message' => $movefile['error'],
230 - ];
231 - return new WP_REST_Response($result, 200);
232 - }
233 - }
234 - } else {
235 - $result = [
236 - 'success' => false,
237 - 'message' => esc_html__('Invalid file format', 'media-cloud-sync'),
238 - ];
239 - return new WP_REST_Response($result, 200);
240 - }
241 - } else {
242 - $result = [
243 - 'success' => false,
244 - 'message' => esc_html__('Insufficient data. Please try again', 'media-cloud-sync'),
358 +
359 + /**
360 + * Get Media Error Logs
361 + * @since 1.2.13
362 + */
363 + public function getErrorLogs( $request ) {
364 + $params = $request->get_params();
365 + $type = isset($params['type']) ? $params['type'] : 'all';
366 + $page = isset($params['page']) ? $params['page'] : null;
367 + $per_page = isset($params['per_page']) ? $params['per_page'] : null;
368 +
369 + if($type !== 'all') {
370 + $logs = Logger::instance()->get_logs_by_type($type, $page, $per_page);
371 + } else {
372 + $logs = Logger::instance()->get_all_logs($page, $per_page);
373 + }
374 +
375 + $result = [
376 + 'success' => true,
377 + 'logs' => $logs,
378 + 'message' => esc_html__('Error logs fetched successfully', 'media-cloud-sync')
379 + ];
380 + return new WP_REST_Response( $result, 200 );
381 + }
382 +
383 +
384 + /**
385 + * Clear all error logs for a sync type (e.g. stale entries from earlier failed attempts).
386 + * @since 1.3.13
387 + */
388 + public function clearErrorLogs( $request ) {
389 + $type = isset($request->get_params()['type']) ? $request->get_params()['type'] : '';
390 +
391 + if (empty($type) || !Sync::instance()->get_class_by_action($type)) {
392 + return new WP_REST_Response( [
393 + 'success' => false,
394 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
395 + ], 200 );
396 + }
397 +
398 + Logger::instance()->remove_logs_by_type($type);
399 +
400 + $result = [
401 + 'success' => true,
402 + 'message' => esc_html__('Error logs cleared', 'media-cloud-sync')
403 + ];
404 + return new WP_REST_Response( $result, 200 );
405 + }
406 +
407 +
408 + /**
409 + * Get Status
410 + * @since 1.2.13
411 + */
412 + public function getStatus( $request ) {
413 + // Fetch and update media counts for make sure they are up to date
414 + $action = isset($request->get_params()['action']) ? $request->get_params()['action'] : 'all';
415 + $status = Sync::instance()->get_status();
416 +
417 + if($action !== 'all') {
418 + $status = isset($status[$action]) ? $status[$action] : [];
419 + }
420 +
421 + $result = [
422 + 'success' => true,
423 + 'status' => $status,
424 + 'counts' => [
425 + 'all' => Counter::get_count(),
426 + 'categorized' => $this->getSortedMediaCounts()
427 + ],
428 + 'message' => esc_html__('Status fetched successfully', 'media-cloud-sync')
429 + ];
430 +
431 + return new WP_REST_Response( $result, 200 );
432 + }
433 +
434 +
435 + /**
436 + * Start Sync
437 + * @since 1.2.13
438 + */
439 + public function startSync( $data ) {
440 + $action = isset($data->get_params()['action']) ? $data->get_params()['action'] : '';
441 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
442 + $result = [
443 + 'success' => false,
444 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
245 445 ];
246 - return new WP_REST_Response($result, 200);
247 - }
248 - }
446 + return new WP_REST_Response( $result, 200 );
447 + }
448 + if(!Utils::is_service_enabled()) {
449 + $result = [
450 + 'success' => false,
451 + 'message' => Utils::get_service_configuration_error() ?: esc_html__('Storage is not configured correctly.', 'media-cloud-sync')
452 + ];
453 + return new WP_REST_Response( $result, 200 );
454 + }
455 + $options = isset($data->get_params()['options']) && is_array($data->get_params()['options']) ? $data->get_params()['options'] : [];
456 + $status = Sync::instance()->start($action, $options);
249 457
458 + // Sync::start() passes a job's own precondition-failure array straight through
459 + // (e.g. no destination configured) instead of masking it as a started status.
460 + if (is_array($status) && isset($status['success']) && $status['success'] === false) {
461 + return new WP_REST_Response( $status, 200 );
462 + }
463 +
464 + $result = [
465 + 'success' => true,
466 + 'status' => $status,
467 + 'message' => esc_html__('Sync started successfully', 'media-cloud-sync')
468 + ];
469 + return new WP_REST_Response( $result, 200 );
470 + }
471 +
472 +
250 473 /**
251 - * Change File Upload Directory
252 - * @since 1.0.0
253 - */
254 - public function change_file_upload_dir($upload) {
255 - $wpmcs_path = '/' . Schema::getConstant('UPLOADS');
256 - $path = $upload['basedir'] . $wpmcs_path;
257 - $url = $upload['baseurl'] . $wpmcs_path;
474 + * Pause Sync
475 + * @since 1.2.13
476 + */
477 + public function pauseSync( $data ) {
478 + $action = isset($data->get_params()['action']) ? $data->get_params()['action'] : '';
479 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
480 + $result = [
481 + 'success' => false,
482 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
483 + ];
484 + return new WP_REST_Response( $result, 200 );
485 + }
486 + $status = Sync::instance()->pause($action);
258 487
259 - if (!is_dir($path)) {
260 - do_action( $this->token.'_create_plugin_dir' );
261 - }
488 + $result = [
489 + 'success' => true,
490 + 'status' => $status,
491 + 'message' => esc_html__('Sync paused successfully', 'media-cloud-sync')
492 + ];
493 + return new WP_REST_Response( $result, 200 );
494 + }
262 495
263 - $upload['subdir'] = $wpmcs_path;
264 - $upload['path'] = $upload['basedir'] . $wpmcs_path;
265 - $upload['url'] = $upload['baseurl'] . $wpmcs_path;
266 496
267 - return $upload;
268 - }
497 + /**
498 + * Save the sync method ('ajax'|'cron'|'mixed') preference for a sync type.
499 + * @since 1.3.13
500 + */
501 + public function setSyncMethod( $data ) {
502 + $params = $data->get_params();
503 + $action = isset($params['action']) ? sanitize_text_field($params['action']) : '';
504 + $method = isset($params['sync_method']) ? sanitize_text_field($params['sync_method']) : '';
269 505
270 - /**
271 - * Add Custom Mime Type JSON
272 - * @since 1.0.0
273 - */
274 - public function add_custom_mime_type_json($mimes) {
275 - $mimes['json'] = 'application/json';
276 - // Return the array back to the function with our added mime type.
277 - return $mimes;
278 - }
506 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
507 + return new WP_REST_Response( [
508 + 'success' => false,
509 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
510 + ], 200 );
511 + }
279 512
513 + $saved = Sync::instance()->set_sync_method($action, $method);
514 + if(!$saved) {
515 + return new WP_REST_Response( [
516 + 'success' => false,
517 + 'message' => esc_html__('Invalid sync method', 'media-cloud-sync')
518 + ], 200 );
519 + }
280 520
521 + $result = [
522 + 'success' => true,
523 + 'sync_method' => $method,
524 + 'status' => Sync::instance()->get_class_by_action($action)->get_status(),
525 + ];
526 + return new WP_REST_Response( $result, 200 );
527 + }
528 +
281 529 /**
530 + * Resume Sync
531 + * @since 1.2.13
532 + */
533 + public function resumeSync( $data ) {
534 + $action = isset($data->get_params()['action']) ? $data->get_params()['action'] : '';
535 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
536 + $result = [
537 + 'success' => false,
538 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
539 + ];
540 + return new WP_REST_Response( $result, 200 );
541 + }
542 + $status = Sync::instance()->resume($action);
543 +
544 + $result = [
545 + 'success' => true,
546 + 'status' => $status,
547 + 'message' => esc_html__('Sync resumed successfully', 'media-cloud-sync')
548 + ];
549 + return new WP_REST_Response( $result, 200 );
550 + }
551 +
552 +
553 + /**
554 + * Stop Sync
555 + * @since 1.2.13
556 + */
557 + public function stopSync( $data ) {
558 + $action = isset($data->get_params()['action']) ? $data->get_params()['action'] : '';
559 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
560 + $result = [
561 + 'success' => false,
562 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
563 + ];
564 + return new WP_REST_Response( $result, 200 );
565 + }
566 + $status = Sync::instance()->stop($action);
567 +
568 + $result = [
569 + 'success' => true,
570 + 'status' => $status,
571 + 'counts' => [
572 + 'all' => Counter::get_count(),
573 + 'categorized' => $this->getSortedMediaCounts()
574 + ],
575 + 'message' => esc_html__('Sync stopped successfully', 'media-cloud-sync')
576 + ];
577 + return new WP_REST_Response( $result, 200 );
578 + }
579 +
580 +
581 + /**
582 + * Tick Sync — process a small batch synchronously, driving Ajax/Mixed sync mode.
583 + * @since 1.3.13
584 + */
585 + public function tickSync( $data ) {
586 + $params = $data->get_params();
587 + $action = isset($params['action']) ? $params['action'] : '';
588 +
589 + if ( ! Sync::instance()->get_class_by_action( $action ) ) {
590 + $result = [
591 + 'success' => false,
592 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
593 + ];
594 + return new WP_REST_Response( $result, 200 );
595 + }
596 +
597 + // Defense in depth — the frontend should never call this in free/unlicensed mode, but
598 + // the endpoint must not trust that, and must not silently no-op: an unlicensed call
599 + // needs a clear rejection so the frontend's tick loop stops instead of retrying forever.
600 + if ( ! Utils::is_pro_licensed() ) {
601 + $result = [
602 + 'success' => false,
603 + 'message' => esc_html__('Ajax sync requires an active Pro license', 'media-cloud-sync')
604 + ];
605 + return new WP_REST_Response( $result, 200 );
606 + }
607 +
608 + // Clamp regardless of what the frontend sends — the endpoint itself must enforce the
609 + // ceiling, since a batch of slow uploads processed sequentially in one request risks
610 + // exceeding reverse-proxy/webserver timeouts that process_iterations() can't see.
611 + $batch = isset($params['batch']) ? (int) $params['batch'] : 5;
612 + $batch = min(10, max(1, $batch));
613 +
614 + $status = Sync::instance()->tick($action, $batch);
615 +
616 + $result = [
617 + 'success' => true,
618 + 'status' => $status,
619 + 'message' => esc_html__('Sync ticked successfully', 'media-cloud-sync')
620 + ];
621 +
622 + // Deliberately omitted on every tick (this endpoint may be hit ~once/second while a
623 + // sync runs, and Counter::get_count() is a real query) — but the Dashboard's own
624 + // Statistics widget reads a *different* redux slice (common.counts) than the Sync
625 + // screen's progress (sync[action]), only refreshed via the slower ~2-3s useSyncPolling
626 + // cadence. That's an acceptable few-seconds lag while a sync is actively running, but
627 + // right when it finishes it becomes a visibly wrong, stuck-looking number on the
628 + // Dashboard until the next poll happens to catch up. Only pay for the query at that
629 + // one transition, not on every tick.
630 + if ( isset( $status['status'] ) && $status['status'] !== 'running' ) {
631 + $result['counts'] = [
632 + 'all' => Counter::get_count(),
633 + 'categorized' => $this->getSortedMediaCounts()
634 + ];
635 + }
636 + return new WP_REST_Response( $result, 200 );
637 + }
638 +
639 +
640 + /**
641 + * Retry a Media Sync Error
642 + */
643 + public function retrySingle( $data ) {
644 + $params = $data->get_params();
645 + $id = isset($params['id']) ? $params['id'] : '';
646 + $source_type = isset($params['source_type']) ? $params['source_type'] : 'media_library';
647 + $type = isset($params['type']) ? $params['type'] : '';
648 + $status = false;
649 + if(empty($id) || empty($source_type) || empty($type)) {
650 + $result = [
651 + 'success' => false,
652 + 'message' => esc_html__('Invalid parameters', 'media-cloud-sync')
653 + ];
654 + return new WP_REST_Response( $result, 200 );
655 + }
656 + // Retry Sync
657 + $handler = Sync::instance()->get_class_by_action($type);
658 + if(!$handler) {
659 + $result = [
660 + 'success' => false,
661 + 'message' => esc_html__('Invalid action', 'media-cloud-sync')
662 + ];
663 + return new WP_REST_Response( $result, 200 );
664 + }
665 + if(!method_exists($handler, 'retry_single')) {
666 + $result = [
667 + 'success' => false,
668 + 'message' => esc_html__('Retry is not available for this sync type.', 'media-cloud-sync')
669 + ];
670 + return new WP_REST_Response( $result, 200 );
671 + }
672 + $handler->retry_single($id, $source_type);
673 +
674 + $status = Utils::is_empty(Logger::instance()->get_log($type, $id, $source_type)) ? true : false;
675 +
676 + $result = [
677 + 'success' => $status,
678 + 'message' => $status ? esc_html__('Media synced successfully', 'media-cloud-sync') : esc_html__('Media sync failed', 'media-cloud-sync')
679 + ];
680 + return new WP_REST_Response( $result, 200 );
681 + }
682 +
683 +
684 + /**
685 + * Get Sorted Media Counts
686 + * Sorts media counts by source type
687 + * @since 1.2.13
688 + */
689 + private function getSortedMediaCounts() {
690 + $sorted_counts = [];
691 + $detailed_counts = Counter::get_count( 'all', false );
692 + if(!empty($detailed_counts)) {
693 + $source_labels = Integration::$source_labels;
694 + if(!empty($source_labels)) {
695 + $prefixes = array_keys($source_labels);
696 + foreach($detailed_counts as $source_type => $counts) {
697 + $found_prefix = false;
698 + foreach($prefixes as $prefix) {
699 + $found_prefix = strpos($source_type, $prefix) === 0 ? $prefix : false;
700 + if($found_prefix !== false) break;
701 + }
702 +
703 + if($found_prefix !== false) {
704 + $sorted_counts[$found_prefix] = [
705 + 'label' => $source_labels[$found_prefix],
706 + 'uploaded' => isset( $sorted_counts[ $found_prefix ]['uploaded'] )
707 + ? $sorted_counts[ $found_prefix ]['uploaded'] + $counts['uploaded']
708 + : $counts['uploaded'],
709 + 'total' => isset( $sorted_counts[ $found_prefix ]['total'] )
710 + ? $sorted_counts[ $found_prefix ]['total'] + $counts['total']
711 + : $counts['total']
712 + ];
713 + }
714 + }
715 + }
716 + }
717 +
718 + return $sorted_counts;
719 + }
720 +
721 +
722 + /**
282 723 * Helper function to create Adding Route
283 724 * @since 1.0.0
284 725 */
285 726 private function add_route( $slug, $callBack, $method = 'GET' ) {
@@ -296,12 +737,12 @@
296 737 /**
297 738 * Permission Callback
298 739 **/
299 740 public function getPermission() {
300 - if ( current_user_can( 'administrator' ) ) {
741 + if ( current_user_can( 'manage_options' ) ) {
301 742 return true;
302 743 } else {
303 - return true;
744 + return false;
304 745 }
305 746 }
306 747
307 748 /**