/var/www/html_us/wp-content/plugins/elementor/app/modules/import-export/processes/export.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
<?php

namespace Elementor\App\Modules\ImportExport\Processes;

use 
Elementor\App\Modules\ImportExport\Module;
use 
Elementor\App\Modules\ImportExport\Utils;
use 
Elementor\Core\Utils\Str;
use 
Elementor\Plugin;

use 
Elementor\App\Modules\ImportExport\Runners\Export\Elementor_Content;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Export_Runner_Base;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Plugins;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Site_Settings;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Taxonomies;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Templates;
use 
Elementor\App\Modules\ImportExport\Runners\Export\Wp_Content;

class 
Export {
    const 
ZIP_ARCHIVE_MODULE_MISSING 'zip-archive-module-is-missing';

    
/**
     * @var Export_Runner_Base[]
     */
    
protected $runners = [];

    
/**
     * Selected content types to export.
     *
     * @var array
     */
    
private $settings_include;

    
/**
     * The kit information. (e.g: title, description)
     *
     * @var array $export_data
     */
    
private $settings_kit_info;

    
/**
     * Selected plugins to export.
     * Contains the plugins essential data for export. (e.g: name, path, version, etc.)
     *
     * @var array
     */
    
private $settings_selected_plugins;

    
/**
     * Selected custom post types to export.
     *
     * @var array
     */
    
private $settings_selected_custom_post_types;

    
/**
     * The output data of the export process.
     * Will be written into the manifest.json file.
     *
     * @var array
     */
    
private $manifest_data;

    
/**
     * The zip archive object.
     *
     * @var \ZipArchive
     */
    
private $zip;

    public function 
__construct$settings = [] ) {
        
$this->settings_include = ! empty( $settings['include'] ) ? $settings['include'] : null;
        
$this->settings_kit_info = ! empty( $settings['kitInfo'] ) ? $settings['kitInfo'] : null;
        
$this->settings_selected_plugins = isset( $settings['plugins'] ) ? $settings['plugins'] : null;
        
$this->settings_selected_custom_post_types = isset( $settings['selectedCustomPostTypes'] ) ? $settings['selectedCustomPostTypes'] : null;
    }

    
/**
     * Register a runner.
     *
     * @param Export_Runner_Base $runner_instance
     */
    
public function registerExport_Runner_Base $runner_instance ) {
        
$this->runners$runner_instance::get_name() ] = $runner_instance;
    }

    public function 
register_default_runners() {
        
$this->register( new Site_Settings() );
        
$this->register( new Plugins() );
        
$this->register( new Templates() );
        
$this->register( new Taxonomies() );
        
$this->register( new Elementor_Content() );
        
$this->register( new Wp_Content() );
    }

    
/**
     * Execute the export process.
     *
     * @return array The export data output.
     *
     * @throws \Exception If no export runners have been specified.
     */
    
public function run() {
        if ( empty( 
$this->runners ) ) {
            throw new 
\Exception'Couldn’t execute the export process because no export runners have been specified. Try again by specifying export runners.' );
        }

        
$this->set_default_settings();

        
$this->init_zip_archive();
        
$this->init_manifest_data();

        
$data = [
            
'include' => $this->settings_include,
            
'selected_plugins' => $this->settings_selected_plugins,
            
'selected_custom_post_types' => $this->settings_selected_custom_post_types,
        ];

        foreach ( 
$this->runners as $runner ) {
            if ( 
$runner->should_export$data ) ) {
                
$export_result $runner->export$data );
                
$this->handle_export_result$export_result );
            }
        }

        
$this->add_json_file'manifest'$this->manifest_data );

        
$zip_file_name $this->zip->filename;
        
$this->zip->close();

        return [
            
'manifest' => $this->manifest_data,
            
'file_name' => $zip_file_name,
        ];
    }

    
/**
     * Set default settings for the export.
     */
    
private function set_default_settings() {
        if ( ! 
is_array$this->get_settings_include() ) ) {
            
$this->settings_include$this->get_default_settings_include() );
        }

        if ( ! 
is_array$this->get_settings_kit_info() ) ) {
            
$this->settings_kit_info$this->get_default_settings_kit_info() );
        }

        if ( ! 
is_array$this->get_settings_selected_custom_post_types() ) && in_array'content'$this->settings_includetrue ) ) {
            
$this->settings_selected_custom_post_types$this->get_default_settings_custom_post_types() );
        }

        if ( ! 
is_array$this->get_settings_selected_plugins() ) && in_array'plugins'$this->settings_includetrue ) ) {
            
$this->settings_selected_plugins$this->get_default_settings_selected_plugins() );
        }
    }

    public function 
settings_include$include ) {
        
$this->settings_include $include;
    }

    public function 
get_settings_include() {
        return 
$this->settings_include;
    }

    private function 
settings_kit_info$kit_info ) {
        
$this->settings_kit_info $kit_info;
    }

    private function 
get_settings_kit_info() {
        return 
$this->settings_kit_info;
    }

    public function 
settings_selected_custom_post_types$selected_custom_post_types ) {
        
$this->settings_selected_custom_post_types $selected_custom_post_types;
    }

    public function 
get_settings_selected_custom_post_types() {
        return 
$this->settings_selected_custom_post_types;
    }

    public function 
settings_selected_plugins$plugins ) {
        
$this->settings_selected_plugins $plugins;
    }

    public function 
get_settings_selected_plugins() {
        return 
$this->settings_selected_plugins;
    }

    
/**
     * Get the default settings of which content types should be exported.
     *
     * @return array
     */
    
private function get_default_settings_include() {
        return [ 
'templates''content''settings''plugins' ];
    }

    
/**
     * Get the default settings of the kit info.
     *
     * @return array
     */
    
private function get_default_settings_kit_info() {
        return [
            
'title' => 'kit',
            
'description' => '',
        ];
    }

    
/**
     * Get the default settings of the plugins that should be exported.
     *
     * @return array{name: string, plugin:string, pluginUri: string, version: string}
     */
    
private function get_default_settings_selected_plugins() {
        
$installed_plugins Plugin::$instance->wp->get_plugins();

        return 
$installed_plugins->map( function ( $item$key ) {
            return [
                
'name' => $item['Name'],
                
'plugin' => $key,
                
'pluginUri' => $item['PluginURI'],
                
'version' => $item['Version'],
            ];
        } )->
all();
    }

    
/**
     * Get the default settings of all the custom post types that should be exported.
     * Should be all the custom post types that are not built in to WordPress and not part of Elementor.
     *
     * @return array
     */
    
private function get_default_settings_custom_post_types() {
        return 
Utils::get_registered_cpt_names();
    }

    
/**
     * Init the zip archive.
     */
    
private function init_zip_archive() {
        if ( ! 
class_exists'\ZipArchive' ) ) {
            throw new 
\Error( static::ZIP_ARCHIVE_MODULE_MISSING );
        }

        
$zip = new \ZipArchive();

        
$temp_dir Plugin::$instance->uploads_manager->create_unique_dir();

        
$zip_file_name $temp_dir sanitize_title$this->settings_kit_info['title'] ) . '.zip';

        
$zip->open$zip_file_name\ZipArchive::CREATE \ZipArchive::OVERWRITE );

        
$this->zip $zip;
    }

    
/**
     * Init the manifest data and add some basic info to it.
     */
    
private function init_manifest_data() {
        
$kit_post Plugin::$instance->kits_manager->get_active_kit()->get_post();

        
$manifest_data = [
            
'name' => sanitize_title$this->settings_kit_info['title'] ),
            
'title' => $this->settings_kit_info['title'],
            
'description' => $this->settings_kit_info['description'],
            
'author' => get_the_author_meta'display_name'$kit_post->post_author ),
            
'version' => Module::FORMAT_VERSION,
            
'elementor_version' => ELEMENTOR_VERSION,
            
'created' => gmdate'Y-m-d H:i:s' ),
            
'thumbnail' => get_the_post_thumbnail_url$kit_post ),
            
'site' => get_site_url(),
        ];

        
$this->manifest_data $manifest_data;
    }

    
/**
     * Handle the export process output.
     * Add the manifest data from the runner to the manifest.json file.
     * Create files according to the files array that should be exported by the runner.
     *
     * @param array $export_result
     */
    
private function handle_export_result$export_result ) {
        foreach ( 
$export_result['manifest'] as $data ) {
            
$this->manifest_data += $data;
        }

        if ( isset( 
$export_result['files']['path'] ) ) {
            
$export_result['files'] = [ $export_result['files'] ];
        }

        foreach ( 
$export_result['files'] as $file ) {
            
$file_extension pathinfo$file['path'], PATHINFO_EXTENSION );
            if ( empty( 
$file_extension ) ) {
                
$this->add_json_file(
                    
$file['path'],
                    
$file['data']
                );
            } else {
                
$this->add_file(
                    
$file['path'],
                    
$file['data']
                );
            }
        }
    }

    
/**
     * Add json file to the zip archive.
     *
     * @param string $path The relative path to the file.
     * @param array $content The content of the file.
     * @param int $json_flags
     */
    
private function add_json_file$path, array $content$json_flags ) {
        if ( ! 
Str::ends_with$path'.json' ) ) {
            
$path .= '.json';
        }

        
$this->add_file$pathwp_json_encode$content$json_flags ) );
    }

    
/**
     * Add file to the zip archive.
     *
     * @param string $file
     * @param string $content The content of the file.
     */
    
private function add_file$file$content ) {
        
$this->zip->addFromString$file$content );
    }
}