class-webp.php
28.1 KB
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
<?php
/**
* WebP class: WebP
*
* @package Smush\Core\Modules
* @since 3.8.0
*/
namespace Smush\Core\Modules;
use Smush\Core\Core;
use Smush\Core\Helper;
use WP_Error;
use WP_Smush;
if ( ! defined( 'WPINC' ) ) {
die;
}
/**
* Class WebP extends Abstract_Module.
*/
class WebP extends Abstract_Module {
/**
* Module slug.
*
* @var string
*/
protected $slug = 'webp_mod';
/**
* Whether module is pro or not.
*
* @var string
*/
protected $is_pro = true;
/**
* If server is configured for webp
*
* @access private
* @var bool $is_configured
*/
private $is_configured;
/**
* Initialize the module.
*/
public function init() {
// Show success message after deleting all webp images.
add_action( 'wp_smush_header_notices', array( $this, 'maybe_show_notices' ) );
// Only apply filters for PRO + activated Webp.
if ( $this->is_active() ) {
// Add a filter to check if the image should resmush.
add_filter( 'wp_smush_should_resmush', array( $this, 'should_resmush' ), 10, 2 );
}
}
/**
* Enables and disables the WebP module.
*
* @since 3.8.0
*
* @param boolean $enable Whether to enable or disable WebP.
*/
public function toggle_webp( $enable = true ) {
$this->settings->set( $this->slug, $enable );
global $wp_filesystem;
if ( is_null( $wp_filesystem ) ) {
// These aren't included when applying a config from the Hub.
if ( ! function_exists( 'WP_Filesystem' ) ) {
require_once ABSPATH . 'wp-admin/includes/file.php';
}
WP_Filesystem();
}
$parsed_udir = $this->get_upload_dir();
$flag_file_path = $parsed_udir['webp_path'] . '/disable_smush_webp';
// Handle the file used as a flag by the server rules.
if ( $enable ) {
$wp_filesystem->delete( $flag_file_path, true );
} else {
$wp_filesystem->put_contents( $flag_file_path, '' );
}
}
/**
* Gets whether WebP is configured, returning a message to display when it's not.
* This is a wrapper for displaying a message on failure which is used in three places.
* Moved here to reduce the redundancy.
*
* @since 3.8.8
*
* @param bool $force Force check.
*
* @return true|string True when it's configured. String when it's not.
*/
public function get_is_configured_with_error_message( $force = false ) {
$is_configured = $this->is_configured( $force );
if ( true === $is_configured ) {
return true;
}
if ( is_wp_error( $is_configured ) ) {
return $is_configured->get_error_message();
}
if ( 'apache' === $this->get_server_type() && $this->is_htaccess_written() ) {
return __( "The server rules have been applied but the server doesn't seem to be serving your images as WebP. We recommend contacting your hosting provider to learn more about the cause of this issue.", 'wp-smushit' );
}
return __( "Server configurations haven't been applied yet. Make configurations to start serving images in WebP format.", 'wp-smushit' );
}
/**
* Get status of server configuration for webp.
*
* @since 3.8.0
*
* @param bool $force force to recheck.
*
* @return bool|WP_Error
*/
public function is_configured( $force = false ) {
if ( ! is_null( $this->is_configured ) && ! $force ) {
return $this->is_configured;
}
$this->is_configured = $this->check_server_config();
return $this->is_configured;
}
/**
* Check if server is configured to serve webp image.
*
* @since 3.8.0
*
* @return bool|WP_Error
*/
private function check_server_config() {
$files_created = $this->create_test_files();
// WebP test images couldn't be created.
if ( true !== $files_created ) {
$message = sprintf(
/* translators: path that couldn't be written */
__( 'We couldn\'t create the WebP test files. This is probably due to your current folder permissions. Please adjust the permissions for "%s" to 755 and try again.', 'wp-smushit' ),
$files_created
);
return new WP_Error( 'test_files_not_created', $message );
}
$udir = $this->get_upload_dir();
$test_image = $udir['upload_url'] . '/smush-webp-test.png';
$args = array(
'timeout' => 10,
'headers' => array(
'Accept' => 'image/webp',
),
);
// Add support for basic auth in WPMU DEV staging.
if ( isset( $_SERVER['WPMUDEV_HOSTING_ENV'] ) && 'staging' === $_SERVER['WPMUDEV_HOSTING_ENV'] && isset( $_SERVER['PHP_AUTH_USER'] ) ) {
$args['headers']['Authorization'] = 'Basic ' . base64_encode( wp_unslash( $_SERVER['PHP_AUTH_USER'] ) . ':' . wp_unslash( $_SERVER['PHP_AUTH_PW'] ) );
}
$response = wp_remote_get( $test_image, $args );
// If there is an error, return.
if ( is_wp_error( $response ) ) {
return $response;
}
$code = wp_remote_retrieve_response_code( $response );
// Check the image's format when the request was successful.
if ( 200 === $code ) {
$content_type = wp_remote_retrieve_header( $response, 'content-type' );
return 'image/webp' === $content_type;
}
// Return the response code and message otherwise.
$error_message = sprintf(
/* translators: 1. error code, 2. error message. */
__( "We couldn't check the WebP server rules status because there was an error with the test request. Please contact support for assistance. Code %1\$s: %2\$s.", 'wp-smushit' ),
$code,
wp_remote_retrieve_response_message( $response )
);
return new WP_Error( $code, $error_message );
}
/**
* Code to use on Nginx servers.
*
* @since 3.8.0
*
* @param bool $marker whether to wrap code with marker comment lines.
* @return string
*/
public function get_nginx_code( $marker = true ) {
$udir = $this->get_upload_dir();
$base = trailingslashit( dirname( $udir['upload_rel_path'] ) );
$directory = trailingslashit( basename( $udir['upload_rel_path'] ) );
$regex_base = $base . '(' . $directory . ')';
/**
* We often need to remove WebP file extension from Nginx cache rule in order to make Smush WebP work,
* so always add expiry header rule for Nginx.
*
* @since 3.9.8
* @see https://incsub.atlassian.net/browse/SMUSH-1072
*/
$code = 'location ~* "' . str_replace( '/', '\/', $regex_base ) . '(.*\.(?:png|jpe?g))" {
add_header Vary Accept;
set $image_path $2;
if (-f "' . $udir['webp_path'] . '/disable_smush_webp") {
break;
}
if ($http_accept !~* "webp") {
break;
}
expires max;
try_files /' . trailingslashit( $udir['webp_rel_path'] ) . '$image_path.webp $uri =404;
}';
if ( true === $marker ) {
$code = $this->marker_line() . "\n" . $code;
$code = $code . "\n" . $this->marker_line( true );
}
return apply_filters( 'smush_nginx_webp_rules', $code );
}
/**
* Code to use on Apache servers.
*
* @since 3.8.0
*
* @todo Find out what's wrong with the rules. We shouldn't need these two different RewriteRule.
*
* @param string $location Where the .htaccess file is.
*
* @return string
*/
private function get_apache_code( $location ) {
$udir = $this->get_upload_dir();
$rewrite_path = '%{DOCUMENT_ROOT}/' . $udir['webp_rel_path'];
$code = '<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond ' . $rewrite_path . '/disable_smush_webp !-f
RewriteCond %{HTTP_ACCEPT} image/webp' . "\n";
if ( 'root' === $location ) {
// This works on single sites at root.
$code .= ' RewriteCond ' . $rewrite_path . '/$1.webp -f
RewriteRule ' . $udir['upload_rel_path'] . '/(.*\.(?:png|jpe?g))$ ' . $udir['webp_rel_path'] . '/$1.webp [NC,T=image/webp]';
} else {
// This works at /uploads/.
$code .= ' RewriteCond ' . $rewrite_path . '/$1.$2.webp -f
RewriteRule ^/?(.+)\.(jpe?g|png)$ /' . $udir['webp_rel_path'] . '/$1.$2.webp [NC,T=image/webp]';
}
$code .= "\n" . '</IfModule>
<IfModule mod_headers.c>
Header append Vary Accept env=WEBP_image
</IfModule>
<IfModule mod_mime.c>
AddType image/webp .webp
</IfModule>';
return apply_filters( 'smush_apache_webp_rules', $code );
}
/**
* Gets the apache rules for printing them in the config tab.
*
* @since 3.8.4
*
* @return string
*/
public function get_apache_code_to_print() {
$location = is_multisite() ? 'uploads' : 'root';
$code = $this->marker_line() . "\n";
$code .= $this->get_apache_code( $location );
$code .= "\n" . $this->marker_line( true );
return $code;
}
/**
* Retrieves uploads directory and WebP directory information.
* All paths and urls do not have trailing slash.
*
* @return array
*/
public function get_upload_dir() {
static $upload_dir_info;
if ( isset( $upload_dir_info ) ) {
return $upload_dir_info;
}
if ( ! is_multisite() || is_main_site() ) {
$upload = wp_upload_dir();
} else {
// Use the main site's upload directory for all subsite's webp converted images.
// This makes it easier to have a single rule on the server configs for serving webp in mu.
$blog_id = get_main_site_id();
switch_to_blog( $blog_id );
$upload = wp_upload_dir();
restore_current_blog();
}
// Is it possible that none of the following conditions are met?
$root_path_base = '';
// Get the Document root path. There must be a better way to do this.
// For example, /srv/www/site/public_html for /srv/www/site/public_html/wp-content/uploads.
if ( 0 === strpos( $upload['basedir'], ABSPATH ) ) {
// Environments like Flywheel have an ABSPATH that's not used in the paths.
$root_path_base = ABSPATH;
} elseif ( ! empty( $_SERVER['DOCUMENT_ROOT'] ) && 0 === strpos( $upload['basedir'], wp_unslash( $_SERVER['DOCUMENT_ROOT'] ) ) ) {
/**
* This gets called when scanning for uncompressed images.
* When ran from certain contexts, $_SERVER['DOCUMENT_ROOT'] might not be set.
*
* We are removing this part from the path later on.
*/
$root_path_base = realpath( wp_unslash( $_SERVER['DOCUMENT_ROOT'] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
} elseif ( 0 === strpos( $upload['basedir'], dirname( WP_CONTENT_DIR ) ) ) {
// We're assuming WP_CONTENT_DIR is only one level deep into the document root.
// This might not be true in customized sites. A bit edgy.
$root_path_base = dirname( WP_CONTENT_DIR );
}
/**
* Filters the Document root path used to get relative paths for webp rules.
* Hopefully of help for debugging and SLS.
*
* @since 3.9.0
*/
$root_path_base = apply_filters( 'smush_webp_rules_root_path_base', $root_path_base );
// Get the upload path relative to the Document root.
// For example, wp-content/uploads for /srv/www/site/public_html/wp-content/uploads.
$upload_root_rel_path = ltrim( str_replace( $root_path_base, '', $upload['basedir'] ), '/' );
// Get the relative path for the directory containing the webp files.
// This directory is a sibling of the 'uploads' directory.
// For example, wp-content/smush-webp for wp-content/uploads.
$webp_root_rel_path = dirname( $upload_root_rel_path ) . '/smush-webp';
/**
* Add a hook for user custom webp address.
*
* @since 3.9.8
*/
return apply_filters(
'wp_smush_webp_dir',
array(
'upload_path' => $upload['basedir'],
'upload_rel_path' => $upload_root_rel_path,
'upload_url' => $upload['baseurl'],
'webp_path' => dirname( $upload['basedir'] ) . '/smush-webp',
'webp_rel_path' => $webp_root_rel_path,
'webp_url' => dirname( $upload['baseurl'] ) . '/smush-webp',
)
);
}
/**
* Create test files and required directory.
*
* @return true|string String with the path that couldn't be written on failure.
*/
public function create_test_files() {
$udir = $this->get_upload_dir();
$test_png_file = $udir['upload_path'] . '/smush-webp-test.png';
$test_webp_file = $udir['webp_path'] . '/smush-webp-test.png.webp';
// Create the png file to be requested if it doesn't exist. Bail out if it fails.
if (
! file_exists( $test_png_file ) &&
! copy( WP_SMUSH_DIR . 'app/assets/images/smush-webp-test.png', $test_png_file )
) {
Helper::logger()->webp()->error( 'Cannot create test PNG file [%s].', $test_png_file );
return $udir['upload_path'];
}
// Create the WebP file that should be sent in the response if the rules work.
if ( ! file_exists( $test_webp_file ) ) {
$directory_created = is_dir( $udir['webp_path'] ) || wp_mkdir_p( $udir['webp_path'] );
// Bail out if it fails.
if (
! $directory_created ||
! copy( WP_SMUSH_DIR . 'app/assets/images/smush-webp-test.png.webp', $test_webp_file )
) {
Helper::logger()->webp()->error( 'Cannot create test Webp file [%s].', $test_webp_file );
return $udir['webp_path'];
}
}
return true;
}
/**
* Retrieves related webp image file path for a given non webp image file path.
* Also create required directories for webp image if not exists.
*
* @param string $file_path Non webp image file path.
* @param bool $make Weather to create required directories.
*
* @return string
*/
public function get_webp_file_path( $file_path, $make = false ) {
$udir = $this->get_upload_dir();
$file_rel_path = substr( $file_path, strlen( $udir['upload_path'] ) );
$webp_file_path = $udir['webp_path'] . $file_rel_path . '.webp';
if ( $make ) {
$webp_file_dir = dirname( $webp_file_path );
if ( ! is_dir( $webp_file_dir ) ) {
wp_mkdir_p( $webp_file_dir );
}
}
return $webp_file_path;
}
/**
* Check whether the given attachment id or mime type can be converted to WebP.
*
* @param string $id Atachment ID.
* @param string $mime Mime type.
*
* @return bool
*/
private function can_be_converted( $id = '', $mime = '' ) {
if ( empty( $id ) && empty( $mime ) ) {
return false;
}
$mime = empty( $mime ) ? get_post_mime_type( $id ) : $mime;
// This image can not be converted to webp.
if ( ! ( 'image/jpeg' === $mime || 'image/png' === $mime ) ) {
return false;
}
return true;
}
/**
* Checks whether an attachment should be converted to WebP.
* Returns false if WebP isn't configured, the attachment was already converted,
* or if the attachment can't be converted ( @see self::can_be_converted() ).
*
* @since 3.8.0
*
* @param string $id Attachment ID.
*
* @return bool
*/
public function should_be_converted( $id ) {
// Avoid conversion when webp disabled, or when Smush is Free.
if ( ! $this->is_active() || ! Helper::is_smushable( $id ) ) {
return false;
}
$meta = get_post_meta( $id, Smush::$smushed_meta_key, true );
$webp_udir = $this->get_upload_dir();
// The image was already converted to WebP.
if ( ! empty( $meta['webp_flag'] ) && file_exists( $webp_udir['webp_path'] . '/' . $meta['webp_flag'] ) ) {
Helper::logger()->webp()->info( sprintf( 'The image [%d] is already converted to Webp: [%s]', $id, $meta['webp_flag'] ) );
return false;
}
return $this->can_be_converted( $id );
}
/**
* Check whether to resmush image or not.
*
* @since 3.9.6
*
* @usedby Smush\App\Ajax::scan_images()
*
* @param bool $should_resmush Current status.
* @param int $attachment_id Attachment ID.
* @return bool webp|TRUE|FALSE.
*/
public function should_resmush( $should_resmush, $attachment_id ) {
if ( ! $should_resmush && $this->should_be_converted( $attachment_id ) ) {
$should_resmush = 'webp';
}
return $should_resmush;
}
/**
* Convert images to WebP.
*
* @since 3.8.0
*
* @param int $attachment_id Attachment ID.
* @param array $meta Attachment meta.
*
* @return WP_Error|array
*/
public function convert_to_webp( $attachment_id, $meta ) {
$webp_files = array();
if ( ! $this->should_be_converted( $attachment_id ) ) {
return $webp_files;
}
// Maybe add scaled image file to the meta sizes.
$meta = apply_filters( 'wp_smush_add_scaled_images_to_meta', $meta, $attachment_id );
// File path and URL for original image.
$file_path = Helper::get_attached_file( $attachment_id );// S3+.
$smush = WP_Smush::get_instance()->core()->mod->smush;
// initial an error.
$errors = null;
// If images has other registered size, smush them first.
if ( ! empty( $meta['sizes'] ) && ! has_filter( 'wp_image_editors', 'photon_subsizes_override_image_editors' ) ) {
/**
* Add the full image as a converted image to avoid doing it duplicate.
* E.g. Exclude the scaled file when disable compress the original image.
*/
$converted_thumbs = array(
basename( $file_path ) => 1,
);
foreach ( $meta['sizes'] as $size_data ) {
// Some thumbnail sizes are using the same image path, so check if the thumbnail file is converted.
if ( isset( $converted_thumbs[ $size_data['file'] ] ) ) {
continue;
}
// We take the original image. The 'sizes' will all match the same URL and
// path. So just get the dirname and replace the filename.
$file_path_size = path_join( dirname( $file_path ), $size_data['file'] );
$ext = Helper::get_mime_type( $file_path_size );
if ( $ext && false === array_search( $ext, Core::$mime_types, true ) ) {
continue;
}
/**
* Check if the file exists on the server,
* if not, might try to download it from the cloud (s3).
*
* @since 3.9.6
*/
if ( ! Helper::exists_or_downloaded( $file_path_size, $attachment_id ) ) {
continue;
}
$response = $smush->do_smushit( $file_path_size, true );
if ( is_wp_error( $response ) || ! $response ) {
// Logged the error inside do_smushit.
if ( ! $errors ) {
$errors = new WP_Error();
}
if ( ! $response ) {
// Handle empty response.
if ( $errors->get_error_data( 'empty_response' ) ) {
$errors->add(
'empty_response',
__( 'Webp no response was received.', 'wp-smushit' ),
array(
'filename' => Helper::clean_file_path( $file_path_size ),
)
);
} else {
$errors->add_data(
array(
'filename' => Helper::clean_file_path( $file_path_size ),
),
'empty_response'
);
}
} else {
// Handle WP_Error.
$errors->merge_from( $response );
}
} else {
$webp_files[] = $this->get_webp_file_path( $file_path_size );
// Cache converted thumbnail file.
$converted_thumbs[ $size_data['file'] ] = 1;
}
}
}
// Return errors.
if ( $errors ) {
return $errors;
}
$response = $smush->do_smushit( $file_path, true );
// Logged the error inside do_smushit.
if ( ! is_wp_error( $response ) ) {
$webp_files[] = $this->get_webp_file_path( $file_path );
// If all images have been converted, set a flag in meta.
$stats = get_post_meta( $attachment_id, Smush::$smushed_meta_key, true );
if ( ! $stats ) {
$stats = array();
}
$upload_dir = $this->get_upload_dir();
// Use the relative path of the first webp image as a flag.
$stats['webp_flag'] = substr( $webp_files[0], strlen( $upload_dir['webp_path'] . '/' ) );
update_post_meta( $attachment_id, Smush::$smushed_meta_key, $stats );
}
return $webp_files;
}
/**
* Deletes all the webp files when an attachment is deleted
* Update Smush::$smushed_meta_key meta ( optional )
* Used in Smush::delete_images() and Backup::restore_image()
*
* @since 3.8.0
*
* @param int $image_id Attachment ID.
* @param bool $update_meta Whether to update meta or not.
* @param string $main_file Main file to replace the one retrieved via the $id.
* Useful for deleting webp images after PNG to JPG conversion.
*/
public function delete_images( $image_id, $update_meta = true, $main_file = '' ) {
$meta = wp_get_attachment_metadata( $image_id );
// File path for original image.
if ( empty( $main_file ) ) {
$main_file = get_attached_file( $image_id );
}
// Not a supported image? Exit.
if ( ! in_array( strtolower( pathinfo( $main_file, PATHINFO_EXTENSION ) ), array( 'gif', 'jpg', 'jpeg', 'png' ), true ) ) {
return;
}
$main_file_webp = $this->get_webp_file_path( $main_file );
$dir_path = dirname( $main_file_webp );
if ( file_exists( $main_file_webp ) ) {
unlink( $main_file_webp );
}
if ( ! empty( $meta['sizes'] ) ) {
foreach ( $meta['sizes'] as $size_data ) {
$size_file = path_join( $dir_path, $size_data['file'] );
if ( file_exists( $size_file . '.webp' ) ) {
unlink( $size_file . '.webp' );
}
}
}
if ( $update_meta ) {
$smushed_meta_key = Smush::$smushed_meta_key;
$stats = get_post_meta( $image_id, $smushed_meta_key, true );
if ( ! empty( $stats ) && is_array( $stats ) ) {
unset( $stats['webp_flag'] );
update_post_meta( $image_id, $smushed_meta_key, $stats );
}
}
}
/**
* Deletes all webp images for the whole network or the current subsite.
* It deletes the whole smush-webp directory when it's a single install
* or a MU called from the network admin (and the current_user_can( manage_network )).
*
* @since 3.8.0
*/
public function delete_all() {
global $wp_filesystem;
if ( is_null( $wp_filesystem ) ) {
WP_Filesystem();
}
$parsed_udir = $this->get_upload_dir();
// Delete the whole webp directory only when on single install or network admin.
$wp_filesystem->delete( $parsed_udir['webp_path'], true );
}
/**
* Renders the notice after deleting all webp images.
*
* @since 3.8.0
*
* @param string $tab Smush tab name.
*/
public function maybe_show_notices( $tab ) {
// Show only on WebP page.
if ( ! isset( $tab ) || 'webp' !== $tab ) {
return;
}
// Show only when there are images in the library, except on mu, where the count is always 0.
if ( ! is_multisite() && 0 === WP_Smush::get_instance()->core()->total_count ) {
return;
}
$show_message = filter_input( INPUT_GET, 'notice', FILTER_SANITIZE_SPECIAL_CHARS );
// Success notice after deleting all WebP images.
if ( 'webp-deleted' === $show_message ) {
$message = __( 'WebP files were deleted successfully.', 'wp-smushit' );
echo '<div role="alert" id="wp-smush-webp-delete-all-notice" data-message="' . esc_attr( $message ) . '" class="sui-notice" aria-live="assertive"></div>';
}
}
/*
* Server related methods.
*/
/**
* Return the server type (Apache, NGINX...)
*
* @return string Server type
*/
public function get_server_type() {
global $is_apache, $is_IIS, $is_iis7, $is_nginx;
if ( $is_apache ) {
// It's a common configuration to use nginx in front of Apache.
// Let's make sure that this server is Apache.
$response = wp_remote_get( home_url() );
if ( is_wp_error( $response ) ) {
// Bad luck.
return 'apache';
}
$server = strtolower( wp_remote_retrieve_header( $response, 'server' ) );
// Could be LiteSpeed too.
return ( strpos( $server, 'nginx' ) !== false ? 'nginx' : 'apache' );
}
if ( $is_nginx ) {
return 'nginx';
}
if ( $is_IIS ) {
return 'IIS';
}
if ( $is_iis7 ) {
return 'IIS 7';
}
return 'unknown';
}
/*
* Apache's .htaccess rules handling.
*/
/**
* Gets the path of .htaccess file for the given location.
*
* @param string $location Location of the .htaccess file to retrieve. root|uploads.
*
* @return string
*/
private function get_htaccess_file( $location ) {
if ( 'root' === $location ) {
// Get the .htaccess located at the root.
$base_dir = get_home_path();
} else {
// Get the .htaccess located at the uploads directory.
if ( ! function_exists( 'wp_upload_dir' ) ) {
require_once ABSPATH . 'wp-includes/functions.php';
}
$uploads = wp_upload_dir();
$base_dir = $uploads['basedir'];
}
return rtrim( $base_dir, '/' ) . '/.htaccess';
}
/**
* Get unique string to use at marker comment line in .htaccess or nginx config file.
*
* @since 3.8.0
*
* @return string
*/
private function marker_suffix() {
return 'SMUSH-WEBP';
}
/**
* Get unique string to use as marker comment line in .htaccess or nginx config file.
*
* @param bool $end whether to use marker after end of the config code.
* @return string
*/
private function marker_line( $end = false ) {
if ( true === $end ) {
return '# END ' . $this->marker_suffix();
} else {
return '# BEGIN ' . $this->marker_suffix();
}
}
/**
* Check if .htaccess has rules for this module in place.
*
* @since 3.8.0
*
* @param bool|string $location Location of the .htaccess to check.
*
* @return bool
*/
public function is_htaccess_written( $location = false ) {
if ( ! function_exists( 'extract_from_markers' ) ) {
require_once ABSPATH . 'wp-admin/includes/misc.php';
}
$has_rules = false;
// Remove the rules from all the possible places if not specified.
$locations = ! $location ? $this->get_htaccess_locations() : array( $location );
foreach ( $locations as $name ) {
$htaccess = $this->get_htaccess_file( $name );
$has_rules = ! empty( $has_rules ) || array_filter( extract_from_markers( $htaccess, $this->marker_suffix() ) );
}
return $has_rules;
}
/**
* Tries different rules in different locations of the .htaccess file.
*
* @since 3.8.0
*
* @return bool|string True on success. String with the error message on failure.
*/
public function save_htaccess() {
$cannot_write_message = sprintf(
/* translators: 1. opening 'a' tag to premium support, 2. closing 'a' tag. */
__( 'We tried to apply the .htaccess rules automatically but we were unable to complete this action. Make sure the file permissions on your .htaccess file are set to 644, or switch to manual mode and apply the rules yourself. If you need further assistance, you can %1$scontact support%2$s for help.', 'wp-smushit' ),
'<a href="https://wpmudev.com/hub2/support/#get-support" target="_blank">',
'</a>'
);
$last_error = sprintf(
/* translators: 1. opening 'a' tag to docs, 2. opening 'a' tag to premium support, 3. closing 'a' tag. */
__( 'We tried different rules but your server still isn\'t serving WebP images. Please contact your hosting provider for further assistance. You can also see our %1$stroubleshooting guide%3$s or %2$scontact support%3$s for help.', 'wp-smushit' ),
'<a href="https://wpmudev.com/docs/wpmu-dev-plugins/smush/#wordpress-in-its-own-directory" target="_blank">',
'<a href="https://wpmudev.com/hub2/support/#get-support" target="_blank">',
'</a>'
);
$locations = $this->get_htaccess_locations();
$is_configured = false;
foreach ( $locations as $location ) {
$htaccess = $this->get_htaccess_file( $location );
$code = $this->get_apache_code( $location );
$code = explode( "\n", $code );
$markers_inserted = insert_with_markers( $htaccess, $this->marker_suffix(), $code );
if ( ! $markers_inserted ) {
$last_error = $cannot_write_message;
continue;
}
$is_configured = $this->check_server_config();
if ( true === $is_configured ) {
break;
}
// TODO: if $is_configured is a wp error, display the message.
if ( $is_configured && is_wp_error( $is_configured ) ) {
Helper::logger()->webp()->error( sprintf( 'Server config error: %s.', $is_configured->get_error_message() ) );
}
$this->unsave_htaccess( $location );
}
if ( $is_configured ) {
return true;
}
return $last_error;
}
/**
* Returns the handled locations for the .htaccess.
*
* @since 3.8.3
*
* @return array
*/
private function get_htaccess_locations() {
if ( ! is_multisite() ) {
$locations[] = 'root';
}
$locations[] = 'uploads';
return $locations;
}
/**
* Remove rules from .htaccess file.
*
* @since 3.8.0
*
* @param bool|string $location Location of the htaccess to unsave. uploads|root.
*
* @return bool|string True on success. String with the error message on failure.
*/
public function unsave_htaccess( $location = false ) {
if ( ! $this->is_htaccess_written( $location ) ) {
return esc_html__( "The .htaccess file doesn't contain the WebP rules from Smush.", 'wp-smushit' );
}
$markers_inserted = false;
// Remove the rules from all the possible places if not specified.
$locations = ! $location ? $this->get_htaccess_locations() : array( $location );
foreach ( $locations as $name ) {
$htaccess = $this->get_htaccess_file( $name );
$markers_inserted = insert_with_markers( $htaccess, $this->marker_suffix(), '' ) || ! empty( $markers_inserted );
}
if ( ! $markers_inserted ) {
return esc_html__( 'We were unable to automatically remove the rules. We recommend trying to remove the rules manually. If you don’t have access to the .htaccess file to remove it manually, please consult with your hosting provider to change the configuration on the server.', 'wp-smushit' );
}
return true;
}
}