/var/www/html_us/wp-content/plugins/elementor/modules/wp-cli/library.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
<?php
namespace Elementor\Modules\WpCli;

use 
Elementor\Api;
use 
Elementor\Plugin;
use 
Elementor\TemplateLibrary\Source_Local;

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

/**
 * Elementor Page Builder cli tools.
 */
class Library extends \WP_CLI_Command {

    
/**
     * Sync Elementor Library.
     *
     * [--network]
     *      Sync library in all the sites in the network.
     *
     * [--force]
     *      Force sync even if it's looks like that the library is already up to date.
     *
     * ## EXAMPLES
     *
     *  1. wp elementor library sync
     *      - This will sync the library with Elementor cloud library.
     *
     *  2. wp elementor library sync --force
     *      - This will sync the library with Elementor cloud even if it's looks like that the library is already up to date.
     *
     *  3. wp elementor library sync --network
     *      - This will sync the library with Elementor cloud library for each site in the network if needed.
     *
     * @since 2.8.0
     * @access public
     */
    
public function sync$args$assoc_args ) {
        
$network = isset( $assoc_args['network'] ) && is_multisite();

        if ( 
$network ) {
            
$blog_ids get_sites( [
                
'fields' => 'ids',
                
'number' => 0,
            ] );

            foreach ( 
$blog_ids as $blog_id ) {
                
switch_to_blog$blog_id );

                
\WP_CLI::line'Site #' $blog_id ' - ' get_option'blogname' ) );

                
$this->do_sync( isset( $assoc_args['force'] ) );

                
\WP_CLI::success'Done! - ' get_option'home' ) );

                
restore_current_blog();
            }
        } else {
            
$this->do_sync( isset( $assoc_args['force'] ) );
            
\WP_CLI::success'Done!' );
        }
    }

    
/**
     * Import template files to the Library.
     *
     *  [--returnType]
     *      Forms of output. Possible values are 'ids', 'info'.
     *      if this parameter won't be specified, the import info will be output.
     *
     * ## EXAMPLES
     *
     *  1. wp elementor library import <file-path>
     *      - This will import a file or a zip of multiple files to the library.
     *      - file-path can be a path or url.
     *
     *  2. wp elementor library import <file-path> --returnType=info,ids
     *
     * @param $args
     * @param $assoc_args
     *
     * @since  2.8.0
     * @access public
     */
    
public function import$args$assoc_args ) {
        if ( empty( 
$args[0] ) ) {
            
\WP_CLI::error'Please set file path.' );
        }

        
$file $args[0];
        
$imported_items_ids = [];
        
$return_type \WP_CLI\Utils\get_flag_value$assoc_args'returnType''info' );

        
/** @var Source_Local $source */
        
$source Plugin::$instance->templates_manager->get_source'local' );

        if ( 
filter_var$fileFILTER_VALIDATE_URL ) ) {
            
$tmp_path download_url$file );
            if ( 
is_wp_error$tmp_path ) ) {
                
\WP_CLI::error$tmp_path->get_error_message() );
            }
            
$file $tmp_path;
        }

        
$imported_items $source->import_templatebasename$file ), $file );

        if ( 
is_wp_error$imported_items ) ) {
            
\WP_CLI::error$imported_items->get_error_message() );
        }

        foreach ( 
$imported_items as $item ) {
            
$imported_items_ids[] = $item['template_id'];
        }
        
$imported_items_ids implode','$imported_items_ids );

        if ( 
'ids' === $return_type ) {
            
\WP_CLI::line$imported_items_ids );
        } else {
            
\WP_CLI::successcount$imported_items ) . ' item(s) has been imported.' );
        }

        if ( isset( 
$tmp_path ) ) {
            
// Remove the temporary file, now that we're done with it.
            
Plugin::$instance->uploads_manager->remove_file_or_dir$file );
        }
    }

    
/**
     * Import all template files from a directory.
     *
     * ## EXAMPLES
     *
     *  1. wp elementor library import-dir <file-path>
     *      - This will import all JSON files from <file-path>
     *
     * @param $args
     *
     * @since  3.4.7
     * @access public
     * @alias import-dir
     */
    
public function import_dir$args ) {
        if ( empty( 
$args[0] ) ) {
            
\WP_CLI::error'Please set dir path.' );
        }

        
$dir $args[0];

        if ( ! 
file_exists$dir ) ) {
            
\WP_CLI::error"Dir `{$dir}` not found." );
        }

        
$files glob$dir '/*.json' );

        if ( empty( 
$files ) ) {
            
\WP_CLI::error'Files not found.' );
        }

        
/** @var Source_Local $source */
        
$source Plugin::$instance->templates_manager->get_source'local' );

        
$succeed = [];
        
$errors = [];

        foreach ( 
$files as $file ) {
            
$basename basename$file );

            if ( ! 
file_exists$file ) ) {
                
$errors$basename ] = $file ' file not found.';
                continue;
            }

            
$imported_items $source->import_template$basename$file );

            if ( 
is_wp_error$imported_items ) ) {
                
$errors$basename ] = $imported_items->get_error_message();
            } else {
                
$succeed$basename ] = true;
            }
        }

        
$succeed_message count$succeed ) . ' item(s) has been imported.';

        if ( ! empty( 
$errors ) ) {
            
$error_message var_export$errors);
            if ( ! empty( 
$succeed ) ) {
                
$error_message $succeed_message ' ' count$errors ) . ' has errors: ' $error_message;
            }
            
\WP_CLI::error$error_message );
        }

        
\WP_CLI::success$succeed_message );
    }

    
/**
     * Connect site to Elementor Library.
     * (Network is not supported)
     *
     * --user
     *      The user to connect <id|login|email>
     *
     * --token
     *      A connect token from Elementor Account Dashboard.
     *
     * ## EXAMPLES
     *
     *  1. wp elementor library connect --user=admin --token=<connect-cli-token>
     *      - This will connect the admin to Elementor library.
     *
     * @param $args
     * @param $assoc_args
     *
     * @since  2.8.0
     * @access public
     */
    
public function connect$args$assoc_args ) {
        if ( ! 
get_current_user_id() ) {
            
\WP_CLI::error'Please set user to connect (--user=<id|login|email>).' );
        }

        if ( empty( 
$assoc_args['token'] ) ) {
            
\WP_CLI::error'Please set connect token.' );
        }

        
$_REQUEST['mode'] = 'cli';
        
$_REQUEST['token'] = $assoc_args['token'];

        
$app $this->get_library_app();

        
$app->set_auth_mode'cli' );

        
$app->action_authorize();

        
$app->action_get_token();
    }

    
/**
     * Disconnect site from Elementor Library.
     *
     * --user
     *      The user to disconnect <id|login|email>
     *
     * ## EXAMPLES
     *
     *  1. wp elementor library disconnect --user=admin
     *      - This will disconnect the admin from Elementor library.
     *
     * @param $args
     * @param $assoc_args
     *
     * @since  2.8.0
     * @access public
     */
    
public function disconnect() {
        if ( ! 
get_current_user_id() ) {
            
\WP_CLI::error'Please set user to connect (--user=<id|login|email>).' );
        }

        
$_REQUEST['mode'] = 'cli';

        
$this->get_library_app()->action_disconnect();
    }

    private function 
do_sync() {
        
$data Api::get_library_datatrue );

        if ( empty( 
$data ) ) {
            
\WP_CLI::error'Cannot sync library.' );
        }
    }

    
/**
     * @return \Elementor\Core\Common\Modules\Connect\Apps\Library
     */
    
private function get_library_app() {
        
$connect Plugin::$instance->common->get_component'connect' );
        
$app $connect->get_app'library' );
        
// Before init.
        
if ( ! $app ) {
            
$connect->init();
            
$app $connect->get_app'library' );
        }

        return 
$app;
    }
}