/var/www/p4ela.net/www/wp-content/plugins/image-optimization/modules/oauth/rest
Edit: /var/www/p4ela.net/www/wp-content/plugins/image-optimization/modules/oauth/rest/connect-init.php (1133B)
verify_nonce_and_capability(
$request->get_param( self::NONCE_NAME ),
self::NONCE_NAME
);
if ( Connect::is_connected() ) {
return $this->respond_error_json( [
'message' => esc_html__( 'You are already connected', 'image-optimization' ),
'code' => 'forbidden',
] );
}
try {
$connect_url = Connect::initialize_connect();
return $this->respond_success_json( $connect_url );
} catch ( Throwable $t ) {
return $this->respond_error_json( [
'message' => $t->getMessage(),
'code' => 'internal_server_error',
] );
}
}
}