/var/www/html/wp-content/plugins/elementor/data/v2/base/controller.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<?php
namespace Elementor\Data\V2\Base;

use 
Elementor\Data\V2\Base\Exceptions\WP_Error_Exception;
use 
Elementor\Data\V2\Manager;
use 
WP_REST_Controller;

if ( ! 
defined'ABSPATH' ) ) {
    exit; 
// Exit if accessed directly
}

/**
 * TODO: Utilize 'WP_REST_Controller' as much as possible.
 */
abstract class Controller extends WP_REST_Controller {

    
/**
     * Loaded endpoint(s).
     *
     * @var \Elementor\Data\V2\Base\Endpoint[]
     */
    
public $endpoints = [];

    
/**
     * Index endpoint.
     *
     * @var \Elementor\Data\V2\Base\Endpoint\Index
     */
    
public $index_endpoint null;

    
/**
     * Loaded processor(s).
     *
     * @var \Elementor\Data\V2\Base\Processor[][]
     */
    
public $processors = [];

    
/**
     * @var \Elementor\Data\V2\Base\Controller|null
     */
    
private $parent null;

    
/**
     * @var \Elementor\Data\V2\Base\Controller[]
     */
    
private $sub_controllers = [];

    public static function 
get_default_namespace() {
        return 
Manager::ROOT_NAMESPACE;
    }

    public static function 
get_default_version() {
        return 
Manager::VERSION;
    }

    
/**
     * Get controller name.
     *
     * @return string
     */
    
abstract public function get_name();

    
/**
     * Register endpoints.
     */
    
public function register_endpoints() {
    }

    public function 
register_routes() {
        
_doing_it_wrong'Elementor\Data\V2\Controller::register_routes'sprintf"Method '%s' deprecated. use `register_endpoints()`."__METHOD__ ), '3.5.0' );
    }

    
/**
     * Get parent controller name.
     *
     * @note: If `get_parent_name()` provided, controller will work as sub-controller.
     *
     * @returns null|string
     */
    
public function get_parent_name() {
        return 
null;
    }

    
/**
     * Get full controller name.
     *
     * The method exist to handle situations when parent exist, to include the parent name.
     *
     * @return string
     */
    
public function get_full_name() {
        if ( ! 
$this->parent ) {
            return 
$this->get_name();
        }

        return 
$this->parent->get_name() . '/' $this->get_name();
    }

    
/**
     * Get controller namespace.
     *
     * @return string
     */
    
public function get_namespace() {
        return 
$this->namespace;
    }

    
/**
     * Get controller reset base.
     *
     * @return string
     */
    
public function get_base_route() {
        if ( ! 
$this->parent ) {
            return 
$this->rest_base;
        }

        return 
$this->parent->get_base_route() . '/' $this->get_name();
    }

    
/**
     * Get controller route.
     *
     * @return string
     */
    
public function get_controller_route() {
        return 
$this->get_namespace() . '/' $this->get_base_route();
    }

    
/**
     * Retrieves rest route(s) index for current controller.
     *
     * @return \WP_REST_Response|\WP_Error
     */
    
public function get_controller_index() {
        
$server rest_get_server();
        
$routes $server->get_routes();

        
$endpoints array_intersect_key$server->get_routes(), $routes );

        
$controller_route $this->get_controller_route();

        
array_walk$endpoints, function ( &$item$endpoint ) use ( &$endpoints$controller_route ) {
            if ( ! 
strstr$endpoint$controller_route ) ) {
                unset( 
$endpoints$endpoint ] );
            }
        } );

        
$data = [
            
'namespace' => $this->get_namespace(),
            
'controller' => $controller_route,
            
'routes' => $server->get_data_for_routes$endpoints ),
        ];

        
$response rest_ensure_response$data );

        
// Link to the root index.
        
$response->add_link'up'rest_url'/' ) );

        return 
$response;
    }

    
/**
     * Get items args of index endpoint.
     *
     * Is method is used when `get_collection_params()` is not enough, and need of knowing the methods is required.
     *
     * @param string $methods
     *
     * @return array
     */
    
public function get_items_args$methods ) {
        if ( 
\WP_REST_Server::READABLE === $methods ) {
            return 
$this->get_collection_params();
        }

        return [];
    }

    
/**
     * Get item args of index endpoint.
     *
     * @param string $methods
     *
     * @return array
     */
    
public function get_item_args$methods ) {
        return [];
    }

    
/**
     * Get permission callback.
     *
     * Default controller permission callback.
     * By default endpoint will inherit the permission callback from the controller.
     *
     * @param \WP_REST_Request $request
     *
     * @return bool
     */
    
public function get_permission_callback$request ) {
        
$is_multi = (bool) $request->get_param'is_multi' );

        
$result false;

        
// The function is public since endpoint need to access it.
        // Utilize 'WP_REST_Controller' get_permission_check methods.
        
switch ( $request->get_method() ) {
            case 
'GET':
                
$result $is_multi $this->get_items_permissions_check$request ) : $this->get_item_permissions_check$request );
                break;
            case 
'POST':
                
$result $is_multi $this->create_items_permissions_check$request ) : $this->create_item_permissions_check$request );
                break;
            case 
'UPDATE':
            case 
'PUT':
            case 
'PATCH':
                
$result $is_multi $this->update_items_permissions_check$request ) : $this->update_item_permissions_check$request );
                break;

            case 
'DELETE':
                
$result $is_multi $this->delete_items_permissions_check$request ) : $this->delete_item_permissions_check$request );
                break;
        }

        if ( 
$result instanceof \WP_Error ) {
            throw new 
WP_Error_Exception$result );
        }

        return 
$result;
    }

    
/**
     * Checks if a given request has access to create items.
     **
     *
     * @param \WP_REST_Request $request Full details about the request.
     *
     * @return true|\WP_Error True if the request has access to create items, WP_Error object otherwise.
     */
    
public function create_items_permissions_check$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    
/**
     * Checks if a given request has access to update items.
     *
     * @param \WP_REST_Request $request Full details about the request.
     *
     * @return true|\WP_Error True if the request has access to update the item, WP_Error object otherwise.
     */
    
public function update_items_permissions_check$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    
/**
     * Checks if a given request has access to delete items.
     *
     * @param \WP_REST_Request $request Full details about the request.
     *
     * @return true|\WP_Error True if the request has access to delete the item, WP_Error object otherwise.
     */
    
public function delete_items_permissions_check$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    public function 
get_items$request ) {
        return 
$this->get_controller_index();
    }

    
/**
     * Creates multiple items.
     *
     * @param \WP_REST_Request $request Full data about the request.
     *
     * @return \WP_Error|\WP_REST_Response Response object on success, or WP_Error object on failure.
     */
    
public function create_items$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    
/**
     * Updates multiple items.
     *
     * @param \WP_REST_Request $request Full data about the request.
     *
     * @return \WP_Error|\WP_REST_Response Response object on success, or WP_Error object on failure.
     */
    
public function update_items$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    
/**
     * Delete multiple items.
     *
     * @param \WP_REST_Request $request Full data about the request.
     *
     * @return \WP_Error|\WP_REST_Response Response object on success, or WP_Error object on failure.
     */
    
public function delete_items$request ) {
        return new 
\WP_Error'invalid-method'sprintf"Method '%s' not implemented. Must be overridden in subclass."__METHOD__ ), [ 'status' => 405 ] );
    }

    
/**
     * Get the parent controller.
     *
     * @return \Elementor\Data\V2\Base\Controller|null
     */
    
public function get_parent() {
        return 
$this->parent;
    }

    
/**
     * Get sub controller(s).
     *
     * @return \Elementor\Data\V2\Base\Controller[]
     */
    
public function get_sub_controllers() {
        return 
$this->sub_controllers;
    }

    
/**
     * Get processors.
     *
     * @param string $command
     *
     * @return \Elementor\Data\V2\Base\Processor[]
     */
    
public function get_processors$command ) {
        
$result = [];

        if ( isset( 
$this->processors$command ] ) ) {
            
$result $this->processors$command ];
        }

        return 
$result;
    }

    
/**
     * Register processors.
     */
    
public function register_processors() {
    }

    
/**
     * Register index endpoint.
     */
    
protected function register_index_endpoint() {
        if ( ! 
$this->parent ) {
            
$this->register_endpoint( new Endpoint\Index$this ) );

            return;
        }

        
$this->register_endpoint( new Endpoint\Index\Sub_Index_Endpoint$this ) );
    }

    
/**
     * Register endpoint.
     *
     * @param \Elementor\Data\V2\Base\Endpoint $endpoint
     *
     * @return \Elementor\Data\V2\Base\Endpoint
     */
    
protected function register_endpointEndpoint $endpoint ) {
        
$command $endpoint->get_full_command();

        if ( 
$endpoint instanceof Endpoint\Index ) {
            
$this->index_endpoint $endpoint;
        } else {
            
$this->endpoints$command ] = $endpoint;
        }

        
$format $endpoint->get_format();

        
// `$e.data.registerFormat()`.
        
Manager::instance()->register_endpoint_format$command$format );

        return 
$endpoint;
    }

    
/**
     * Register a processor.
     *
     * That will be later attached to the endpoint class.
     *
     * @param Processor $processor
     *
     * @return \Elementor\Data\V2\Base\Processor $processor_instance
     */
    
protected function register_processorProcessor $processor ) {
        
$command $processor->get_command();

        if ( ! isset( 
$this->processors$command ] ) ) {
            
$this->processors$command ] = [];
        }

        
$this->processors$command ] [] = $processor;

        return 
$processor;
    }

    
/**
     * Register.
     *
     * Endpoints & processors.
     */
    
protected function register() {
        
$this->register_index_endpoint();
        
$this->register_endpoints();

        
// Aka hooks.
        
$this->register_processors();
    }

    
/**
     * Get collection params by 'additionalProperties' context.
     *
     * @param string $context
     *
     * @return array
     */
    
protected function get_collection_params_by_additional_props_context$context ) {
        
$result = [];

        
$collection_params $this->get_collection_params();

        foreach ( 
$collection_params as $collection_param_key => $collection_param ) {
            if ( isset( 
$collection_param['additionalProperties']['context'] ) && $context === $collection_param['additionalProperties']['context'] ) {
                
$result$collection_param_key ] = $collection_param;
            }
        }

        return 
$result;
    }

    
/**
     * When `$this->get_parent_name` is extended, the controller will have a parent, and will know to behave like a sub-controller.
     *
     * @param string $parent_name
     */
    
private function act_as_sub_controller$parent_name ) {
        
$this->parent Manager::instance()->get_controller$parent_name );

        if ( ! 
$this->parent ) {
            
trigger_error"Cannot find parent controller: '$parent_name'"E_USER_ERROR ); // phpcs:ignore
        
}

        
$this->parent->sub_controllers [] = $this;
    }

    
/**
     * Controller constructor.
     *
     * Register endpoints on 'rest_api_init'.
     */
    
public function __construct() {
        
$this->namespace = static::get_default_namespace() . '/v' . static::get_default_version();
        
$this->rest_base $this->get_name();

        
add_action'rest_api_init', function () {
            
$this->register(); // Because 'register' is protected.
        
} );

        
/**
         * Since all actions were removed for custom internal REST server.
         * Re-add the actions.
         */
        
add_action'elementor_rest_api_before_init', function () {
            
add_action'rest_api_init', function () {
                
$this->register();
            } );
        } );

        
$parent_name $this->get_parent_name();
        if ( 
$parent_name ) {
            
$this->act_as_sub_controller$parent_name );
        }
    }
}