-
Notifications
You must be signed in to change notification settings - Fork 26
/
aux-optimize.php
2083 lines (1989 loc) · 82.3 KB
/
aux-optimize.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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Functions for dealing with auxiliary images
*
* This file contains functions for bulk optimizing images outside the Media
* Library, and AJAX hooks for handling the image status table on the bulk
* optimize page.
*
* @link https://ewww.io
* @package EWWW_Image_Optimizer
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Displays the lower portion of the Bulk Optimize page: debugging data and help beacon (if enabled).
*/
function ewww_image_optimizer_aux_images() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
$output = '';
ewwwio_debug_info();
if ( ewww_image_optimizer_get_option( 'ewww_image_optimizer_debug' ) ) {
echo '<div style="clear:both;"></div>';
if ( ewwwio_is_file( ewwwio()->debug_log_path() ) ) {
?>
<h2><?php esc_html_e( 'Debug Log', 'ewww-image-optimizer' ); ?></h2>
<p>
<a target='_blank' href='<?php echo esc_url( wp_nonce_url( admin_url( 'admin.php?action=ewww_image_optimizer_view_debug_log' ), 'ewww_image_optimizer_options-options' ) ); ?>'><?php esc_html_e( 'View Log', 'ewww-image-optimizer' ); ?></a> -
<a href='<?php echo esc_url( wp_nonce_url( admin_url( 'admin.php?action=ewww_image_optimizer_delete_debug_log' ), 'ewww_image_optimizer_options-options' ) ); ?>'><?php esc_html_e( 'Clear Log', 'ewww-image-optimizer' ); ?></a>
</p>
<p>
<a class='button button-secondary' target='_blank' href='<?php echo esc_url( wp_nonce_url( admin_url( 'admin.php?action=ewww_image_optimizer_download_debug_log' ), 'ewww_image_optimizer_options-options' ) ); ?>'><?php esc_html_e( 'Download Log', 'ewww-image-optimizer' ); ?></a>
</p>
<?php
}
echo '<h2>' . esc_html__( 'System Info', 'ewww-image-optimizer' ) . '</h2>';
echo '<p><button id="ewww-copy-debug" class="button button-secondary" type="button">' . esc_html__( 'Copy', 'ewww-image-optimizer' ) . '</button></p>';
echo '<div id="ewww-debug-info" contenteditable="true">' .
wp_kses(
EWWW\Base::$debug_data,
array(
'br' => array(),
'b' => array(),
)
) .
'</div>';
}
if ( ewww_image_optimizer_get_option( 'ewww_image_optimizer_enable_help' ) ) {
$current_user = wp_get_current_user();
$help_email = $current_user->user_email;
$hs_debug = '';
if ( ! empty( EWWW\Base::$debug_data ) ) {
$hs_debug = str_replace( array( "'", '<br>', '<b>', '</b>', '=>' ), array( "\'", '\n', '**', '**', '=' ), EWWW\Base::$debug_data );
}
?>
<script type="text/javascript">!function(e,t,n){function a(){var e=t.getElementsByTagName("script")[0],n=t.createElement("script");n.type="text/javascript",n.async=!0,n.src="https://beacon-v2.helpscout.net",e.parentNode.insertBefore(n,e)}if(e.Beacon=n=function(t,n,a){e.Beacon.readyQueue.push({method:t,options:n,data:a})},n.readyQueue=[],"complete"===t.readyState)return a();e.attachEvent?e.attachEvent("onload",a):e.addEventListener("load",a,!1)}(window,document,window.Beacon||function(){});</script>
<script type="text/javascript">
window.Beacon('init', 'aa9c3d3b-d4bc-4e9b-b6cb-f11c9f69da87');
Beacon( 'prefill', {
email: '<?php echo esc_js( $help_email ); ?>',
text: '\n\n---------------------------------------\n<?php echo wp_kses_post( $hs_debug ); ?>',
});
</script>
<?php
}
ewwwio()->temp_debug_end();
}
/**
* Displays 50 records from the images table.
*
* Called via AJAX to find 50 records from the images table and display them
* with alternating row style.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_table() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_bulk_permissions', '' );
if (
empty( $_REQUEST['ewww_wpnonce'] ) ||
(
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) &&
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-settings' )
) ||
! current_user_can( $permissions )
) {
ewwwio_ob_clean();
die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
global $eio_backup;
global $wpdb;
$debug_query = ! empty( $_REQUEST['ewww_debug'] ) ? 1 : 0;
$per_page = 50;
$offset = empty( $_POST['ewww_offset'] ) ? 0 : $per_page * (int) $_POST['ewww_offset'];
$search = empty( $_POST['ewww_search'] ) ? '' : sanitize_text_field( wp_unslash( $_POST['ewww_search'] ) );
$pending = empty( $_POST['ewww_pending'] ) ? 0 : 1;
$total = empty( $_POST['ewww_total_pages'] ) ? 0 : (int) $_POST['ewww_total_pages'];
$output = array();
if ( $pending ) {
$sort_column = 'id';
$sort_direction = 'DESC';
$size_sort_class = '';
if ( ! empty( $_POST['ewww_size_sort'] ) && 'asc' === $_POST['ewww_size_sort'] ) {
$sort_column = 'orig_size';
$sort_direction = 'ASC';
$size_sort_class = 'ewww-size-asc';
} elseif ( ! empty( $_POST['ewww_size_sort'] ) && 'desc' === $_POST['ewww_size_sort'] ) {
$sort_column = 'orig_size';
$sort_direction = 'DESC';
$size_sort_class = 'ewww-size-desc';
}
if ( ! empty( $search ) ) {
if ( 'ASC' === $sort_direction ) {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=1 AND path LIKE %s ORDER BY %i ASC LIMIT %d,%d',
$wpdb->ewwwio_images,
'%' . $wpdb->esc_like( $search ) . '%',
$sort_column,
$offset,
$per_page
),
ARRAY_A
);
} else {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=1 AND path LIKE %s ORDER BY %i DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
'%' . $wpdb->esc_like( $search ) . '%',
$sort_column,
$offset,
$per_page
),
ARRAY_A
);
}
$search_count = $wpdb->get_var(
$wpdb->prepare(
"SELECT COUNT(*) FROM $wpdb->ewwwio_images WHERE pending=1 AND path LIKE %s",
'%' . $wpdb->esc_like( $search ) . '%'
)
);
if ( $search_count < $per_page ) {
/* translators: %d: number of image records found */
$output['search_result'] = sprintf( esc_html__( '%d items found', 'ewww-image-optimizer' ), count( $already_optimized ) );
} else {
/* translators: 1: number of image records displayed, 2: number of total records found */
$output['search_result'] = sprintf( esc_html__( '%1$d items displayed of %2$s records found', 'ewww-image-optimizer' ), count( $already_optimized ), number_format_i18n( $search_count ) );
}
$total = ceil( $search_count / $per_page );
} else {
if ( 'ASC' === $sort_direction ) {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=1 ORDER BY %i ASC LIMIT %d,%d',
$wpdb->ewwwio_images,
$sort_column,
$offset,
$per_page
),
ARRAY_A
);
} else {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=1 ORDER BY %i DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
$sort_column,
$offset,
$per_page
),
ARRAY_A
);
}
$search_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->ewwwio_images WHERE pending=1" );
$total = ceil( $search_count / $per_page );
/* translators: %d: number of image records found */
$output['search_result'] = sprintf( esc_html__( '%d items displayed', 'ewww-image-optimizer' ), count( $already_optimized ) );
}
} elseif ( ! empty( $search ) ) {
if ( $debug_query ) {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=0 AND image_size > 0 AND updates > %d AND path LIKE %s ORDER BY updates DESC,id DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
$debug_query,
'%' . $wpdb->esc_like( $search ) . '%',
$offset,
$per_page
),
ARRAY_A
);
$search_count = $wpdb->get_var(
$wpdb->prepare(
"SELECT COUNT(*) FROM $wpdb->ewwwio_images WHERE pending=0 AND image_size > 0 AND updates > %d AND path LIKE %s",
$debug_query,
'%' . $wpdb->esc_like( $search ) . '%'
)
);
} else {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=0 AND image_size > 0 AND path LIKE %s ORDER BY id DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
'%' . $wpdb->esc_like( $search ) . '%',
$offset,
$per_page
),
ARRAY_A
);
$search_count = $wpdb->get_var(
$wpdb->prepare(
'SELECT COUNT(*) FROM %i WHERE pending=0 AND image_size > 0 AND path LIKE %s',
$wpdb->ewwwio_images,
'%' . $wpdb->esc_like( $search ) . '%'
)
);
}
if ( $search_count < $per_page ) {
/* translators: %d: number of image records found */
$output['search_result'] = sprintf( esc_html__( '%d items found', 'ewww-image-optimizer' ), count( $already_optimized ) );
} else {
/* translators: 1: number of image records displayed, 2: number of total records found */
$output['search_result'] = sprintf( esc_html__( '%1$d items displayed of %2$s records found', 'ewww-image-optimizer' ), count( $already_optimized ), number_format_i18n( $search_count ) );
}
$total = ceil( $search_count / $per_page );
} else {
if ( $debug_query ) {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=0 AND image_size > 0 AND updates > %d ORDER BY updates DESC,id DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
$debug_query,
$offset,
$per_page
),
ARRAY_A
);
$search_count = $wpdb->get_var(
$wpdb->prepare(
"SELECT COUNT(*) FROM $wpdb->ewwwio_images WHERE pending=0 AND image_size > 0 AND updates > %d",
$debug_query
)
);
if ( $search_count > $per_page ) {
/* translators: 1: number of image records displayed, 2: number of total records found */
$output['search_result'] = sprintf( esc_html__( '%1$d items displayed of %2$d records found', 'ewww-image-optimizer' ), count( $already_optimized ), $search_count );
}
} else {
$already_optimized = $wpdb->get_results(
$wpdb->prepare(
'SELECT path,orig_size,image_size,id,backup,attachment_id,gallery,resize_error,webp_size,webp_error,updates,trace,UNIX_TIMESTAMP(updated) AS updated FROM %i WHERE pending=0 AND image_size > 0 ORDER BY id DESC LIMIT %d,%d',
$wpdb->ewwwio_images,
$offset,
$per_page
),
ARRAY_A
);
$search_count = $wpdb->get_var(
$wpdb->prepare(
'SELECT COUNT(*) FROM %i WHERE pending=0 AND image_size > 0',
$wpdb->ewwwio_images
)
);
}
$total = ceil( $search_count / $per_page );
if ( empty( $output['search_result'] ) ) {
/* translators: %d: number of image records found */
$output['search_result'] = sprintf( esc_html__( '%d items displayed', 'ewww-image-optimizer' ), count( $already_optimized ) );
}
}
/* translators: 1: current page in list of images 2: total pages for list of images */
$output['pagination'] = sprintf( esc_html__( 'page %1$d of %2$s', 'ewww-image-optimizer' ), (int) $_POST['ewww_offset'] + 1, number_format_i18n( $total ) );
$output['search_count'] = count( $already_optimized );
$output['total_images'] = $search_count;
$output['total_pages'] = $total;
/* translators: %d: number of images */
$output['total_images_text'] = sprintf( esc_html__( '%s total images', 'ewww-image-optimizer' ), number_format_i18n( $search_count ) );
$upload_info = wp_get_upload_dir();
$upload_path = $upload_info['basedir'];
$output['table'] = '<table class="wp-list-table widefat media" cellspacing="0"><thead><tr><th> </th>' .
'<th>' . esc_html__( 'Filename', 'ewww-image-optimizer' ) . '</th>' .
'<th style="width:120px;">' . esc_html__( 'Image Type', 'ewww-image-optimizer' ) . '</th>' .
'<th style="width:120px;">' . esc_html__( 'Last Optimized', 'ewww-image-optimizer' ) . '</th>';
if ( $pending ) {
$output['table'] .= '<th class="' . esc_attr( $size_sort_class ) . '"><a class="ewww-sort-size">' .
esc_html__( 'Image Size', 'ewww-image-optimizer' ) .
'<span class="ewww-sort-grid"><span class="ewww-sort-asc dashicons dashicons-arrow-up"></span><span class="ewww-sort-desc dashicons dashicons-arrow-down"></span></span>' .
'</a></th></tr></thead>';
} else {
$output['table'] .= '<th>' . esc_html__( 'Results', 'ewww-image-optimizer' ) . '</th></tr></thead>';
}
$alternate = true;
foreach ( $already_optimized as $optimized_image ) {
$file = ewww_image_optimizer_absolutize_path( $optimized_image['path'] );
$image_name = str_replace( ABSPATH, '', $file );
$thumb_url = '';
$image_url = '';
$trace = maybe_unserialize( $optimized_image['trace'] );
ewwwio_debug_message( "name is $image_name after replacing ABSPATH" );
if ( 'media' === $optimized_image['gallery'] && ! empty( $optimized_image['attachment_id'] ) ) {
$thumb_url = wp_get_attachment_image_url( $optimized_image['attachment_id'] );
}
if ( $file !== $image_name ) {
$image_url = esc_url( site_url( $image_name ) );
} else {
$image_name = str_replace( WP_CONTENT_DIR, '', $file );
if ( $file !== $image_name ) {
$image_url = esc_url( content_url( $image_name ) );
}
}
if ( empty( $thumb_url ) && ! empty( $image_url ) ) {
$thumb_url = $image_url;
} elseif ( empty( $thumb_url ) ) {
$thumb_url = esc_url( site_url( 'wp-includes/images/media/default.png' ) );
}
$image_name = esc_html( $image_name );
$savings = '';
if ( $optimized_image['image_size'] ) {
$savings = esc_html( ewww_image_optimizer_image_results( $optimized_image['orig_size'], $optimized_image['image_size'] ) );
}
if ( 946684800 > $optimized_image['updated'] ) {
$last_updated = '';
} elseif ( $pending && empty( $optimized_image['image_size'] ) ) {
$last_updated = '';
} else {
$last_updated = human_time_diff( $optimized_image['updated'] );
}
$remove_from_text = __( 'Remove from history', 'ewww-image-optimizer' );
if ( $pending ) {
$remove_from_text = __( 'Remove from queue', 'ewww-image-optimizer' );
}
// Check for WebP results.
$webp_info = '';
$webp_error = '';
$webpurl = '';
$webpfile = $file . '.webp';
$webp_size = ewww_image_optimizer_filesize( $webpfile );
if ( ! $webp_size ) {
if ( ! empty( $optimized_image['webp_size'] ) ) {
$webp_size = $optimized_image['webp_size'];
} elseif ( ! empty( $optimized_image['webp_error'] ) && 2 !== (int) $optimized_image['webp_error'] ) {
$webp_error = ewww_image_optimizer_webp_error_message( $optimized_image['webp_error'] );
}
}
if ( $webp_size ) {
// Get a human readable filesize.
$webp_size = ewww_image_optimizer_size_format( $webp_size );
$webp_info = "<br>WebP: $webp_size";
if ( $image_url ) {
$webpurl = $image_url . '.webp';
$webp_info = "<br>WebP: <a href=\"$webpurl\" target=\"_blank\">$webp_size</a>";
}
} elseif ( $webp_error ) {
$webp_info = "<br>$webp_error";
}
$resize_status = '<br>' . esc_html( ewww_image_optimizer_resize_results_message( $optimized_image['path'], $optimized_image['resize_error'] ) );
// Retrieve the mimetype of the attachment.
$type = ewww_image_optimizer_quick_mimetype( $file, 'i' );
// Get a human readable filesize.
$file_size = ewww_image_optimizer_size_format( $optimized_image['image_size'] );
if ( empty( $optimized_image['image_size'] ) ) {
if ( ! empty( $optimized_image['orig_size'] ) ) {
$file_size = ewww_image_optimizer_size_format( $optimized_image['orig_size'] );
} elseif ( ewwwio_is_file( $file ) ) {
$file_size = ewww_image_optimizer_size_format( ewww_image_optimizer_filesize( $file ) );
} else {
$file_size = __( 'unknown', 'ewww-image-optimizer' );
}
}
if ( $pending ) {
$size_string = $file_size;
} else {
/* translators: %s: human-readable filesize */
$size_string = sprintf( esc_html__( 'Image Size: %s', 'ewww-image-optimizer' ), $file_size );
}
$output['table'] .= '<tr ' . ( $alternate ? "class='alternate' " : '' ) . 'id="ewww-image-' . $optimized_image['id'] . '">';
$output['table'] .= "<td style='width:50px;' class='column-icon'><img style='width:50px;height:50px;object-fit:contain;' loading='lazy' src='$thumb_url' /></td>";
$output['table'] .= "<td class='title'>$image_name";
if ( $debug_query ) {
/* translators: %d: number of re-optimizations */
$output['table'] .= '<br>' . sprintf( esc_html__( 'Number of attempted optimizations: %d', 'ewww-image-optimizer' ), $optimized_image['updates'] );
if ( is_array( $trace ) ) {
$output['table'] .= '<br>' . esc_html__( 'PHP trace:', 'ewww-image-optimizer' );
$i = 0;
foreach ( $trace as $function ) {
if ( ! empty( $function['file'] ) && ! empty( $function['line'] ) ) {
$output['table'] .= esc_html( "#$i {$function['function']}() called at {$function['file']}:{$function['line']}" ) . '<br>';
} else {
$output['table'] .= esc_html( "#$i {$function['function']}() called" ) . '<br>';
}
++$i;
}
} else {
$output['table'] .= '<br>' . esc_html__( 'No PHP trace available, enable Debugging option to store trace logs.', 'ewww-image-optimizer' );
}
}
$output['table'] .= '<br><a class="ewww-remove-image" data-id="' . (int) $optimized_image['id'] . '">' . esc_html( $remove_from_text ) . '</a>';
if ( $pending ) {
$output['table'] .= ' | <a class="ewww-exclude-image" data-id="' . (int) $optimized_image['id'] . '">' . esc_html__( 'Add exclusion', 'ewww-image-optimizer' ) . '</a>';
}
if ( ! $pending && $eio_backup->is_backup_available( $optimized_image['path'], $optimized_image ) ) {
$output['table'] .= ' | <a class="ewww-restore-image" data-id="' . (int) $optimized_image['id'] . '">' . esc_html__( 'Restore original', 'ewww-image-optimizer' ) . '</a>';
}
$output['table'] .= '</td>';
$output['table'] .= "<td>$type</td>";
$output['table'] .= "<td>$last_updated</td>";
if ( $pending ) {
$output['table'] .= "<td>$size_string</td>";
} else {
$output['table'] .= "<td>$savings<br>$size_string" . $webp_info . $resize_status . '</td>';
}
$output['table'] .= '</tr>';
$alternate = ! $alternate;
} // End foreach().
$output['table'] .= '</table>';
if ( empty( $already_optimized ) ) {
$output['table'] = '<p class="ewww-no-images">' . esc_html__( 'No images optimized!', 'ewww-image-optimizer' ) . '</p>';
/* translators: 1: current page in list of images 2: total pages for list of images */
$output['pagination'] = sprintf( esc_html__( 'page %1$d of %2$s', 'ewww-image-optimizer' ), 0, 0 );
if ( $pending ) {
$output['table'] = '<p class="ewww-no-images">' . esc_html__( 'No images in queue.', 'ewww-image-optimizer' ) . '</p>';
}
}
die( wp_json_encode( $output ) );
}
/**
* Excludes an image from the images table.
*
* Called via AJAX, this function will add an exclusion based on the record provided by the
* POST variable 'ewww_image_id' and return a '1' if successful. It will also toggle the pending
* indicator, and remove an image if it has not been optimized yet.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_exclude() {
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_bulk_permissions', '' );
if (
empty( $_REQUEST['ewww_wpnonce'] ) ||
(
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) &&
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-settings' )
) ||
! current_user_can( $permissions )
) {
ewwwio_ob_clean();
die( esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) );
}
ewwwio_ob_clean();
global $wpdb;
if ( empty( $_POST['ewww_image_id'] ) ) {
die();
} else {
$id = (int) $_POST['ewww_image_id'];
}
$image = new \EWWW_Image( $id );
ewww_image_optimizer_add_file_exclusion( $image->file );
if ( empty( $image->opt_size ) ) {
if ( $wpdb->delete(
$wpdb->ewwwio_images,
array(
'id' => $id,
)
) ) {
echo '1';
}
} else {
if ( $wpdb->update(
$wpdb->ewwwio_images,
array(
'pending' => 0,
),
array(
'id' => $id,
)
) ) {
echo '1';
}
}
die();
}
/**
* Removes an image from the auxiliary images table.
*
* Called via AJAX, this function will remove the record provided by the
* POST variable 'ewww_image_id' and return a '1' if successful.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_remove() {
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_bulk_permissions', '' );
if (
empty( $_REQUEST['ewww_wpnonce'] ) ||
(
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) &&
! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-settings' )
) ||
! current_user_can( $permissions )
) {
ewwwio_ob_clean();
die( esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) );
}
ewwwio_ob_clean();
global $wpdb;
if ( empty( $_POST['ewww_image_id'] ) ) {
die();
} else {
$id = (int) $_POST['ewww_image_id'];
}
if ( empty( $_POST['ewww_pending'] ) ) {
if ( $wpdb->delete(
$wpdb->ewwwio_images,
array(
'id' => $id,
)
) ) {
echo '1';
}
} else {
if ( $wpdb->update(
$wpdb->ewwwio_images,
array(
'pending' => 0,
),
array(
'id' => $id,
)
) ) {
echo '1';
}
}
ewwwio_memory( __FUNCTION__ );
die();
}
/**
* Removes all images from the auxiliary images table.
*
* Called via AJAX, this function will return a '1' if successful.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_clear_all() {
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) || ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
die( esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) );
}
ewwwio_ob_clean();
global $wpdb;
if ( $wpdb->query( "TRUNCATE $wpdb->ewwwio_images" ) ) {
die( esc_html__( 'All records have been removed from the optimization history.', 'ewww-image-optimizer' ) );
}
ewwwio_memory( __FUNCTION__ );
die();
}
/**
* Reset the progress/position of the WebP cleanup routine.
*/
function ewww_image_optimizer_reset_webp_clean() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
check_admin_referer( 'ewww-image-optimizer-tools' );
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( ! current_user_can( $permissions ) ) {
wp_die( esc_html__( 'Access denied.', 'ewww-image-optimizer' ) );
}
delete_option( 'ewww_image_optimizer_webp_clean_position' );
wp_safe_redirect( wp_get_referer() );
exit;
}
/**
* Reset the progress/position of the bulk restore routine.
*/
function ewww_image_optimizer_reset_bulk_restore() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
check_admin_referer( 'ewww-image-optimizer-tools' );
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( ! current_user_can( $permissions ) ) {
wp_die( esc_html__( 'Access denied.', 'ewww-image-optimizer' ) );
}
delete_option( 'ewww_image_optimizer_bulk_restore_position' );
wp_safe_redirect( wp_get_referer() );
exit;
}
/**
* Restore backups for images using records from the ewwwio_images table.
*
* @global object $wpdb
* @global object $eio_backup
*/
function ewww_image_optimizer_bulk_restore_handler() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
session_write_close();
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
wp_die( wp_json_encode( array( 'error' => esc_html__( 'You do not have permission to optimize images.', 'ewww-image-optimizer' ) ) ) );
}
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) ) {
ewwwio_ob_clean();
wp_die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
global $eio_backup;
global $wpdb;
$completed = 0;
$position = (int) get_option( 'ewww_image_optimizer_bulk_restore_position' );
$per_page = (int) apply_filters( 'ewww_image_optimizer_bulk_restore_batch_size', 20 );
$started = time();
ewwwio_debug_message( "searching for $per_page records starting at $position" );
$optimized_images = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->ewwwio_images WHERE id > %d AND pending = 0 AND image_size > 0 AND updates > 0 ORDER BY id LIMIT %d", $position, $per_page ), ARRAY_A );
if ( empty( $optimized_images ) || ! is_countable( $optimized_images ) || 0 === count( $optimized_images ) ) {
ewwwio_debug_message( 'no more images, all done!' );
delete_option( 'ewww_image_optimizer_bulk_restore_position' );
ewwwio_ob_clean();
wp_die( wp_json_encode( array( 'finished' => 1 ) ) );
}
// Because some plugins might have loose filters (looking at you WPML).
remove_all_filters( 'wp_delete_file' );
$messages = '';
foreach ( $optimized_images as $optimized_image ) {
++$completed;
ewwwio_debug_message( "submitting {$optimized_image['id']} to be restored" );
$eio_backup->restore_file( $optimized_image );
$error_message = $eio_backup->get_error();
if ( $error_message ) {
$messages .= esc_html( $error_message ) . '<br>';
}
update_option( 'ewww_image_optimizer_bulk_restore_position', $optimized_image['id'], false );
if ( time() > $started + 20 ) {
break;
}
} // End foreach().
ewwwio_ob_clean();
wp_die(
wp_json_encode(
array(
'completed' => $completed,
'messages' => $messages,
)
)
);
}
/**
* Find the number of converted images in the ewwwio_images table.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_count_converted() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) || ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
ewwwio_ob_clean();
global $wpdb;
$count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->ewwwio_images WHERE converted != ''" );
die( wp_json_encode( array( 'total_converted' => $count ) ) );
}
/**
* Cleanup originals of converted images using records from the ewwwio_images table.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_converted_clean() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) || ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
global $wpdb;
$completed = 0;
$per_page = 50;
$converted_images = $wpdb->get_results( $wpdb->prepare( "SELECT path,converted,id FROM $wpdb->ewwwio_images WHERE converted != '' ORDER BY id DESC LIMIT %d", $per_page ), ARRAY_A );
if ( empty( $converted_images ) || ! is_countable( $converted_images ) || 0 === count( $converted_images ) ) {
die( wp_json_encode( array( 'finished' => 1 ) ) );
}
// Because some plugins might have loose filters (looking at you WPML).
remove_all_filters( 'wp_delete_file' );
foreach ( $converted_images as $optimized_image ) {
++$completed;
$file = ewww_image_optimizer_absolutize_path( $optimized_image['converted'] );
ewwwio_debug_message( "$file was converted, checking if it still exists" );
if ( ! ewww_image_optimizer_stream_wrapped( $file ) && ewwwio_is_file( $file ) ) {
ewwwio_debug_message( "removing original: $file" );
if ( ewwwio_delete_file( $file ) ) {
ewwwio_debug_message( "removed $file" );
} else {
/* translators: %s: file name */
die( wp_json_encode( array( 'error' => sprintf( esc_html__( 'Could not delete %s, please remove manually or fix permissions and try again.', 'ewww-image-optimizer' ), esc_html( $file ) ) ) ) );
}
}
$wpdb->update(
$wpdb->ewwwio_images,
array(
'converted' => '',
),
array(
'id' => $optimized_image['id'],
)
);
} // End foreach().
die( wp_json_encode( array( 'completed' => $completed ) ) );
}
/**
* Cleanup WebP images using records from the ewwwio_images table.
*
* @global object $wpdb
*/
function ewww_image_optimizer_aux_images_webp_clean_handler() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) || ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
global $wpdb;
$completed = 0;
$per_page = 50;
$resume = get_option( 'ewww_image_optimizer_webp_clean_position' );
$position = is_array( $resume ) && ! empty( $resume['stage2'] ) ? (int) $resume['stage2'] : 0;
ewwwio_debug_message( "searching for $per_page records starting at $position" );
$optimized_images = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $wpdb->ewwwio_images WHERE id > %d AND pending = 0 AND image_size > 0 AND updates > 0 ORDER BY id LIMIT %d", $position, $per_page ), ARRAY_A );
if ( empty( $optimized_images ) || ! is_countable( $optimized_images ) || 0 === count( $optimized_images ) ) {
delete_option( 'ewww_image_optimizer_webp_clean_position' );
die( wp_json_encode( array( 'finished' => 1 ) ) );
}
// Because some plugins might have loose filters (looking at you WPML).
remove_all_filters( 'wp_delete_file' );
foreach ( $optimized_images as $optimized_image ) {
++$completed;
ewww_image_optimizer_aux_images_webp_clean( $optimized_image );
}
$resume['stage2'] = $optimized_image['id'];
update_option( 'ewww_image_optimizer_webp_clean_position', $resume, false );
die( wp_json_encode( array( 'completed' => $completed ) ) );
}
/**
* Remove WebP images via db record.
*
* @param array $optimized_image The database record for an image from the optimization history.
*/
function ewww_image_optimizer_aux_images_webp_clean( $optimized_image ) {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
$file = ewww_image_optimizer_absolutize_path( $optimized_image['path'] );
ewwwio_debug_message( "looking for $file.webp" );
if ( ! ewww_image_optimizer_stream_wrapped( $file ) && ewwwio_is_file( $file ) && ewwwio_is_file( $file . '.webp' ) ) {
ewwwio_debug_message( "removing: $file.webp" );
if ( ewwwio_delete_file( $file . '.webp' ) ) {
ewwwio_debug_message( "removed $file.webp" );
} else {
if ( wp_doing_ajax() ) {
/* translators: %s: file name */
die( wp_json_encode( array( 'error' => sprintf( esc_html__( 'Could not delete %s, please remove manually or fix permissions and try again.', 'ewww-image-optimizer' ), esc_html( $file . '.webp' ) ) ) ) );
} elseif ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::error(
sprintf(
/* translators: %s: file name */
esc_html__( 'Could not delete %s, please remove manually or fix permissions and try again.', 'ewww-image-optimizer' ),
esc_html( $file . '.webp' )
)
);
}
}
}
if ( ! empty( $optimized_image['converted'] ) ) {
$file = ewww_image_optimizer_absolutize_path( $optimized_image['converted'] );
ewwwio_debug_message( "$file was converted, checking if webp version exists" );
if ( ! ewww_image_optimizer_stream_wrapped( $file ) && ewwwio_is_file( $file ) && ewwwio_is_file( $file . '.webp' ) ) {
ewwwio_debug_message( "removing: $file.webp" );
if ( ewwwio_delete_file( $file . '.webp' ) ) {
ewwwio_debug_message( "removed $file.webp" );
} else {
if ( wp_doing_ajax() ) {
/* translators: %s: file name */
die( wp_json_encode( array( 'error' => sprintf( esc_html__( 'Could not delete %s, please remove manually or fix permissions and try again.', 'ewww-image-optimizer' ), esc_html( $file . '.webp' ) ) ) ) );
} elseif ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::error(
sprintf(
/* translators: %s: file name */
esc_html__( 'Could not delete %s, please remove manually or fix permissions and try again.', 'ewww-image-optimizer' ),
esc_html( $file . '.webp' )
)
);
}
}
}
}
}
/**
* Cleanup WebP images via AJAX for a particular attachment.
*
* @global object $wpdb
*/
function ewww_image_optimizer_delete_webp_handler() {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
// Verify that an authorized user has called function.
$permissions = apply_filters( 'ewww_image_optimizer_admin_permissions', '' );
if ( empty( $_REQUEST['ewww_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['ewww_wpnonce'] ), 'ewww-image-optimizer-tools' ) || ! current_user_can( $permissions ) ) {
ewwwio_ob_clean();
die( wp_json_encode( array( 'error' => esc_html__( 'Access token has expired, please reload the page.', 'ewww-image-optimizer' ) ) ) );
}
global $wpdb;
$resume = get_option( 'ewww_image_optimizer_webp_clean_position' );
$position = is_array( $resume ) && ! empty( $resume['stage1'] ) ? (int) $resume['stage1'] : 0;
$id = (int) $wpdb->get_var(
$wpdb->prepare(
"SELECT ID FROM $wpdb->posts WHERE ID > %d AND post_type = 'attachment' AND (post_mime_type LIKE %s OR post_mime_type LIKE %s) ORDER BY ID LIMIT 1",
(int) $position,
'%image%',
'%pdf%'
)
);
if ( ! $id ) {
die( wp_json_encode( array( 'finished' => 1 ) ) );
}
// Because some plugins might have loose filters (looking at you WPML).
remove_all_filters( 'wp_delete_file' );
ewww_image_optimizer_delete_webp( $id );
$resume['stage1'] = (int) $id;
update_option( 'ewww_image_optimizer_webp_clean_position', $resume, false );
die( wp_json_encode( array( 'completed' => 1 ) ) );
}
/**
* Cleanup WebP images for a particular attachment.
*
* @global object $wpdb
*
* @param int $id Attachment ID number for an image.
*/
function ewww_image_optimizer_delete_webp( $id ) {
ewwwio_debug_message( '<b>' . __FUNCTION__ . '()</b>' );
global $wpdb;
// Finds non-meta images to remove from disk, and from db, as well as converted originals.
$optimized_images = $wpdb->get_results(
$wpdb->prepare(
"SELECT path,converted FROM $wpdb->ewwwio_images WHERE attachment_id = %d AND gallery = 'media'",
$id
),
ARRAY_A
);
if ( $optimized_images ) {
if ( ewww_image_optimizer_iterable( $optimized_images ) ) {
foreach ( $optimized_images as $image ) {
if ( ! empty( $image['path'] ) ) {
$image['path'] = ewww_image_optimizer_absolutize_path( $image['path'] );
}
if ( ! empty( $image['path'] ) ) {
ewwwio_debug_message( 'looking for: ' . $image['path'] . '.webp' );
if ( ewwwio_is_file( $image['path'] ) && ewwwio_is_file( $image['path'] . '.webp' ) ) {
ewwwio_debug_message( 'removing: ' . $image['path'] . '.webp' );
ewwwio_delete_file( $image['path'] . '.webp' );
}
$webpfileold = preg_replace( '/\.\w+$/', '.webp', $image['path'] );
if (
! preg_match( '/\.webp$/', $image['path'] ) &&
ewwwio_is_file( $image['path'] ) &&
ewwwio_is_file( $webpfileold )
) {
ewwwio_debug_message( 'removing: ' . $webpfileold );
ewwwio_delete_file( $webpfileold );
}
}
if ( ! empty( $image['converted'] ) && ewwwio_is_file( $image['converted'] ) && ewwwio_is_file( $image['converted'] . '.webp' ) ) {
ewwwio_debug_message( 'removing: ' . $image['converted'] . '.webp' );
ewwwio_delete_file( $image['converted'] . '.webp' );
}
}
}
}
$s3_path = false;
$s3_dir = false;
if ( ewww_image_optimizer_s3_uploads_enabled() ) {
$s3_path = get_attached_file( $id );
if ( 0 === strpos( $s3_path, 's3://' ) ) {
ewwwio_debug_message( 'removing: ' . $s3_path . '.webp' );
unlink( $s3_path . '.webp' );
}
$s3_dir = trailingslashit( dirname( $s3_path ) );
}
// Retrieve the image metadata.
$meta = wp_get_attachment_metadata( $id );
// If the attachment has an original file set.
if ( ! empty( $meta['orig_file'] ) ) {
// Get the filepath from the metadata.
$file_path = $meta['orig_file'];
// Get the base filename.
$filename = wp_basename( $file_path );
// Delete any residual webp versions.
$webpfile = $file_path . '.webp';
$webpfileold = preg_replace( '/\.\w+$/', '.webp', $file_path );
if ( ewwwio_is_file( $file_path ) && ewwwio_is_file( $webpfile ) ) {
ewwwio_debug_message( 'removing: ' . $webpfile );
ewwwio_delete_file( $webpfile );
}
if (
! preg_match( '/\.webp$/', $file_path ) &&
ewwwio_is_file( $file_path ) &&
ewwwio_is_file( $webpfileold )
) {
ewwwio_debug_message( 'removing: ' . $webpfileold );
ewwwio_delete_file( $webpfileold );
}
}
$file_path = get_attached_file( $id );
// If the attachment has an original file set.
if ( ! empty( $meta['original_image'] ) ) {
// One way or another, $file_path is now set, and we can get the base folder name.
$base_dir = dirname( $file_path ) . '/';
// Get the original filename from the metadata.
$orig_path = $base_dir . wp_basename( $meta['original_image'] );
// Delete any residual webp versions.
$webpfile = $orig_path . '.webp';
if ( ewwwio_is_file( $orig_path ) && ewwwio_is_file( $webpfile ) ) {
ewwwio_debug_message( 'removing: ' . $webpfile );
ewwwio_delete_file( $webpfile );
}
if ( $s3_path && $s3_dir && wp_basename( $meta['original_image'] ) ) {
ewwwio_debug_message( 'removing: ' . $s3_dir . wp_basename( $meta['original_image'] ) . '.webp' );
unlink( $s3_dir . wp_basename( $meta['original_image'] ) . '.webp' );
}
}
// Resized versions, so we can continue.
if ( isset( $meta['sizes'] ) && ewww_image_optimizer_iterable( $meta['sizes'] ) ) {
// One way or another, $file_path is now set, and we can get the base folder name.
$base_dir = dirname( $file_path ) . '/';
foreach ( $meta['sizes'] as $size => $data ) {
// Delete any residual webp versions.
$webpfile = $base_dir . wp_basename( $data['file'] ) . '.webp';
$webpfileold = preg_replace( '/\.\w+$/', '.webp', $base_dir . wp_basename( $data['file'] ) );
if ( ewwwio_is_file( $base_dir . wp_basename( $data['file'] ) ) && ewwwio_is_file( $webpfile ) ) {
ewwwio_debug_message( 'removing: ' . $webpfile );
ewwwio_delete_file( $webpfile );
}
if (
! preg_match( '/\.webp$/', $base_dir . wp_basename( $data['file'] ) ) &&
ewwwio_is_file( $base_dir . wp_basename( $data['file'] ) ) &&
ewwwio_is_file( $webpfileold )
) {
ewwwio_debug_message( 'removing: ' . $webpfileold );
ewwwio_delete_file( $webpfileold );
}
if ( $s3_path && $s3_dir && wp_basename( $data['file'] ) ) {
ewwwio_debug_message( 'removing: ' . $s3_dir . wp_basename( $data['file'] ) . '.webp' );
unlink( $s3_dir . wp_basename( $data['file'] ) . '.webp' );