/var/www/html/wp-content/plugins/elementor/core/files/base.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
<?php
namespace Elementor\Core\Files;

use 
Elementor\Plugin;

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

abstract class 
Base {

    const 
UPLOADS_DIR 'elementor/';

    const 
DEFAULT_FILES_DIR 'css/';

    const 
META_KEY '';

    private static 
$wp_uploads_dir = [];

    private 
$files_dir;

    private 
$file_name;

    
/**
     * File path.
     *
     * Holds the file path.
     *
     * @access private
     *
     * @var string
     */
    
private $path;

    
/**
     * Content.
     *
     * Holds the file content.
     *
     * @access private
     *
     * @var string
     */
    
private $content;

    
/**
     * @since 2.1.0
     * @access public
     * @static
     */
    
public static function get_base_uploads_dir() {
        
$wp_upload_dir self::get_wp_uploads_dir();

        return 
$wp_upload_dir['basedir'] . '/' self::UPLOADS_DIR;
    }

    
/**
     * @since 2.1.0
     * @access public
     * @static
     */
    
public static function get_base_uploads_url() {
        
$wp_upload_dir self::get_wp_uploads_dir();

        return 
$wp_upload_dir['baseurl'] . '/' self::UPLOADS_DIR;
    }

    
/**
     * Use a create function for PhpDoc (@return static).
     *
     * @return static
     */
    
public static function create() {
        return 
Plugin::$instance->files_manager->getget_called_class(), func_get_args() );
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function __construct$file_name ) {
        
/**
         * Elementor File Name
         *
         * Filters the File name
         *
         * @since 2.3.0
         *
         * @param string   $file_name
         * @param object $this The file instance, which inherits Elementor\Core\Files
         */
        
$file_name apply_filters'elementor/files/file_name'$file_name$this );

        
$this->set_file_name$file_name );

        
$this->set_files_dir( static::DEFAULT_FILES_DIR );

        
$this->set_path();
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function set_files_dir$files_dir ) {
        
$this->files_dir $files_dir;
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function set_file_name$file_name ) {
        
$this->file_name $file_name;
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function get_file_name() {
        return 
$this->file_name;
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function get_url() {
        
$url set_url_schemeself::get_base_uploads_url() . $this->files_dir $this->file_name );

        return 
add_query_arg( [ 'ver' => $this->get_meta'time' ) ], $url );
    }

    
/**
     * Get Path
     *
     * Returns the local path of the generated file.
     *
     * @since 3.5.0
     * @access public
     *
     * @return string
     */
    
public function get_path() {
        return 
set_url_schemeself::get_base_uploads_dir() . $this->files_dir $this->file_name );
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function get_content() {
        if ( ! 
$this->content ) {
            
$this->content $this->parse_content();
        }

        return 
$this->content;
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function update() {
        
$this->update_file();

        
$meta $this->get_meta();

        
$meta['time'] = time();

        
$this->update_meta$meta );
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function update_file() {
        
$this->content $this->parse_content();

        if ( 
$this->content ) {
            
$this->write();
        } else {
            
$this->delete();
        }
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function write() {
        return 
file_put_contents$this->path$this->content );
    }

    
/**
     * @since 2.1.0
     * @access public
     */
    
public function delete() {
        if ( 
file_exists$this->path ) ) {
            
unlink$this->path );
        }

        
$this->delete_meta();
    }

    
/**
     * Get meta data.
     *
     * Retrieve the CSS file meta data. Returns an array of all the data, or if
     * custom property is given it will return the property value, or `null` if
     * the property does not exist.
     *
     * @since 2.1.0
     * @access public
     *
     * @param string $property Optional. Custom meta data property. Default is
     *                         null.
     *
     * @return array|null An array of all the data, or if custom property is
     *                    given it will return the property value, or `null` if
     *                    the property does not exist.
     */
    
public function get_meta$property null ) {
        
$meta array_merge$this->get_default_meta(), (array) $this->load_meta() );

        if ( 
$property ) {
            return isset( 
$meta$property ] ) ? $meta$property ] : null;
        }

        return 
$meta;
    }

    
/**
     * @since 2.1.0
     * @access protected
     * @abstract
     */
    
abstract protected function parse_content();

    
/**
     * Load meta.
     *
     * Retrieve the file meta data.
     *
     * @since 2.1.0
     * @access protected
     */
    
protected function load_meta() {
        return 
get_option( static::META_KEY );
    }

    
/**
     * Update meta.
     *
     * Update the file meta data.
     *
     * @since 2.1.0
     * @access protected
     *
     * @param array $meta New meta data.
     */
    
protected function update_meta$meta ) {
        
update_option( static::META_KEY$meta );
    }

    
/**
     * Delete meta.
     *
     * Delete the file meta data.
     *
     * @since 2.1.0
     * @access protected
     */
    
protected function delete_meta() {
        
delete_option( static::META_KEY );
    }

    
/**
     * @since 2.1.0
     * @access protected
     */
    
protected function get_default_meta() {
        return [
            
'time' => 0,
        ];
    }

    
/**
     * @since 2.1.0
     * @access private
     * @static
     */
    
private static function get_wp_uploads_dir() {
        global 
$blog_id;
        if ( empty( 
self::$wp_uploads_dir$blog_id ] ) ) {
            
self::$wp_uploads_dir$blog_id ] = wp_upload_dirnullfalse );
        }

        return 
self::$wp_uploads_dir$blog_id ];
    }

    
/**
     * @since 2.1.0
     * @access private
     */
    
private function set_path() {
        
$dir_path self::get_base_uploads_dir() . $this->files_dir;

        if ( ! 
is_dir$dir_path ) ) {
            
wp_mkdir_p$dir_path );
        }

        
$this->path $dir_path $this->file_name;
    }
}