-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathCdn_Core_Admin.php
970 lines (838 loc) · 27.1 KB
/
Cdn_Core_Admin.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
<?php
/**
* File: Cdn_Core_Admin.php
*
* @package W3TC
*/
namespace W3TC;
/**
* Class Cdn_Core_Admin
*
* W3 Total Cache CDN Plugin
*
* phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
* phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
* phpcs:disable WordPress.PHP.DiscouragedPHPFunctions.serialize_unserialize
* phpcs:disable WordPress.WP.GlobalVariablesOverride.Prohibited
* phpcs:disable WordPress.DB.DirectDatabaseQuery
* phpcs:disable WordPress.DB.PreparedSQL.NotPrepared
*/
class Cdn_Core_Admin {
/**
* Config
*
* @var Config
*/
private $_config = null;
/**
* Constructor for the Cdn_Core_Admin class.
*
* Initializes the configuration by dispatching the configuration object.
*
* @return void
*/
public function __construct() {
$this->_config = Dispatcher::config();
}
/**
* Purges the CDN files associated with an attachment.
*
* This method retrieves the files associated with the given attachment ID and purges them from the CDN.
*
* @param int $attachment_id The ID of the attachment to purge.
* @param array $results Reference to an array that will store the purge results.
*
* @return bool True on success, false on failure.
*/
public function purge_attachment( $attachment_id, &$results ) {
$common = Dispatcher::component( 'Cdn_Core' );
$files = $common->get_attachment_files( $attachment_id );
return $common->purge( $files, $results );
}
/**
* Updates the queue entry with the latest error message.
*
* This method updates the `last_error` field and the `date` for a specific queue item.
*
* @param int $queue_id The ID of the queue item to update.
* @param string $last_error The error message to store.
*
* @return int|false The number of affected rows, or false on failure.
*/
public function queue_update( $queue_id, $last_error ) {
global $wpdb;
$sql = sprintf( 'UPDATE %s SET last_error = "%s", date = NOW() WHERE id = %d', $wpdb->base_prefix . W3TC_CDN_TABLE_QUEUE, esc_sql( $last_error ), $queue_id );
return $wpdb->query( $sql );
}
/**
* Deletes a queue item from the database.
*
* This method removes a specific queue entry identified by its ID.
*
* @param int $queue_id The ID of the queue item to delete.
*
* @return int|false The number of affected rows, or false on failure.
*/
public function queue_delete( $queue_id ) {
global $wpdb;
$sql = sprintf( 'DELETE FROM %s WHERE id = %d', $wpdb->base_prefix . W3TC_CDN_TABLE_QUEUE, $queue_id );
return $wpdb->query( $sql );
}
/**
* Empties the queue based on a command.
*
* This method deletes all queue entries that match the specified command.
*
* @param int $command The command identifier to filter the queue entries.
*
* @return int|false The number of affected rows, or false on failure.
*/
public function queue_empty( $command ) {
global $wpdb;
$sql = sprintf( 'DELETE FROM %s WHERE command = %d', $wpdb->base_prefix . W3TC_CDN_TABLE_QUEUE, $command );
return $wpdb->query( $sql );
}
/**
* Retrieves a list of queue items from the database.
*
* This method fetches queue entries, optionally limiting the number of results returned.
*
* @param int|null $limit The maximum number of queue entries to retrieve, or null for no limit.
*
* @return array An associative array of queue items, grouped by command.
*/
public function queue_get( $limit = null ) {
global $wpdb;
$sql = sprintf( 'SELECT * FROM %s%s ORDER BY date', $wpdb->base_prefix, W3TC_CDN_TABLE_QUEUE );
if ( $limit ) {
$sql .= sprintf( ' LIMIT %d', $limit );
}
$results = $wpdb->get_results( $sql );
$queue = array();
if ( $results ) {
foreach ( (array) $results as $result ) {
$queue[ $result->command ][] = $result;
}
}
return $queue;
}
/**
* Processes items in the queue and performs the respective CDN actions.
*
* This method processes the queued commands (upload, delete, or purge) and interacts with the CDN to perform
* the necessary operations on the files. The results are handled accordingly, updating the queue.
*
* @param int $limit The maximum number of items to process from the queue.
*
* @return int The number of items successfully processed.
*/
public function queue_process( $limit ) {
$items = 0;
$commands = $this->queue_get( $limit );
$force_rewrite = $this->_config->get_boolean( 'cdn.force.rewrite' );
if ( count( $commands ) ) {
$common = Dispatcher::component( 'Cdn_Core' );
$cdn = $common->get_cdn();
foreach ( $commands as $command => $queue ) {
$files = array();
$results = array();
$map = array();
foreach ( $queue as $result ) {
$files[] = $common->build_file_descriptor( $result->local_path, $result->remote_path );
$map[ $result->local_path ] = $result->id;
++$items;
}
switch ( $command ) {
case W3TC_CDN_COMMAND_UPLOAD:
foreach ( $files as $file ) {
$local_file_name = $file['local_path'];
$remote_file_name = $file['remote_path'];
if ( ! file_exists( $local_file_name ) ) {
Dispatcher::create_file_for_cdn( $local_file_name );
}
}
$cdn->upload( $files, $results, $force_rewrite );
foreach ( $results as $result ) {
if ( W3TC_CDN_RESULT_OK === $result['result'] ) {
Dispatcher::on_cdn_file_upload( $result['local_path'] );
}
}
break;
case W3TC_CDN_COMMAND_DELETE:
$cdn->delete( $files, $results );
break;
case W3TC_CDN_COMMAND_PURGE:
$cdn->purge( $files, $results );
break;
}
foreach ( $results as $result ) {
if ( W3TC_CDN_RESULT_OK === $result['result'] ) {
$this->queue_delete( $map[ $result['local_path'] ] );
} else {
$this->queue_update( $map[ $result['local_path'] ], $result['error'] );
}
}
}
}
return $items;
}
/**
* Exports library attachments to a CDN.
*
* This method retrieves a list of attachment files and their metadata from the WordPress database, processes
* each attachment to generate a file descriptor, and uploads the files to a Content Delivery Network (CDN).
* It also handles pagination via the limit and offset parameters and updates the provided count and total values
* with the number of results and the total attachment count respectively.
*
* @param int $limit The number of attachments to retrieve. If set to 0, no limit is applied.
* @param int $offset The offset for retrieving attachments. Defaults to 0.
* @param int $count The variable to store the number of attachments retrieved.
* @param int $total The variable to store the total number of attachments.
* @param array $results The variable to store the results of the upload process.
* @param int $timeout_time The timeout duration for the upload request in seconds. Defaults to 0 (no timeout).
*
* @return void
*/
public function export_library( $limit, $offset, &$count, &$total, &$results, $timeout_time = 0 ) {
global $wpdb;
$count = 0;
$total = 0;
$upload_info = Util_Http::upload_info();
if ( $upload_info ) {
$sql = sprintf(
'SELECT
pm.meta_value AS file,
pm2.meta_value AS metadata
FROM
%sposts AS p
LEFT JOIN
%spostmeta AS pm ON p.ID = pm.post_ID AND pm.meta_key = "_wp_attached_file"
LEFT JOIN
%spostmeta AS pm2 ON p.ID = pm2.post_ID AND pm2.meta_key = "_wp_attachment_metadata"
WHERE
p.post_type = "attachment" AND (pm.meta_value IS NOT NULL OR pm2.meta_value IS NOT NULL)
GROUP BY
p.ID
ORDER BY
p.ID',
$wpdb->prefix,
$wpdb->prefix,
$wpdb->prefix
);
if ( $limit ) {
$sql .= sprintf( ' LIMIT %d', $limit );
if ( $offset ) {
$sql .= sprintf( ' OFFSET %d', $offset );
}
}
$posts = $wpdb->get_results( $sql );
if ( $posts ) {
$count = count( $posts );
$total = $this->get_attachments_count();
$files = array();
$common = Dispatcher::component( 'Cdn_Core' );
foreach ( $posts as $post ) {
$post_files = array();
if ( $post->file ) {
$file = $common->normalize_attachment_file( $post->file );
$local_file = $upload_info['basedir'] . '/' . $file;
$remote_file = ltrim( $upload_info['baseurlpath'] . $file, '/' );
$post_files[] = $common->build_file_descriptor( $local_file, $remote_file );
}
if ( $post->metadata ) {
$metadata = @unserialize( $post->metadata );
$post_files = array_merge( $post_files, $common->get_metadata_files( $metadata ) );
}
$post_files = apply_filters( 'w3tc_cdn_add_attachment', $post_files );
$files = array_merge( $files, $post_files );
}
$common = Dispatcher::component( 'Cdn_Core' );
$common->upload( $files, false, $results, $timeout_time );
}
}
}
/**
* Import external files into the media library.
*
* This method processes posts with links or images, checking if the external files exist in the media library.
* If the files do not exist, it downloads or copies them to the server, inserts them as attachments, and updates
* the post content to reference the new media URLs. Logs the results of the import process.
*
* phpcs:disable WordPress.Arrays.MultipleStatementAlignment
*
* @param int $limit The number of posts to process.
* @param int $offset The offset for the posts to process.
* @param int $count The number of posts processed.
* @param int $total The total number of posts to import.
* @param array $results An array to hold the results of the import process, including file paths and errors.
*
* @return void
*/
public function import_library( $limit, $offset, &$count, &$total, &$results ) {
global $wpdb;
$count = 0;
$total = 0;
$results = array();
$upload_info = Util_Http::upload_info();
$uploads_use_yearmonth_folders = get_option( 'uploads_use_yearmonth_folders' );
$document_root = Util_Environment::document_root();
@set_time_limit( $this->_config->get_integer( 'timelimit.cdn_import' ) );
if ( $upload_info ) {
/**
* Search for posts with links or images
*/
$sql = sprintf(
'SELECT
ID,
post_content,
post_date
FROM
%sposts
WHERE
post_status = "publish"
AND (post_type = "post" OR post_type = "page")
AND (post_content LIKE "%%src=%%"
OR post_content LIKE "%%href=%%")',
$wpdb->prefix
);
if ( $limit ) {
$sql .= sprintf( ' LIMIT %d', $limit );
if ( $offset ) {
$sql .= sprintf( ' OFFSET %d', $offset );
}
}
$posts = $wpdb->get_results( $sql );
if ( $posts ) {
$count = count( $posts );
$total = $this->get_import_posts_count();
$regexp = '~(' . $this->get_regexp_by_mask( $this->_config->get_string( 'cdn.import.files' ) ) . ')$~';
$config_state = Dispatcher::config_state();
$import_external = $config_state->get_boolean( 'cdn.import.external' );
foreach ( $posts as $post ) {
$matches = null;
$replaced = array();
$attachments = array();
$post_content = $post->post_content;
/**
* Search for all link and image sources
*/
if ( preg_match_all( '~(href|src)=[\'"]?([^\'"<>\s]+)[\'"]?~', $post_content, $matches, PREG_SET_ORDER ) ) {
foreach ( $matches as $match ) {
list( $search, $attribute, $origin ) = $match;
/**
* Check if $search is already replaced
*/
if ( isset( $replaced[ $search ] ) ) {
continue;
}
$error = '';
$result = false;
$src = Util_Environment::normalize_file_minify( $origin );
$dst = '';
/**
* Check if file exists in the library
*/
if ( stristr( $origin, $upload_info['baseurl'] ) === false ) {
/**
* Check file extension
*/
$check_src = $src;
if ( Util_Environment::is_url( $check_src ) ) {
$qpos = strpos( $check_src, '?' );
if ( false !== $qpos ) {
$check_src = substr( $check_src, 0, $qpos );
}
}
if ( preg_match( $regexp, $check_src ) ) {
/**
* Check for already uploaded attachment
*/
if ( isset( $attachments[ $src ] ) ) {
list( $dst, $dst_url ) = $attachments[ $src ];
$result = true;
} else {
if ( $uploads_use_yearmonth_folders ) {
$upload_subdir = gmdate( 'Y/m', strtotime( $post->post_date ) );
$upload_dir = sprintf( '%s/%s', $upload_info['basedir'], $upload_subdir );
$upload_url = sprintf( '%s/%s', $upload_info['baseurl'], $upload_subdir );
} else {
$upload_subdir = '';
$upload_dir = $upload_info['basedir'];
$upload_url = $upload_info['baseurl'];
}
$src_filename = pathinfo( $src, PATHINFO_FILENAME );
$src_extension = pathinfo( $src, PATHINFO_EXTENSION );
/**
* Get available filename
*/
for ( $i = 0; ; $i++ ) {
$dst = sprintf( '%s/%s%s%s', $upload_dir, $src_filename, ( $i ? $i : '' ), ( $src_extension ? '.' . $src_extension : '' ) );
if ( ! file_exists( $dst ) ) {
break;
}
}
$dst_basename = basename( $dst );
$dst_url = sprintf( '%s/%s', $upload_url, $dst_basename );
$dst_path = ltrim( str_replace( $document_root, '', Util_Environment::normalize_path( $dst ) ), '/' );
if ( $upload_subdir ) {
Util_File::mkdir( $upload_subdir, 0777, $upload_info['basedir'] );
}
$download_result = false;
/**
* Check if file is remote URL
*/
if ( Util_Environment::is_url( $src ) ) {
/**
* Download file
*/
if ( $import_external ) {
$download_result = Util_Http::download( $src, $dst );
if ( ! $download_result ) {
$error = 'Unable to download file';
}
} else {
$error = 'External file import is disabled';
}
} else {
/**
* Otherwise copy file from local path
*/
$src_path = $document_root . '/' . urldecode( $src );
if ( file_exists( $src_path ) ) {
$download_result = @copy( $src_path, $dst );
if ( ! $download_result ) {
$error = 'Unable to copy file';
}
} else {
$error = 'Source file doesn\'t exists';
}
}
/**
* Check if download or copy was successful
*/
if ( $download_result ) {
$title = $dst_basename;
$guid = ltrim( $upload_info['baseurlpath'] . $title, ',' );
$mime_type = Util_Mime::get_mime_type( $dst );
$GLOBALS['wp_rewrite'] = new \WP_Rewrite();
/**
* Insert attachment
*/
$id = wp_insert_attachment(
array(
'post_mime_type' => $mime_type,
'guid' => $guid,
'post_title' => $title,
'post_content' => '',
'post_parent' => $post->ID,
),
$dst
);
if ( ! is_wp_error( $id ) ) {
/**
* Generate attachment metadata and upload to CDN
*/
require_once ABSPATH . 'wp-admin/includes/image.php';
wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $dst ) );
$attachments[ $src ] = array(
$dst,
$dst_url,
);
$result = true;
} else {
$error = 'Unable to insert attachment';
}
}
}
/**
* If attachment was successfully created then replace links
*/
if ( $result ) {
$replace = sprintf( '%s="%s"', $attribute, $dst_url );
// replace $search with $replace.
$post_content = str_replace( $search, $replace, $post_content );
$replaced[ $search ] = $replace;
$error = 'OK';
}
} else {
$error = 'File type rejected';
}
} else {
$error = 'File already exists in the media library';
}
/**
* Add new entry to the log file
*/
$results[] = array(
'src' => $src,
'dst' => $dst_path,
'result' => $result,
'error' => $error,
);
}
}
/**
* If post content was chenged then update DB
*/
if ( $post_content !== $post->post_content ) {
wp_update_post(
array(
'ID' => $post->ID,
'post_content' => $post_content,
)
);
}
}
}
}
}
/**
* Renames domain URLs in post content.
*
* This method searches for URLs in published posts and pages that match a given set of domain names, and renames
* them with the new base URL. The renaming process involves identifying `src` and `href` attributes within post
* content and replacing any matched URLs that reference the old domain with the new base URL, updating the post
* content accordingly.
*
* @param array $names An array of domain names to be renamed.
* @param int $limit The maximum number of posts to process at once (optional).
* @param int $offset The offset for pagination (optional).
* @param int $count The number of posts processed.
* @param int $total The total number of posts that require renaming.
* @param array $results An array of results showing old and new URLs with status.
*
* @return void
*/
public function rename_domain( $names, $limit, $offset, &$count, &$total, &$results ) {
global $wpdb;
@set_time_limit( $this->_config->get_integer( 'timelimit.domain_rename' ) );
$count = 0;
$total = 0;
$results = array();
$upload_info = Util_Http::upload_info();
foreach ( $names as $index => $name ) {
$names[ $index ] = str_ireplace( 'www.', '', $name );
}
if ( $upload_info ) {
$sql = sprintf(
'SELECT
ID,
post_content,
post_date
FROM
%sposts
WHERE
post_status = "publish"
AND (post_type = "post" OR post_type = "page")
AND (post_content LIKE "%%src=%%"
OR post_content LIKE "%%href=%%")',
$wpdb->prefix
);
if ( $limit ) {
$sql .= sprintf( ' LIMIT %d', $limit );
if ( $offset ) {
$sql .= sprintf( ' OFFSET %d', $offset );
}
}
$posts = $wpdb->get_results( $sql );
if ( $posts ) {
$count = count( $posts );
$total = $this->get_rename_posts_count();
$names_quoted = array_map( array( '\W3TC\Util_Environment', 'preg_quote' ), $names );
foreach ( $posts as $post ) {
$matches = null;
$post_content = $post->post_content;
$regexp = '~(href|src)=[\'"]?(https?://(www\.)?(' . implode( '|', $names_quoted ) . ')' . Util_Environment::preg_quote( $upload_info['baseurlpath'] ) . '([^\'"<>\s]+))[\'"]~';
if ( preg_match_all( $regexp, $post_content, $matches, PREG_SET_ORDER ) ) {
foreach ( $matches as $match ) {
$old_url = $match[2];
$new_url = sprintf( '%s/%s', $upload_info['baseurl'], $match[5] );
$post_content = str_replace( $old_url, $new_url, $post_content );
$results[] = array(
'old' => $old_url,
'new' => $new_url,
'result' => true,
'error' => 'OK',
);
}
}
if ( $post_content !== $post->post_content ) {
wp_update_post(
array(
'ID' => $post->ID,
'post_content' => $post_content,
)
);
}
}
}
}
}
/**
* Retrieves the count of attachments in the WordPress database.
*
* This method queries the WordPress database to count the number of attachments that are stored in the posts table,
* ensuring that there is an associated `_wp_attached_file` or `_wp_attachment_metadata` meta key. This is useful for
* tracking the number of media files stored in the system.
*
* @return int The total number of attachments.
*/
public function get_attachments_count() {
global $wpdb;
$sql = sprintf(
'SELECT COUNT(DISTINCT p.ID)
FROM %sposts AS p
LEFT JOIN %spostmeta AS pm ON p.ID = pm.post_ID
AND
pm.meta_key = "_wp_attached_file"
LEFT JOIN %spostmeta AS pm2 ON p.ID = pm2.post_ID
AND
pm2.meta_key = "_wp_attachment_metadata"
WHERE
p.post_type = "attachment"
AND
(pm.meta_value IS NOT NULL OR pm2.meta_value IS NOT NULL)',
$wpdb->prefix,
$wpdb->prefix,
$wpdb->prefix
);
return $wpdb->get_var( $sql );
}
/**
* Retrieves the count of posts and pages that contain media references (e.g., `src` or `href` attributes).
*
* This method counts the number of posts and pages in the WordPress database that have `src` or `href` attributes
* in their content, which typically indicate the presence of media (e.g., images, links, or other assets).
*
* @return int The total number of posts and pages with media references.
*/
public function get_import_posts_count() {
global $wpdb;
$sql = sprintf(
'SELECT
COUNT(*)
FROM
%sposts
WHERE
post_status = "publish"
AND
(post_type = "post"
OR
post_type = "page")
AND
(post_content LIKE "%%src=%%"
OR
post_content LIKE "%%href=%%")',
$wpdb->prefix
);
return $wpdb->get_var( $sql );
}
/**
* Retrieves the count of posts and pages that require domain renaming based on media references.
*
* This method is essentially a shortcut to `get_import_posts_count()` and returns the number of posts and pages
* that need their URLs updated during a domain rename operation.
*
* @return int The total number of posts and pages to be renamed.
*/
public function get_rename_posts_count() {
return $this->get_import_posts_count();
}
/**
* Generates a regular expression pattern based on a given mask.
*
* This method takes a mask (e.g., wildcard pattern) and converts it into a valid regular expression, where `*`
* and `?` are replaced by patterns that match any sequence of characters. This allows for more flexible matching
* of domain names or other patterns within content.
*
* @param string $mask The mask to convert into a regular expression.
*
* @return string The generated regular expression pattern.
*/
public function get_regexp_by_mask( $mask ) {
$mask = trim( $mask );
$mask = Util_Environment::preg_quote( $mask );
$mask = str_replace(
array(
'\*',
'\?',
';',
),
array(
'@ASTERISK@',
'@QUESTION@',
'|',
),
$mask
);
$regexp = str_replace(
array(
'@ASTERISK@',
'@QUESTION@',
),
array(
'[^\\?\\*:\\|"<>]*',
'[^\\?\\*:\\|"<>]',
),
$mask
);
return $regexp;
}
/**
* Adds custom actions to the media row in the WordPress admin interface.
*
* This method adds a custom action link to the media file row in the WordPress admin, allowing an admin user to
* purge the media file from the CDN. The link includes a nonce for security purposes.
*
* @param array $actions An array of existing action links for the media.
* @param WP_Post $post The current post object representing the media item.
*
* @return array The updated array of action links.
*/
public function media_row_actions( $actions, $post ) {
$actions = array_merge(
$actions,
array(
'cdn_purge' => sprintf(
'<a href="%s">' . __( 'Purge from CDN', 'w3-total-cache' ) . '</a>',
wp_nonce_url(
sprintf(
'admin.php?page=w3tc_dashboard&w3tc_cdn_purge_attachment&attachment_id=%d',
$post->ID
),
'w3tc'
)
),
)
);
return $actions;
}
/**
* Checks if the CDN is running based on the current configuration.
*
* This method verifies the CDN engine configuration and ensures that all necessary
* settings (like API keys, buckets, domains, etc.) are provided and valid. It checks
* for different CDN engines, including FTP, S3, Cloudflare (CF), Azure, and others.
* The method returns true if the CDN is correctly configured and operational,
* and false otherwise.
*
* @return bool True if the CDN is running, false otherwise.
*/
public function is_running() {
/**
* CDN
*/
$running = true;
/**
* Check CDN settings
*/
$cdn_engine = $this->_config->get_string( 'cdn.engine' );
switch ( true ) {
case (
'ftp' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.ftp.domain' ) )
):
$running = false;
break;
case (
's3' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.s3.key' ) ||
'' === $this->_config->get_string( 'cdn.s3.secret' ) ||
'' === $this->_config->get_string( 'cdn.s3.bucket' )
)
):
$running = false;
break;
case (
'cf' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.cf.key' ) ||
'' === $this->_config->get_string( 'cdn.cf.secret' ) ||
'' === $this->_config->get_string( 'cdn.cf.bucket' ) ||
(
'' === $this->_config->get_string( 'cdn.cf.id' ) &&
! count( $this->_config->get_array( 'cdn.cf.cname' ) )
)
)
):
$running = false;
break;
case (
'cf2' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.cf2.key' ) ||
'' === $this->_config->get_string( 'cdn.cf2.secret' ) ||
(
'' === $this->_config->get_string( 'cdn.cf2.id' ) &&
! count( $this->_config->get_array( 'cdn.cf2.cname' ) )
)
)
):
$running = false;
break;
case (
'rscf' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.rscf.user' ) ||
'' === $this->_config->get_string( 'cdn.rscf.key' ) ||
'' === $this->_config->get_string( 'cdn.rscf.container' ) ||
! count( $this->_config->get_array( 'cdn.rscf.cname' ) )
)
):
$running = false;
break;
case (
'azure' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.azure.user' ) ||
'' === $this->_config->get_string( 'cdn.azure.key' ) ||
'' === $this->_config->get_string( 'cdn.azure.container' )
)
):
$running = false;
break;
case (
'azuremi' === $cdn_engine &&
(
'' === $this->_config->get_string( 'cdn.azuremi.user' ) ||
'' === $this->_config->get_string( 'cdn.azuremi.clientid' ) ||
'' === $this->_config->get_string( 'cdn.azuremi.container' )
)
):
$running = false;
break;
case (
'mirror' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.mirror.domain' ) )
):
$running = false;
break;
case (
'cotendo' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.cotendo.domain' ) )
):
$running = false;
break;
case (
'edgecast' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.edgecast.domain' ) )
):
$running = false;
break;
case (
'att' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.att.domain' ) )
):
$running = false;
break;
case (
'akamai' === $cdn_engine &&
! count( $this->_config->get_array( 'cdn.akamai.domain' ) )
):
$running = false;
break;
}
return $running;
}
}