first commit
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\Variables\Services\Variables_Service;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class CSS_Renderer {
|
||||
private Variables_Service $service;
|
||||
|
||||
public function __construct( Variables_Service $service ) {
|
||||
$this->service = $service;
|
||||
}
|
||||
|
||||
private function global_variables(): array {
|
||||
return $this->service->get_variables_list();
|
||||
}
|
||||
|
||||
public function raw_css(): string {
|
||||
$list_of_variables = $this->global_variables();
|
||||
|
||||
if ( empty( $list_of_variables ) ) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$css_entries = $this->css_entries_for( $list_of_variables );
|
||||
|
||||
if ( empty( $css_entries ) ) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return $this->wrap_with_root( $css_entries );
|
||||
}
|
||||
|
||||
private function css_entries_for( array $list_of_variables ): array {
|
||||
$entries = [];
|
||||
|
||||
foreach ( $list_of_variables as $variable_id => $variable ) {
|
||||
$entry = $this->build_css_variable_entry( $variable_id, $variable );
|
||||
|
||||
if ( empty( $entry ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$entries[] = $entry;
|
||||
}
|
||||
|
||||
return $entries;
|
||||
}
|
||||
|
||||
private function build_css_variable_entry( string $id, array $variable ): ?string {
|
||||
$variable_name = sanitize_text_field( $id );
|
||||
|
||||
if ( ! array_key_exists( 'deleted_at', $variable ) ) {
|
||||
$variable_name = sanitize_text_field( $variable['label'] ?? '' );
|
||||
}
|
||||
|
||||
$value = sanitize_text_field( $variable['value'] ?? '' );
|
||||
|
||||
if ( empty( $value ) || empty( $variable_name ) ) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return "--{$variable_name}:{$value};";
|
||||
}
|
||||
|
||||
private function wrap_with_root( array $css_entries ): string {
|
||||
return ':root { ' . implode( ' ', $css_entries ) . ' }';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\Variables\Services\Variables_Service;
|
||||
use Elementor\Plugin;
|
||||
use Elementor\Core\Files\CSS\Post as Post_CSS;
|
||||
use Elementor\Modules\Variables\PropTypes\Font_Variable_Prop_Type;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Fonts {
|
||||
private Variables_Service $service;
|
||||
|
||||
public function __construct( Variables_Service $service ) {
|
||||
$this->service = $service;
|
||||
}
|
||||
|
||||
public function append_to( Post_CSS $post_css ) {
|
||||
if ( ! Plugin::$instance->kits_manager->is_kit( $post_css->get_post_id() ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$list_of_variables = $this->service->get_variables_list();
|
||||
|
||||
foreach ( $list_of_variables as $variable ) {
|
||||
if ( Font_Variable_Prop_Type::get_key() !== $variable['type'] ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$font_family = sanitize_text_field( $variable['value'] ?? '' );
|
||||
|
||||
if ( empty( $font_family ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$post_css->add_font( $font_family );
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,617 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\Variables\Storage\Exceptions\Type_Mismatch;
|
||||
use WP_Error;
|
||||
use Exception;
|
||||
use WP_REST_Server;
|
||||
use WP_REST_Request;
|
||||
use Elementor\Plugin;
|
||||
use WP_REST_Response;
|
||||
use Elementor\Modules\Variables\Services\Variables_Service;
|
||||
use Elementor\Modules\Variables\Module as Variables_Module;
|
||||
use Elementor\Modules\Variables\Storage\Exceptions\VariablesLimitReached;
|
||||
use Elementor\Modules\Variables\Storage\Exceptions\RecordNotFound;
|
||||
use Elementor\Modules\Variables\Storage\Exceptions\DuplicatedLabel;
|
||||
use Elementor\Modules\Variables\Storage\Exceptions\BatchOperationFailed;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Rest_Api {
|
||||
const API_NAMESPACE = 'elementor/v1';
|
||||
const API_BASE = 'variables';
|
||||
const HTTP_OK = 200;
|
||||
const HTTP_CREATED = 201;
|
||||
const HTTP_BAD_REQUEST = 400;
|
||||
const HTTP_NOT_FOUND = 404;
|
||||
const HTTP_SERVER_ERROR = 500;
|
||||
const MAX_ID_LENGTH = 64;
|
||||
const MAX_LABEL_LENGTH = 50;
|
||||
const MAX_VALUE_LENGTH = 512;
|
||||
|
||||
private Variables_Service $service;
|
||||
|
||||
public function __construct( Variables_Service $service ) {
|
||||
$this->service = $service;
|
||||
}
|
||||
|
||||
public function enough_permissions_to_perform_ro_action() {
|
||||
return current_user_can( 'edit_posts' );
|
||||
}
|
||||
|
||||
public function enough_permissions_to_perform_rw_action() {
|
||||
return current_user_can( 'manage_options' );
|
||||
}
|
||||
|
||||
public function register_routes() {
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/list', [
|
||||
'methods' => WP_REST_Server::READABLE,
|
||||
'callback' => [ $this, 'get_variables' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_ro_action' ],
|
||||
] );
|
||||
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/create', [
|
||||
'methods' => WP_REST_Server::CREATABLE,
|
||||
'callback' => [ $this, 'create_variable' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_rw_action' ],
|
||||
'args' => [
|
||||
'type' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_type' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'label' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_label' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'value' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_value' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
],
|
||||
] );
|
||||
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/update', [
|
||||
'methods' => WP_REST_Server::EDITABLE,
|
||||
'callback' => [ $this, 'update_variable' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_rw_action' ],
|
||||
'args' => [
|
||||
'id' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_id' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'label' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_label' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'value' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_value' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'order' => [
|
||||
'required' => false,
|
||||
'type' => 'integer',
|
||||
'validate_callback' => [ $this, 'is_valid_order' ],
|
||||
],
|
||||
'type' => [
|
||||
'required' => false,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_type' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
],
|
||||
] );
|
||||
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/delete', [
|
||||
'methods' => WP_REST_Server::EDITABLE,
|
||||
'callback' => [ $this, 'delete_variable' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_rw_action' ],
|
||||
'args' => [
|
||||
'id' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_id' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
],
|
||||
] );
|
||||
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/restore', [
|
||||
'methods' => WP_REST_Server::EDITABLE,
|
||||
'callback' => [ $this, 'restore_variable' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_rw_action' ],
|
||||
'args' => [
|
||||
'id' => [
|
||||
'required' => true,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_id' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'label' => [
|
||||
'required' => false,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_label' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'value' => [
|
||||
'required' => false,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_value' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
'type' => [
|
||||
'required' => false,
|
||||
'type' => 'string',
|
||||
'validate_callback' => [ $this, 'is_valid_variable_type' ],
|
||||
'sanitize_callback' => [ $this, 'trim_and_sanitize_text_field' ],
|
||||
],
|
||||
],
|
||||
] );
|
||||
|
||||
register_rest_route( self::API_NAMESPACE, '/' . self::API_BASE . '/batch', [
|
||||
'methods' => WP_REST_Server::CREATABLE,
|
||||
'callback' => [ $this, 'process_batch' ],
|
||||
'permission_callback' => [ $this, 'enough_permissions_to_perform_rw_action' ],
|
||||
'args' => [
|
||||
'watermark' => [
|
||||
'required' => true,
|
||||
'type' => 'integer',
|
||||
'validate_callback' => [ $this, 'is_valid_watermark' ],
|
||||
],
|
||||
'operations' => [
|
||||
'required' => true,
|
||||
'type' => 'array',
|
||||
'validate_callback' => [ $this, 'is_valid_operations_array' ],
|
||||
],
|
||||
],
|
||||
] );
|
||||
}
|
||||
|
||||
public function trim_and_sanitize_text_field( $value ) {
|
||||
|
||||
return trim( sanitize_text_field( $value ) );
|
||||
}
|
||||
|
||||
public function is_valid_variable_id( $id ) {
|
||||
$id = trim( $id );
|
||||
|
||||
if ( empty( $id ) ) {
|
||||
return new WP_Error(
|
||||
'invalid_variable_id_empty',
|
||||
__( 'ID cannot be empty', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( self::MAX_ID_LENGTH < strlen( $id ) ) {
|
||||
return new WP_Error( 'invalid_variable_id_length', sprintf(
|
||||
/* translators: %d: Maximum ID length. */
|
||||
__( 'ID cannot exceed %d characters', 'elementor' ),
|
||||
self::MAX_ID_LENGTH
|
||||
) );
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function is_valid_variable_type( $type ) {
|
||||
$allowed_types = array_keys( Variables_Module::instance()->get_variable_types_registry()->all() );
|
||||
|
||||
return in_array( $type, $allowed_types, true );
|
||||
}
|
||||
|
||||
public function is_valid_variable_label( $label ) {
|
||||
$label = trim( $label );
|
||||
|
||||
if ( empty( $label ) ) {
|
||||
return new WP_Error(
|
||||
'invalid_variable_label_empty',
|
||||
__( 'Label cannot be empty', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( self::MAX_LABEL_LENGTH < strlen( $label ) ) {
|
||||
return new WP_Error( 'invalid_variable_label_length', sprintf(
|
||||
/* translators: %d: Maximum label length. */
|
||||
__( 'Label cannot exceed %d characters', 'elementor' ),
|
||||
self::MAX_LABEL_LENGTH
|
||||
) );
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function is_valid_order( $order ) {
|
||||
if ( ! is_numeric( $order ) || $order < 0 ) {
|
||||
return new WP_Error(
|
||||
'invalid_order',
|
||||
__( 'Order must be a non-negative integer', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function is_valid_variable_value( $value ) {
|
||||
$value = trim( $value );
|
||||
|
||||
if ( empty( $value ) ) {
|
||||
return new WP_Error(
|
||||
'invalid_variable_value_empty',
|
||||
__( 'Value cannot be empty', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( self::MAX_VALUE_LENGTH < strlen( $value ) ) {
|
||||
return new WP_Error( 'invalid_variable_value_length', sprintf(
|
||||
/* translators: %d: Maximum value length. */
|
||||
__( 'Value cannot exceed %d characters', 'elementor' ),
|
||||
self::MAX_VALUE_LENGTH
|
||||
) );
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function create_variable( WP_REST_Request $request ) {
|
||||
try {
|
||||
return $this->create_new_variable( $request );
|
||||
} catch ( Exception $e ) {
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
protected function clear_cache() {
|
||||
Plugin::$instance->files_manager->clear_cache();
|
||||
}
|
||||
|
||||
private function create_new_variable( WP_REST_Request $request ) {
|
||||
$type = $request->get_param( 'type' );
|
||||
$label = $request->get_param( 'label' );
|
||||
$value = $request->get_param( 'value' );
|
||||
|
||||
$result = $this->service->create( [
|
||||
'type' => $type,
|
||||
'label' => $label,
|
||||
'value' => $value,
|
||||
] );
|
||||
|
||||
$this->clear_cache();
|
||||
|
||||
return $this->success_response( [
|
||||
'variable' => $result['variable'],
|
||||
'watermark' => $result['watermark'],
|
||||
], self::HTTP_CREATED );
|
||||
}
|
||||
|
||||
public function update_variable( WP_REST_Request $request ) {
|
||||
try {
|
||||
return $this->update_existing_variable( $request );
|
||||
} catch ( Exception $e ) {
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
private function update_existing_variable( WP_REST_Request $request ) {
|
||||
$id = $request->get_param( 'id' );
|
||||
$label = $request->get_param( 'label' );
|
||||
$value = $request->get_param( 'value' );
|
||||
$order = $request->get_param( 'order' );
|
||||
$type = $request->get_param( 'type' );
|
||||
|
||||
$update_data = [
|
||||
'label' => $label,
|
||||
'value' => $value,
|
||||
];
|
||||
|
||||
if ( $type ) {
|
||||
$update_data['type'] = $type;
|
||||
}
|
||||
|
||||
if ( null !== $order ) {
|
||||
$update_data['order'] = $order;
|
||||
}
|
||||
|
||||
$result = $this->service->update( $id, $update_data );
|
||||
|
||||
$this->clear_cache();
|
||||
|
||||
return $this->success_response( [
|
||||
'variable' => $result['variable'],
|
||||
'watermark' => $result['watermark'],
|
||||
] );
|
||||
}
|
||||
|
||||
public function delete_variable( WP_REST_Request $request ) {
|
||||
try {
|
||||
return $this->delete_existing_variable( $request );
|
||||
} catch ( Exception $e ) {
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
private function delete_existing_variable( WP_REST_Request $request ) {
|
||||
$id = $request->get_param( 'id' );
|
||||
|
||||
$result = $this->service->delete( $id );
|
||||
|
||||
$this->clear_cache();
|
||||
|
||||
return $this->success_response( [
|
||||
'variable' => $result['variable'],
|
||||
'watermark' => $result['watermark'],
|
||||
] );
|
||||
}
|
||||
|
||||
public function restore_variable( WP_REST_Request $request ) {
|
||||
try {
|
||||
return $this->restore_existing_variable( $request );
|
||||
} catch ( Exception $e ) {
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
private function restore_existing_variable( WP_REST_Request $request ) {
|
||||
$id = $request->get_param( 'id' );
|
||||
|
||||
$overrides = [];
|
||||
|
||||
$label = $request->get_param( 'label' );
|
||||
|
||||
if ( $label ) {
|
||||
$overrides['label'] = $label;
|
||||
}
|
||||
|
||||
$value = $request->get_param( 'value' );
|
||||
|
||||
if ( $value ) {
|
||||
$overrides['value'] = $value;
|
||||
}
|
||||
|
||||
$type = $request->get_param( 'type' );
|
||||
|
||||
if ( $type ) {
|
||||
$overrides['type'] = $type;
|
||||
}
|
||||
|
||||
$result = $this->service->restore( $id, $overrides );
|
||||
|
||||
$this->clear_cache();
|
||||
|
||||
return $this->success_response( [
|
||||
'variable' => $result['variable'],
|
||||
'watermark' => $result['watermark'],
|
||||
] );
|
||||
}
|
||||
|
||||
public function get_variables() {
|
||||
try {
|
||||
return $this->list_of_variables();
|
||||
} catch ( Exception $e ) {
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
private function list_of_variables() {
|
||||
$db_record = $this->service->load();
|
||||
|
||||
return $this->success_response( [
|
||||
'variables' => $db_record['data'] ?? [],
|
||||
'total' => count( $db_record['data'] ),
|
||||
'watermark' => $db_record['watermark'],
|
||||
] );
|
||||
}
|
||||
|
||||
private function success_response( $payload, $status_code = null ) {
|
||||
return new WP_REST_Response( [
|
||||
'success' => true,
|
||||
'data' => $payload,
|
||||
], $status_code ?? self::HTTP_OK );
|
||||
}
|
||||
|
||||
private function error_response( Exception $e ) {
|
||||
if ( $e instanceof VariablesLimitReached ) {
|
||||
return $this->prepare_error_response(
|
||||
self::HTTP_BAD_REQUEST,
|
||||
'invalid_variable_limit_reached',
|
||||
__( 'Reached the maximum number of variables', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( $e instanceof DuplicatedLabel ) {
|
||||
return $this->prepare_error_response(
|
||||
self::HTTP_BAD_REQUEST,
|
||||
'duplicated_label',
|
||||
__( 'Variable label already exists', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( $e instanceof RecordNotFound ) {
|
||||
return $this->prepare_error_response(
|
||||
self::HTTP_NOT_FOUND,
|
||||
'variable_not_found',
|
||||
__( 'Variable not found', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
if ( $e instanceof Type_Mismatch ) {
|
||||
return $this->prepare_error_response(
|
||||
self::HTTP_BAD_REQUEST,
|
||||
'type_mismatch',
|
||||
$e->getMessage()
|
||||
);
|
||||
}
|
||||
|
||||
return $this->prepare_error_response(
|
||||
self::HTTP_SERVER_ERROR,
|
||||
'unexpected_server_error',
|
||||
__( 'Unexpected server error', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
private function prepare_error_response( $status_code, $error, $message ) {
|
||||
return new WP_REST_Response( [
|
||||
'code' => $error,
|
||||
'message' => $message,
|
||||
'data' => [
|
||||
'status' => $status_code,
|
||||
],
|
||||
], $status_code );
|
||||
}
|
||||
|
||||
public function is_valid_watermark( $watermark ) {
|
||||
if ( ! is_numeric( $watermark ) || $watermark < 0 ) {
|
||||
return new WP_Error(
|
||||
'invalid_watermark',
|
||||
__( 'Watermark must be a non-negative integer', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function is_valid_operations_array( $operations ) {
|
||||
if ( ! is_array( $operations ) || empty( $operations ) ) {
|
||||
return new WP_Error(
|
||||
'invalid_operations_empty',
|
||||
__( 'Operations array cannot be empty', 'elementor' )
|
||||
);
|
||||
}
|
||||
|
||||
foreach ( $operations as $index => $operation ) {
|
||||
if ( ! is_array( $operation ) || ! isset( $operation['type'] ) ) {
|
||||
$sanitized_index = absint( $index );
|
||||
return new WP_Error(
|
||||
'invalid_operation_structure',
|
||||
sprintf(
|
||||
/* translators: %d: operation index */
|
||||
__( 'Invalid operation structure at index %d', 'elementor' ),
|
||||
$sanitized_index
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$allowed_types = [ 'create', 'update', 'delete', 'restore', 'reorder' ];
|
||||
|
||||
if ( ! in_array( $operation['type'], $allowed_types, true ) ) {
|
||||
$sanitized_index = absint( $index );
|
||||
return new WP_Error(
|
||||
'invalid_operation_type',
|
||||
sprintf(
|
||||
/* translators: %d: operation index */
|
||||
__( 'Invalid operation type at index %d', 'elementor' ),
|
||||
$sanitized_index
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function process_batch( WP_REST_Request $request ) {
|
||||
try {
|
||||
return $this->process_batch_operations( $request );
|
||||
} catch ( Exception $e ) {
|
||||
return $this->batch_error_response( $e );
|
||||
}
|
||||
}
|
||||
|
||||
private function process_batch_operations( WP_REST_Request $request ) {
|
||||
$operations = $request->get_param( 'operations' );
|
||||
|
||||
$result = $this->service->process_batch( $operations );
|
||||
|
||||
$this->clear_cache();
|
||||
|
||||
return $this->success_response( $result );
|
||||
}
|
||||
|
||||
|
||||
private function batch_error_response( Exception $e ) {
|
||||
if ( $e instanceof BatchOperationFailed ) {
|
||||
$error_details = $e->getErrorDetails();
|
||||
$batch_error_context = $this->determine_batch_error_context( $error_details );
|
||||
|
||||
return new WP_REST_Response( [
|
||||
'success' => false,
|
||||
'code' => $batch_error_context['code'],
|
||||
'message' => $batch_error_context['message'],
|
||||
'data' => $batch_error_context['filtered_errors'],
|
||||
], self::HTTP_BAD_REQUEST );
|
||||
}
|
||||
|
||||
return $this->error_response( $e );
|
||||
}
|
||||
|
||||
private function determine_batch_error_context( array $error_details ) {
|
||||
$error_config = [
|
||||
'invalid_variable_limit_reached' => [
|
||||
'batch_code' => 'batch_variables_limit_reached',
|
||||
'batch_message' => __( 'Batch operation failed: Reached the maximum number of variables', 'elementor' ),
|
||||
'status' => self::HTTP_BAD_REQUEST,
|
||||
'message' => __( 'Reached the maximum number of variables', 'elementor' ),
|
||||
],
|
||||
'duplicated_label' => [
|
||||
'batch_code' => 'batch_duplicated_label',
|
||||
'batch_message' => __( 'Batch operation failed: Variable labels already exist', 'elementor' ),
|
||||
'status' => self::HTTP_BAD_REQUEST,
|
||||
'message' => __( 'Variable label already exists', 'elementor' ),
|
||||
],
|
||||
'variable_not_found' => [
|
||||
'batch_code' => 'batch_variables_not_found',
|
||||
'batch_message' => __( 'Batch operation failed: Variables not found', 'elementor' ),
|
||||
'status' => self::HTTP_NOT_FOUND,
|
||||
'message' => __( 'Variable not found', 'elementor' ),
|
||||
],
|
||||
];
|
||||
|
||||
$grouped_errors = [];
|
||||
|
||||
foreach ( $error_details as $id => $error_detail ) {
|
||||
$error_code = $error_detail['code'] ?? '';
|
||||
|
||||
if ( isset( $error_config[ $error_code ] ) ) {
|
||||
$config = $error_config[ $error_code ];
|
||||
$grouped_errors[ $error_code ][ $id ] = [
|
||||
'status' => $config['status'],
|
||||
'message' => $config['message'],
|
||||
];
|
||||
} else {
|
||||
$grouped_errors['unknown'][ $id ] = [
|
||||
'status' => self::HTTP_SERVER_ERROR,
|
||||
'message' => $error_detail['message'] ?? __( 'Unexpected error', 'elementor' ),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
foreach ( $error_config as $error_code => $config ) {
|
||||
if ( ! empty( $grouped_errors[ $error_code ] ) ) {
|
||||
return [
|
||||
'code' => $config['batch_code'],
|
||||
'message' => $config['batch_message'],
|
||||
'filtered_errors' => $grouped_errors[ $error_code ],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
return [
|
||||
'code' => 'batch_operation_failed',
|
||||
'message' => __( 'Batch operation failed', 'elementor' ),
|
||||
'filtered_errors' => $grouped_errors['unknown'] ?? [],
|
||||
];
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Array_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Object_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Size_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Union_Prop_Type;
|
||||
use Elementor\Modules\Variables\PropTypes\Size_Variable_Prop_Type;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Size_Style_Schema {
|
||||
private $blacklist = [
|
||||
'box-shadow',
|
||||
'filter',
|
||||
'backdrop-filter',
|
||||
'transform',
|
||||
'transition',
|
||||
];
|
||||
|
||||
private function ignore( $css_property ): bool {
|
||||
if ( in_array( $css_property, $this->blacklist, true ) ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function augment( array $schema ): array {
|
||||
foreach ( $schema as $css_property => $prop_type ) {
|
||||
if ( $this->ignore( $css_property ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$schema[ $css_property ] = $this->update( $prop_type );
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
private function update( $prop_type ) {
|
||||
if ( $prop_type instanceof Size_Prop_Type ) {
|
||||
return $this->update_size( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Union_Prop_Type ) {
|
||||
return $this->update_union( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Object_Prop_Type ) {
|
||||
return $this->update_object( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Array_Prop_Type ) {
|
||||
return $this->update_array( $prop_type );
|
||||
}
|
||||
|
||||
return $prop_type;
|
||||
}
|
||||
|
||||
private function update_size( Size_Prop_Type $size_prop_type ): Union_Prop_Type {
|
||||
return Union_Prop_Type::create_from( $size_prop_type )
|
||||
->add_prop_type( Size_Variable_Prop_Type::make() );
|
||||
}
|
||||
|
||||
private function update_array( Array_Prop_Type $array_prop_type ): Array_Prop_Type {
|
||||
return $array_prop_type->set_item_type(
|
||||
$this->update( $array_prop_type->get_item_type() )
|
||||
);
|
||||
}
|
||||
|
||||
private function update_object( Object_Prop_Type $object_prop_type ): Object_Prop_Type {
|
||||
return $object_prop_type->set_shape(
|
||||
$this->augment( $object_prop_type->get_shape() )
|
||||
);
|
||||
}
|
||||
|
||||
private function update_union( Union_Prop_Type $union_prop_type ): Union_Prop_Type {
|
||||
foreach ( $union_prop_type->get_prop_types() as $prop_type ) {
|
||||
$updated = $this->update( $prop_type );
|
||||
|
||||
if ( $updated instanceof Union_Prop_Type ) {
|
||||
foreach ( $updated->get_prop_types() as $updated_prop_type ) {
|
||||
$union_prop_type->add_prop_type( $updated_prop_type );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $union_prop_type;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Array_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Base\Object_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Primitives\String_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Color_Prop_Type;
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Union_Prop_Type;
|
||||
use Elementor\Modules\Variables\PropTypes\Color_Variable_Prop_Type;
|
||||
use Elementor\Modules\Variables\PropTypes\Font_Variable_Prop_Type;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Style_Schema {
|
||||
public function augment( array $schema ): array {
|
||||
foreach ( $schema as $key => $prop_type ) {
|
||||
$schema[ $key ] = $this->update( $prop_type );
|
||||
if ( method_exists( $prop_type, 'get_meta' ) && method_exists( $schema[ $key ], 'meta' ) ) {
|
||||
$meta = $schema[ $key ]->get_meta() ?? [];
|
||||
foreach ( $meta as $meta_key => $meta_value ) {
|
||||
$schema[ $key ]->meta( $meta_key, $meta_value );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( isset( $schema['font-family'] ) ) {
|
||||
$schema['font-family'] = $this->update_font_family( $schema['font-family'] );
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
private function update( $prop_type ) {
|
||||
if ( $prop_type instanceof Color_Prop_Type ) {
|
||||
return $this->update_color( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Union_Prop_Type ) {
|
||||
return $this->update_union( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Object_Prop_Type ) {
|
||||
return $this->update_object( $prop_type );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Array_Prop_Type ) {
|
||||
return $this->update_array( $prop_type );
|
||||
}
|
||||
|
||||
return $prop_type;
|
||||
}
|
||||
|
||||
private function update_font_family( $prop_type ): Union_Prop_Type {
|
||||
|
||||
if ( $prop_type instanceof String_Prop_Type ) {
|
||||
return Union_Prop_Type::create_from( $prop_type )
|
||||
->add_prop_type( Font_Variable_Prop_Type::make() );
|
||||
}
|
||||
|
||||
if ( $prop_type instanceof Union_Prop_Type ) {
|
||||
$prop_type->add_prop_type( Font_Variable_Prop_Type::make() );
|
||||
}
|
||||
|
||||
return $prop_type;
|
||||
}
|
||||
|
||||
private function update_color( Color_Prop_Type $color_prop_type ): Union_Prop_Type {
|
||||
return Union_Prop_Type::create_from( $color_prop_type )
|
||||
->add_prop_type( Color_Variable_Prop_Type::make() );
|
||||
}
|
||||
|
||||
private function update_array( Array_Prop_Type $array_prop_type ): Array_Prop_Type {
|
||||
return $array_prop_type->set_item_type(
|
||||
$this->update( $array_prop_type->get_item_type() )
|
||||
);
|
||||
}
|
||||
|
||||
private function update_object( Object_Prop_Type $object_prop_type ): Object_Prop_Type {
|
||||
return $object_prop_type->set_shape(
|
||||
$this->augment( $object_prop_type->get_shape() )
|
||||
);
|
||||
}
|
||||
|
||||
private function update_union( Union_Prop_Type $union_prop_type ): Union_Prop_Type {
|
||||
foreach ( $union_prop_type->get_prop_types() as $prop_type ) {
|
||||
$updated = $this->update( $prop_type );
|
||||
|
||||
if ( $updated instanceof Union_Prop_Type ) {
|
||||
foreach ( $updated->get_prop_types() as $updated_prop_type ) {
|
||||
$union_prop_type->add_prop_type( $updated_prop_type );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $union_prop_type;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\AtomicWidgets\PropsResolver\Transformers_Registry;
|
||||
use Elementor\Modules\Variables\PropTypes\Color_Variable_Prop_Type;
|
||||
use Elementor\Modules\Variables\PropTypes\Font_Variable_Prop_Type;
|
||||
use Elementor\Modules\Variables\Transformers\Global_Variable_Transformer;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Style_Transformers {
|
||||
public function append_to( Transformers_Registry $transformers_registry ): self {
|
||||
$transformer = new Global_Variable_Transformer();
|
||||
|
||||
$transformers_registry->register( Color_Variable_Prop_Type::get_key(), $transformer );
|
||||
$transformers_registry->register( Font_Variable_Prop_Type::get_key(), $transformer );
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Transformable_Prop_Type;
|
||||
use InvalidArgumentException;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Variable_Types_Registry {
|
||||
private array $types = [];
|
||||
|
||||
public function register( string $key, Transformable_Prop_Type $prop_type ): void {
|
||||
$this->types[ $key ] = $prop_type;
|
||||
}
|
||||
|
||||
public function get( $key ) {
|
||||
return $this->types[ $key ] ?? null;
|
||||
}
|
||||
|
||||
public function all(): array {
|
||||
return $this->types;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Elementor\Modules\Variables\Classes;
|
||||
|
||||
use Elementor\Modules\Variables\Services\Variables_Service;
|
||||
use Elementor\Modules\Variables\Storage\Repository as Variables_Repository;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Variables {
|
||||
private static $lookup = [];
|
||||
|
||||
public static function init( Variables_Service $service ) {
|
||||
self::$lookup = $service->get_variables_list();
|
||||
}
|
||||
|
||||
public static function by_id( string $id ) {
|
||||
return self::$lookup[ $id ] ?? null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user