namespace = OPTML_NAMESPACE . '/v1'; add_action( 'rest_api_init', array( $this, 'register' ) ); } /** * Register rest routes. */ public function register() { $this->register_service_routes(); register_rest_route( $this->namespace, '/update_option', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'update_option' ), ), ) ); register_rest_route( $this->namespace, '/request_update', array( array( 'methods' => \WP_REST_Server::READABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'request_update' ), ), ) ); register_rest_route( $this->namespace, '/check_redirects', array( array( 'methods' => \WP_REST_Server::EDITABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'check_redirects' ), 'args' => array( 'images' => array( 'type' => 'Array', 'required' => true, ), ), ), ) ); $this->register_image_routes(); $this->register_watermark_routes(); $this->register_conflict_routes(); $this->register_cache_routes(); } /** * Method to register service specific routes. */ public function register_service_routes() { register_rest_route( $this->namespace, '/connect', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'connect' ), 'args' => array( 'api_key' => array( 'type' => 'string', 'required' => true, ), ), ), ) ); register_rest_route( $this->namespace, '/register', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'register_service' ), 'args' => array( 'email' => array( 'type' => 'string', 'required' => true, ), ), ), ) ); register_rest_route( $this->namespace, '/disconnect', array( array( 'methods' => \WP_REST_Server::READABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'disconnect' ), ), ) ); } /** * Method to register image specific routes. */ public function register_image_routes() { register_rest_route( $this->namespace, '/poll_optimized_images', array( array( 'methods' => \WP_REST_Server::READABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'poll_optimized_images' ), ), ) ); register_rest_route( $this->namespace, '/images-sample-rate', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'get_sample_rate' ), ), ) ); } /** * Method to register watermark specific routes. */ public function register_watermark_routes() { register_rest_route( $this->namespace, '/poll_watermarks', array( array( 'methods' => \WP_REST_Server::READABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'poll_watermarks' ), ), ) ); register_rest_route( $this->namespace, '/add_watermark', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'add_watermark' ), ), ) ); register_rest_route( $this->namespace, '/remove_watermark', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'remove_watermark' ), ), ) ); } /** * Method to register conflicts specific routes. */ public function register_conflict_routes() { register_rest_route( $this->namespace, '/poll_conflicts', array( array( 'methods' => \WP_REST_Server::READABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'poll_conflicts' ), ), ) ); register_rest_route( $this->namespace, '/dismiss_conflict', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'dismiss_conflict' ), ), ) ); } /** * Method to register cache specific routes. */ public function register_cache_routes() { register_rest_route( $this->namespace, '/clear_cache', array( array( 'methods' => \WP_REST_Server::CREATABLE, 'permission_callback' => function () { return current_user_can( 'manage_options' ); }, 'callback' => array( $this, 'clear_cache_request' ), ), ) ); } /** * Clear Cache request. * * @param WP_REST_Request $request clear cache rest request. * * @return WP_Error|WP_REST_Response */ public function clear_cache_request( WP_REST_Request $request ) { $settings = new Optml_Settings(); $token = $settings->get( 'cache_buster' ); $request = new Optml_Api(); $data = $request->get_cache_token( $token ); if ( $data === false || is_wp_error( $data ) || empty( $data ) || ! isset( $data['token'] ) ) { $extra = ''; if ( is_wp_error( $data ) ) { /** * Error from api. * * @var WP_Error $data Error object. */ $extra = sprintf( __( '. ERROR details: %s', 'optimole-wp' ), $data->get_error_message() ); } wp_send_json_error( __( 'Can not get new token from Optimole service', 'optimole-wp' ) . $extra ); } set_transient( 'optml_cache_lock', 'yes', 5 * MINUTE_IN_SECONDS ); $settings->update( 'cache_buster', $data['token'] ); return $this->response( $data['token'], '200' ); } /** * Connect to optimole service. * * @param WP_REST_Request $request connect rest request. * * @return WP_Error|WP_REST_Response */ public function connect( WP_REST_Request $request ) { $api_key = $request->get_param( 'api_key' ); $request = new Optml_Api(); $data = $request->get_user_data( $api_key ); if ( $data === false || is_wp_error( $data ) ) { $extra = ''; if ( is_wp_error( $data ) ) { /** * Error from api. * * @var WP_Error $data Error object. */ $extra = sprintf( __( '. ERROR details: %s', 'optimole-wp' ), $data->get_error_message() ); } wp_send_json_error( __( 'Can not connect to Optimole service', 'optimole-wp' ) . $extra ); } $settings = new Optml_Settings(); $settings->update( 'service_data', $data ); $settings->update( 'api_key', $api_key ); return $this->response( $data ); } /** * Wrapper for api response. * * @param mixed $data data from api. * * @return WP_REST_Response */ private function response( $data, $code = 'success' ) { return new WP_REST_Response( array( 'data' => $data, 'code' => $code ), 200 ); } /** * Connect to optimole service. * * @param WP_REST_Request $request connect rest request. * * @return WP_Error|WP_REST_Response */ public function register_service( WP_REST_Request $request ) { $email = $request->get_param( 'email' ); $api = new Optml_Api(); $user = $api->create_account( $email ); if ( $user === false ) { return new WP_REST_Response( array( 'data' => null, 'message' => __( 'Error creating account.', 'optimole-wp' ), 'code' => 'error', ), 200 ); } return $this->response( $user ); } /** * Return image samples. * * @param WP_REST_Request $request Rest request. * * @return WP_REST_Response Image urls. */ public function get_sample_rate( WP_REST_Request $request ) { add_filter( 'optml_dont_replace_url', '__return_true' ); $image_sample = get_transient( 'optimole_sample_image' ); if ( $image_sample === false || $request->get_param( 'force' ) === 'yes' ) { $image_sample = $this->fetch_sample_image(); set_transient( 'optimole_sample_image', $image_sample ); } $image = array( 'id' => $image_sample['id'] ); $image['original'] = $image_sample['url']; remove_filter( 'optml_dont_replace_url', '__return_true' ); $image['optimized'] = apply_filters( 'optml_replace_image', $image['original'], array( 'width' => $image_sample['width'], 'height' => $image_sample['height'], 'quality' => $request->get_param( 'quality' ), ) ); $optimized = wp_remote_get( $image['optimized'], array( 'timeout' => 10, 'headers' => array( 'Accept' => 'text/html,application/xhtml+xml,image/webp,image/apng ', ), ) ); $original = wp_remote_get( $image['original'] ); $image['optimized_size'] = (int) wp_remote_retrieve_header( $optimized, 'content-length' ); $image['original_size'] = (int) wp_remote_retrieve_header( $original, 'content-length' ); return $this->response( $image ); } /** * Return sample image data. * * @return array Image data. */ private function fetch_sample_image() { $accepted_mimes = array( 'image/jpeg' ); $args = array( 'post_type' => 'attachment', 'post_status' => 'any', 'number' => '5', 'no_found_rows' => true, 'fields' => 'ids', 'post_mime_type' => $accepted_mimes, 'post_parent__not_in' => array( 0 ), ); $image_result = new WP_Query( $args ); if ( empty( $image_result->posts ) ) { $rand_id = rand( 1, 3 ); $original_image_url = OPTML_URL . 'assets/img/' . $rand_id . '.jpg'; return array( 'url' => $original_image_url, 'width' => '700', 'height' => '465', 'id' => - 1, ); } $attachment_id = $image_result->posts[ array_rand( $image_result->posts, 1 ) ]; $original_image_url = wp_get_attachment_image_url( $attachment_id, 'full' ); $metadata = wp_get_attachment_metadata( $attachment_id ); $width = 'auto'; $height = 'auto'; $size = 'full'; if ( isset( $metadata['sizes'] ) && isset( $metadata['sizes'][ $size ] ) ) { $width = $metadata['sizes'][ $size ]['width']; $height = $metadata['sizes'][ $size ]['height']; } return array( 'url' => $original_image_url, 'id' => $attachment_id, 'width' => $width, 'height' => $height, ); } /** * Disconnect from optimole service. * * @SuppressWarnings(PHPMD.UnusedFormalParameter) * @param WP_REST_Request $request disconnect rest request. */ public function disconnect( WP_REST_Request $request ) { $settings = new Optml_Settings(); $settings->reset(); wp_send_json_success( 'Disconnected' ); } /** * Get optimized images from API. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function poll_optimized_images( WP_REST_Request $request ) { $api_key = $request->get_param( 'api_key' ); $request = new Optml_Api(); $images = $request->get_optimized_images( $api_key ); if ( ! isset( $images['list'] ) || empty( $images['list'] ) ) { return $this->response( array() ); } $final_images = array_splice( $images['list'], 0, 10 ); return $this->response( $final_images ); } /** * Get watermarks from API. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function poll_watermarks( WP_REST_Request $request ) { $api_key = $request->get_param( 'api_key' ); $request = new Optml_Api(); $watermarks = $request->get_watermarks( $api_key ); if ( ! isset( $watermarks['watermarks'] ) || empty( $watermarks['watermarks'] ) ) { return $this->response( array() ); } $final_images = array_splice( $watermarks['watermarks'], 0, 10 ); return $this->response( $final_images ); } /** * Add watermark. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function add_watermark( WP_REST_Request $request ) { $file = $request->get_file_params(); $request = new Optml_Api(); $response = $request->add_watermark( $file ); if ( $response === false ) { return $this->response( __( 'Error uploading image. Please try again.', 'optimole-wp' ), 'error' ); } return $this->response( __( 'Watermark image uploaded succesfully ! ', 'optimole-wp' ) ); } /** * Remove watermark. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function remove_watermark( WP_REST_Request $request ) { $post_id = $request->get_param( 'postID' ); $api_key = $request->get_param( 'api_key' ); $request = new Optml_Api(); return $this->response( $request->remove_watermark( $post_id, $api_key ) ); } /** * Get conflicts from API. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function poll_conflicts( WP_REST_Request $request ) { $conflicts_to_register = apply_filters( 'optml_register_conflicts', array() ); $manager = new Optml_Conflict_Manager( $conflicts_to_register ); return $this->response( array( 'count' => $manager->get_conflict_count(), 'conflicts' => $manager->get_conflict_list(), ) ); } /** * Dismiss conflict. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function dismiss_conflict( WP_REST_Request $request ) { $conflict_id = $request->get_param( 'conflictID' ); $conflicts_to_register = apply_filters( 'optml_register_conflicts', array() ); $manager = new Optml_Conflict_Manager( $conflicts_to_register ); $manager->dismiss_conflict( $conflict_id ); return $this->response( array( 'count' => $manager->get_conflict_count(), 'conflicts' => $manager->get_conflict_list(), ) ); } /** * Request stats update for app. * * @param WP_REST_Request $request rest request. * * @return WP_REST_Response */ public function request_update( WP_REST_Request $request ) { do_action( 'optml_daily_sync' ); $settings = new Optml_Settings(); return $this->response( $settings->get( 'service_data' ) ); } /** * Update options method. * * @param WP_REST_Request $request option update rest request. * * @return WP_REST_Response */ public function update_option( WP_REST_Request $request ) { $new_settings = $request->get_param( 'settings' ); if ( empty( $new_settings ) ) { wp_send_json_error( 'No option key set.' ); } $settings = new Optml_Settings(); $sanitized = $settings->parse_settings( $new_settings ); return $this->response( $sanitized ); } /** * Update options method. * * @param WP_REST_Request $request option update rest request. * * @return WP_REST_Response */ public function check_redirects( WP_REST_Request $request ) { if ( empty( $request->get_param( 'images' ) ) ) { return $this->response( __( 'No images available on the current page.' ), 'noImagesFound' ); } // 'ok' if no issues found, 'log' is there are issues we need to notify, 'deactivated' if the user's account is disabled $status = 'ok'; $result = ''; foreach ( $request->get_param( 'images' ) as $domain => $value ) { $args = array( 'method' => 'GET', 'redirection' => 0, ); $processed_images = 0; if ( isset( $value['src'] ) ) { $processed_images = count( $value['src'] ); } if ( isset( $value['ignoredUrls'] ) && $value['ignoredUrls'] > $processed_images ) { $result .= '