C:\xampp\htdocs\landing\wp-content\plugins\imagify\classes\Optimization\Data\AbstractData.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
<?php
namespace Imagify\Optimization\Data;

use 
Imagify\Media\MediaInterface;

defined'ABSPATH' ) || die( 'Cheatin’ uh?' );

/**
 * Abstract class used to handle the optimization data of "media groups" (aka attachments).
 *
 * @since  1.9
 * @author Grégory Viguier
 */
abstract class AbstractData implements DataInterface {

    
/**
     * Optimization data structure.
     * This is the format returned when we "get" optimization data from the DB.
     *
     * @var    array
     * @since  1.9
     * @access protected
     * @see    $this->get_optimization_data()
     * @author Grégory Viguier
     */
    
protected $default_optimization_data = [
        
'status' => '',
        
'level'  => false,
        
'sizes'  => [],
        
'stats'  => [
            
'original_size'  => 0,
            
'optimized_size' => 0,
            
'percent'        => 0,
        ],
    ];

    
/**
     * The media object.
     *
     * @var    MediaInterface
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $media;

    
/**
     * Filesystem object.
     *
     * @var    object Imagify_Filesystem
     * @since  1.9
     * @access protected
     * @author Grégory Viguier
     */
    
protected $filesystem;

    
/**
     * The constructor.
     *
     * @since  1.9
     * @access public
     * @see    self::constructor_accepts()
     * @author Grégory Viguier
     *
     * @param mixed $id An ID, or whatever type the constructor accepts.
     */
    
public function __construct$id ) {
        
// Set the Media instance.
        
if ( $id instanceof MediaInterface ) {
            
$this->media $id;
        } elseif ( static::
constructor_accepts$id ) ) {
            
$media_class str_replace'\\Optimization\\Data\\''\\Media\\'get_called_class() );
            
$media_class '\\' ltrim$media_class'\\' );
            
$this->media = new $media_class$id );
        } else {
            
$this->media false;
        }

        
$this->filesystem = \Imagify_Filesystem::get_instance();
    }

    
/**
     * Tell if the given entry can be accepted in the constructor.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  mixed $id Whatever.
     * @return bool
     */
    
public static function constructor_accepts$id ) {
        if ( 
$id instanceof MediaInterface ) {
            return 
true;
        }

        
$media_class str_replace'\\Optimization\\Data\\''\\Media\\'get_called_class() );
        
$media_class '\\' ltrim$media_class'\\' );

        return 
$media_class::constructor_accepts$id );
    }

    
/**
     * Get the media instance.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return MediaInterface|false
     */
    
public function get_media() {
        return 
$this->media;
    }

    
/**
     * Tell if the current media is valid.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool
     */
    
public function is_valid() {
        return 
$this->get_media() && $this->get_media()->is_valid();
    }


    
/** ----------------------------------------------------------------------------------------- */
    /** OPTIMIZATION DATA ======================================================================= */
    /** ----------------------------------------------------------------------------------------- */

    /**
     * Check if the main file is optimized (by Imagify).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool True if the media is optimized.
     */
    
public function is_optimized() {
        return 
'success' === $this->get_optimization_status();
    }

    
/**
     * Check if the main file is optimized (NOT by Imagify).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool True if the media is optimized.
     */
    
public function is_already_optimized() {
        return 
'already_optimized' === $this->get_optimization_status();
    }

    
/**
     * Check if the main file is optimized (by Imagify).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return bool True if the media is optimized.
     */
    
public function is_error() {
        return 
'error' === $this->get_optimization_status();
    }

    
/**
     * Get the media's optimization level.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return int|false The optimization level. False if not optimized.
     */
    
public function get_optimization_level() {
        if ( ! 
$this->is_valid() ) {
            return 
false;
        }

        
$data $this->get_optimization_data();
        return 
$data['level'];
    }

    
/**
     * Get the media's optimization status (success or error).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return string The optimization status. An empty string if there is none.
     */
    
public function get_optimization_status() {
        if ( ! 
$this->is_valid() ) {
            return 
'';
        }

        
$data $this->get_optimization_data();
        return 
$data['status'];
    }

    
/**
     * Count number of optimized sizes.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return int Number of optimized sizes.
     */
    
public function get_optimized_sizes_count() {
        
$data  $this->get_optimization_data();
        
$count 0;

        if ( ! 
$data['sizes'] ) {
            return 
0;
        }

        
$context_sizes $this->get_media()->get_media_files();
        
$data['sizes'] = array_intersect_key$data['sizes'], $context_sizes );

        if ( ! 
$data['sizes'] ) {
            return 
0;
        }

        foreach ( 
$data['sizes'] as $size ) {
            if ( ! empty( 
$size['success'] ) ) {
                
$count++;
            }
        }

        return 
$count;
    }

    
/**
     * Get the original media's size (weight).
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  bool $human_format True to display the image human format size (1Mb).
     * @param  int  $decimals     Precision of number of decimal places.
     * @return string|int
     */
    
public function get_original_size$human_format true$decimals ) {
        if ( ! 
$this->is_valid() ) {
            return 
$human_format imagify_size_format0$decimals ) : 0;
        }

        
$size $this->get_optimization_data();
        
$size = ! empty( $size['sizes']['full']['original_size'] ) ? $size['sizes']['full']['original_size'] : 0;

        
// If nothing in the database, try to get the info from the file.
        
if ( ! $size ) {
            
// Check for the backup file first.
            
$filepath $this->get_media()->get_backup_path();

            if ( ! 
$filepath ) {
                
// Try the original file then.
                
$filepath $this->get_media()->get_original_path();
            }

            
$size $filepath $this->filesystem->size$filepath ) : 0;
        }

        if ( 
$human_format ) {
            return 
imagify_size_format( (int) $size$decimals );
        }

        return (int) 
$size;
    }

    
/**
     * Get the file size of the full size file.
     * If the webp size is available, it is used.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  bool $human_format True to display the image human format size (1Mb).
     * @param  int  $decimals     Precision of number of decimal places.
     * @param  bool $use_webp     Use the webp size if available.
     * @return string|int
     */
    
public function get_optimized_size$human_format true$decimals 2$use_webp true ) {
        if ( ! 
$this->is_valid() ) {
            return 
$human_format imagify_size_format0$decimals ) : 0;
        }

        
$data  $this->get_optimization_data();
        
$media $this->get_media();

        if ( 
$use_webp ) {
            
$process_class_name imagify_get_optimization_process_class_name$media->get_context() );
            
$webp_size_name     'full' constant$process_class_name '::WEBP_SUFFIX' );
        }

        if ( 
$use_webp && ! empty( $data['sizes'][ $webp_size_name ]['optimized_size'] ) ) {
            
$size = (int) $data['sizes'][ $webp_size_name ]['optimized_size'];
        } elseif ( ! empty( 
$data['sizes']['full']['optimized_size'] ) ) {
            
$size = (int) $data['sizes']['full']['optimized_size'];
        } else {
            
$size 0;
        }

        if ( 
$size ) {
            return 
$human_format imagify_size_format$size$decimals ) : $size;
        }

        
// If nothing in the database, try to get the info from the file.
        
$filepath false;

        if ( 
$use_webp && ! empty( $data['sizes'][ $webp_size_name ]['success'] ) ) {
            
// Try with the webp file first.
            
$filepath $media->get_raw_fullsize_path();
            
$filepath $filepath imagify_path_to_webp$filepath ) : false;

            if ( ! 
$filepath || ! $this->filesystem->exists$filepath ) ) {
                
$filepath false;
            }
        }

        if ( ! 
$filepath ) {
            
// No webp? The full size then.
            
$filepath $media->get_fullsize_path();
        }

        if ( ! 
$filepath ) {
            return 
$human_format imagify_size_format0$decimals ) : 0;
        }

        
$size = (int) $this->filesystem->size$filepath );

        return 
$human_format imagify_size_format$size$decimals ) : $size;
    }


    
/** ----------------------------------------------------------------------------------------- */
    /** OPTIMIZATION STATS ====================================================================== */
    /** ----------------------------------------------------------------------------------------- */

    /**
     * Get one or all statistics of a specific size.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  string $size The thumbnail slug.
     * @param  string $key  The specific data slug.
     * @return array|string
     */
    
public function get_size_data$size 'full'$key '' ) {
        
$data $this->get_optimization_data();

        if ( ! isset( 
$data['sizes'][ $size ] ) ) {
            return 
$key '' : [];
        }

        if ( ! 
$key ) {
            return 
$data['sizes'][ $size ];
        }

        if ( ! isset( 
$data['sizes'][ $size ][ $key ] ) ) {
            return 
'';
        }

        return 
$data['sizes'][ $size ][ $key ];
    }

    
/**
     * Get the overall statistics data or a specific one.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @param  string $key The specific data slug.
     * @return array|string
     */
    
public function get_stats_data$key '' ) {
        
$data  $this->get_optimization_data();
        
$stats '';

        if ( empty( 
$data['stats'] ) ) {
            return 
$key '' : [];
        }

        if ( ! isset( 
$data['stats'][ $key ] ) ) {
            return 
'';
        }

        return 
$data['stats'][ $key ];
    }

    
/**
     * Get the optimized/original saving of the original image in percent.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return float A 2-decimals float.
     */
    
public function get_saving_percent() {
        if ( ! 
$this->is_valid() ) {
            return 
round( (float) 0);
        }

        
$process_class_name imagify_get_optimization_process_class_name$this->get_media()->get_context() );
        
$webp_size_name     'full' constant$process_class_name '::WEBP_SUFFIX' );

        
$percent $this->get_size_data$webp_size_name'percent' );

        if ( ! 
$percent ) {
            
$percent $this->get_size_data'full''percent' );
        }

        
$percent $percent $percent 0;

        return 
round( (float) $percent);
    }

    
/**
     * Get the overall optimized/original saving (original image + all thumbnails) in percent.
     *
     * @since  1.9
     * @access public
     * @author Grégory Viguier
     *
     * @return float A 2-decimals float.
     */
    
public function get_overall_saving_percent() {
        if ( ! 
$this->is_valid() ) {
            return 
round( (float) 0);
        }

        
$percent $this->get_stats_data'percent' );

        return 
round( (float) $percent);
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586