-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathhelper-functions.php
More file actions
1204 lines (1041 loc) · 38.6 KB
/
Copy pathhelper-functions.php
File metadata and controls
1204 lines (1041 loc) · 38.6 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
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
/**
* Accessibility Checker plugin file.
*
* @package Accessibility_Checker
*/
use EDAC\Admin\Settings;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Compare strings
*
* @param string $string1 String to compare.
* @param string $string2 String to compare.
* @return boolean
*/
function edac_compare_strings( $string1, $string2 ) {
/**
* Prepare strings for our comparison.
*
* @param string $content String to prepare.
* @return string
*/
$prepare_strings = function ( $content ) {
// Text to remove.
$remove_text = [
__( 'permalink of ', 'accessibility-checker' ),
__( 'permalink to ', 'accessibility-checker' ),
__( ' ', 'accessibility-checker' ),
];
$content = strtolower( $content );
$content = str_ireplace( $remove_text, '', $content );
$content = wp_strip_all_tags( $content );
$content = trim( $content, " \t\n\r\0\x0B\xC2\xA0" );
return html_entity_decode( $content, ENT_QUOTES | ENT_HTML5 );
};
return $prepare_strings( $string1 ) === $prepare_strings( $string2 );
}
/**
* Check if plugin is installed by getting all plugins from the plugins dir
*
* @param string $plugin_slug Slug of the plugin.
* @return bool
*/
function edac_check_plugin_installed( $plugin_slug ) {
$installed_plugins = get_plugins();
return array_key_exists( $plugin_slug, $installed_plugins ) || in_array( $plugin_slug, $installed_plugins, true );
}
/**
* Convert cardinal number into ordinal number
*
* @param int|string $number Number to make ordinal.
* @return string
*/
function edac_ordinal( $number ) {
$number = (int) $number;
if ( class_exists( 'NumberFormatter' ) ) {
return (
new NumberFormatter(
get_locale(),
NumberFormatter::ORDINAL
)
)->format( $number );
} else {
if ( $number % 100 >= 11 && $number % 100 <= 13 ) {
$ordinal = $number . 'th';
} else {
switch ( $number % 10 ) {
case 1:
$ordinal = $number . 'st';
break;
case 2:
$ordinal = $number . 'nd';
break;
case 3:
$ordinal = $number . 'rd';
break;
default:
$ordinal = $number . 'th';
break;
}
}
return $ordinal;
}
}
/**
* Remove element from multi-dimensional array
*
* @param array $items The multi-dimensional array.
* @param string $key The key of the element.
* @param string $value The value of the element.
* @return array
*/
function edac_remove_element_with_value( $items, $key, $value ) {
foreach ( $items as $sub_key => $sub_array ) {
if ( $sub_array[ $key ] === $value ) {
unset( $items[ $sub_key ] );
}
}
return $items;
}
/**
* Filter a multi-dimensional array
*
* @param array $items The multi-dimensional array.
* @param string $index The index of the element.
* @param string $value The element value to match.
* @return array
*/
function edac_filter_by_value( $items, $index, $value ) {
if ( is_array( $items ) && count( $items ) > 0 ) {
foreach ( array_keys( $items ) as $key ) {
$temp[ $key ] = $items[ $key ][ $index ];
if ( $temp[ $key ] === $value ) {
$newarray[ $key ] = $items[ $key ];
}
}
}
if ( isset( $newarray ) && is_array( $newarray ) && count( $newarray ) ) {
return array_values( $newarray );
}
return [];
}
/**
* Get days plugin has been active
*
* @return int
*/
function edac_days_active() {
$activation_date = get_option( 'edac_activation_date' );
if ( $activation_date ) {
$diff = strtotime( $activation_date ) - strtotime( gmdate( 'Y-m-d H:i:s' ) );
return abs( round( $diff / 86400 ) );
}
return 0;
}
/**
* Custom Post Types
*
* Returns only non-built-in post types that are publicly viewable, meaning
* both public and publicly_queryable are true. Post types that redirect
* frontend requests (publicly_queryable = false) are excluded so they do
* not appear as scan targets in settings.
*
* @return array
*/
function edac_custom_post_types() {
$args = [
'public' => true,
'publicly_queryable' => true,
'_builtin' => false,
];
$output = 'names'; // names or objects, note names is the default.
$operator = 'and'; // Options 'and' or 'or'.
return get_post_types( $args, $output, $operator );
}
/**
* Available Post Types
*
* @return array
*/
function edac_post_types() {
/**
* Filter the post types that the plugin will check.
*
* @since 1.4.0
*
* @param array $post_types post types.
*/
$post_types = apply_filters( 'edac_filter_post_types', [ 'post', 'page' ] );
if ( ! is_array( $post_types ) ) {
$post_types = [ $post_types ];
}
// remove duplicates.
$post_types = array_unique( $post_types );
// validate post types.
foreach ( $post_types as $key => $post_type ) {
if ( ! post_type_exists( $post_type ) ) {
unset( $post_types[ $key ] );
}
}
return $post_types;
}
/**
* Retrieve a human readable post type label.
*
* @param string $post_type Post type slug.
* @return string
*/
function edac_get_post_type_label( string $post_type ): string {
$post_type = sanitize_key( (string) $post_type );
if ( '' === $post_type ) {
return '';
}
$post_type_object = get_post_type_object( $post_type );
if ( $post_type_object instanceof \WP_Post_Type && ! empty( $post_type_object->labels->name ) ) {
return $post_type_object->labels->name;
}
return ucfirst( $post_type );
}
/**
* This function validates a table name against WordPress naming conventions and checks its existence in the database.
*
* The function first checks if the provided table name only contains alphanumeric characters, underscores, or hyphens.
* If not, it returns null.
*
* After that, it checks if a table with that name actually exists in the database using the SHOW TABLES LIKE query.
* If the table doesn't exist, it also returns null.
*
* If both checks are passed, it returns the valid table name.
*
* @param string $table_name The name of the table to be validated.
*
* @return string|null The validated table name, or null if the table name is invalid or the table does not exist.
*/
function edac_get_valid_table_name( $table_name ) {
global $wpdb;
static $found_table_name;
if ( isset( $found_table_name ) ) {
return $found_table_name;
}
// Check if table name only contains alphanumeric characters, underscores, or hyphens.
if ( ! preg_match( '/^[a-zA-Z0-9_\-]+$/', $table_name ) ) {
// Invalid table name.
return null;
}
// Verify that the table actually exists in the database.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
if ( $wpdb->get_var( $wpdb->prepare( 'SHOW TABLES LIKE %s', $table_name ) ) !== $table_name ) {
// Table does not exist.
return null;
}
$found_table_name = $table_name;
return $found_table_name;
}
/**
* Upcoming meetups in json format
*
* @param string $meetup meetup name.
* @param integer $count number of meetups to return.
* @return array
*/
function edac_get_upcoming_meetups_json( $meetup, $count = 5 ) {
if ( empty( $meetup ) || ! is_string( $meetup ) ) {
return [];
}
// Min of 1 and max of 25.
$count = absint( max( 1, min( 25, $count ) ) );
// Sanitize meetup name for both cache key and GraphQL query to prevent injection.
$sanitized_meetup = sanitize_title( $meetup );
$key = '_upcoming_meetups__' . $sanitized_meetup . '__' . (int) $count;
$stale_key = $key . '__stale';
$cached_value = get_transient( $key );
if ( false !== $cached_value ) {
return is_array( $cached_value ) ? $cached_value : [];
}
$output = [];
$request_uri = 'https://api.meetup.com/gql-ext';
$query = '
query Group {
groupByUrlname(urlname: "' . $sanitized_meetup . '") {
events(first: ' . (int) $count . ') {
totalCount
edges {
node {
dateTime
eventUrl
id
title
}
}
}
}
}';
$request = wp_remote_post(
$request_uri,
[
'headers' => [
'Content-Type' => 'application/json',
],
'timeout' => 10, // phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout -- Timeout set for external request.
'body' => wp_json_encode(
[
'query' => $query,
]
),
]
);
if ( ! is_wp_error( $request ) && 200 === (int) wp_remote_retrieve_response_code( $request ) ) {
$response_body = json_decode( wp_remote_retrieve_body( $request ) );
$edges = null;
if ( is_object( $response_body ) && isset( $response_body->data->groupByUrlname->events->edges ) ) {
$edges = $response_body->data->groupByUrlname->events->edges;
}
if ( is_array( $edges ) ) {
foreach ( $edges as $edge ) {
if ( ! isset( $edge->node ) ) {
continue;
}
$event = $edge->node;
// phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase -- GraphQL response uses camelCase.
if ( empty( $event->title ) || empty( $event->dateTime ) || empty( $event->eventUrl ) || empty( $event->id ) ) {
continue;
}
$timestamp = strtotime( (string) $event->dateTime );
if ( false === $timestamp ) {
continue;
}
$event_data = new stdClass();
$event_data->name = (string) $event->title;
$event_data->time = $timestamp * 1000; // Convert to milliseconds to match old format.
$event_data->link = (string) $event->eventUrl;
$event_data->id = (string) $event->id;
// phpcs:enable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase.
$output[] = $event_data;
}
}
}
if ( ! empty( $output ) ) {
set_transient( $key, $output, DAY_IN_SECONDS );
update_option( $stale_key, $output, false );
return $output;
}
$stale_value = get_option( $stale_key );
if ( is_array( $stale_value ) && ! empty( $stale_value ) ) {
// Serve stale data for a short window while retrying upstream requests periodically.
set_transient( $key, $stale_value, HOUR_IN_SECONDS );
return $stale_value;
}
return [];
}
/**
* Upcoming meetups in html
*
* @param string $meetup meetup name.
* @param integer $count number of meetups to return.
* @param string $heading heading level.
* @return string
*/
function edac_get_upcoming_meetups_html( $meetup, $count = 5, $heading = '3' ) {
$json = edac_get_upcoming_meetups_json( $meetup, $count );
if ( empty( $json ) ) {
return '';
}
$html = '<ul class="edac-upcoming-meetup-list">';
foreach ( $json as $event ) {
$link_text = esc_html__( 'Attend Free', 'accessibility-checker' );
$html .= '
<li class="edac-upcoming-meetup-item edac-mb-3">
<h' . esc_html( $heading ) . ' class="edac-upcoming-meetup-item-name">' . esc_html( $event->name ) . '</h' . esc_html( $heading ) . '>
<div class="edac-upcoming-meetup-item-time edac-timestamp-to-local">' . (string) ( (int) $event->time / 1000 ) . '</div>
<a aria-label="' . esc_attr( $link_text . ': ' . $event->name . ' ' . __( '(opens in a new window)', 'accessibility-checker' ) ) . '" class="edac-upcoming-meetup-item-link" href="' . esc_url( $event->link ) . '" target="_blank" rel="noopener noreferrer">' . $link_text . '<span aria-hidden="true"> ↗</span></a>
</li>';
}
$html .= '</ul>';
return $html;
}
/**
* Calculate the issue density
*
* @param int $issue_count number of issues.
* @param int $element_count number of elements.
* @param int $content_length length of content.
* @return int
*/
function edac_get_issue_density( $issue_count, $element_count, $content_length ) {
if ( $element_count < 1 || $content_length < 1 ) {
return 0;
}
$element_weight = .8;
$content_weight = .2;
$error_elements_percentage = $issue_count / $element_count;
$error_content_percentage = $issue_count / $content_length;
$score = (
( $error_elements_percentage * $element_weight ) +
( $error_content_percentage * $content_weight )
);
return round( $score * 100, 2 );
}
/**
* Get simplified summary
*
* @param integer $post Post ID.
* @return void
*/
function edac_get_simplified_summary( $post = null ) {
if ( null === $post ) {
$post = get_the_ID();
}
if ( null === $post ) {
return;
}
echo wp_kses_post(
( new \EDAC\Inc\Simplified_Summary() )->simplified_summary_markup( $post )
);
}
/**
* Get Post Count by available custom post types
*
* @return mixed
*/
function edac_get_posts_count() {
$output = [];
$post_types = Settings::get_scannable_post_types();
if ( $post_types ) {
foreach ( $post_types as $post_type ) {
$counts = wp_count_posts( $post_type );
if ( $counts ) {
foreach ( $counts as $key => $value ) {
// phpcs:ignore Universal.Operators.StrictComparisons.LooseEqual
if ( 0 == $value ) {
unset( $counts->{$key} );
}
}
}
if ( $counts ) {
$array = [];
foreach ( $counts as $key => $value ) {
$array[] = $key . ' = ' . $value;
}
if ( $array ) {
$output[] = $post_type . ': ' . implode( ', ', $array );
}
}
}
}
if ( $output ) {
return implode( ', ', $output );
}
return false;
}
/**
* Get Raw Global Error Count
*
* @return array
*/
function edac_get_error_count() {
global $wpdb;
// Define a unique cache key for our data.
$cache_key = 'edac_errors_' . get_current_blog_id();
$stored_errors = wp_cache_get( $cache_key );
// Check if the result exists in the cache.
if ( false === $stored_errors ) {
// If not, perform the database query.
$table_name = $wpdb->prefix . 'accessibility_checker';
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$stored_errors = (int) $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i WHERE siteid = %d AND ruletype = %s', $table_name, get_current_blog_id(), 'error' ) );
// Save the result in the cache for future use.
wp_cache_set( $cache_key, $stored_errors );
}
return $stored_errors;
}
/**
* Get Raw Global Warning Count
*
* @return array Array of.
*/
function edac_get_warning_count() {
global $wpdb;
// Define a unique cache key for our data.
$cache_key = 'edac_warnings_' . get_current_blog_id();
$stored_warnings = wp_cache_get( $cache_key );
// Check if the result exists in the cache.
if ( false === $stored_warnings ) {
// If not, perform the database query.
$table_name = $wpdb->prefix . 'accessibility_checker';
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$stored_warnings = (int) $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i WHERE siteid = %d AND ruletype = %s', $table_name, get_current_blog_id(), 'warning' ) );
// Save the result in the cache for future use.
wp_cache_set( $cache_key, $stored_warnings );
}
return $stored_warnings;
}
/**
* Get Database Table Count
*
* @param string $table Database table.
* @return int
*/
function edac_database_table_count( $table ) {
global $wpdb;
// Create a unique cache key based on the table's name.
$cache_key = 'edac_table_count_' . $table;
// Try to get the count from the cache first.
$count = wp_cache_get( $cache_key );
if ( false === $count ) {
// If the count is not in the cache, perform the database query.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
$count = $wpdb->get_var( $wpdb->prepare( 'SELECT count(*) FROM %i', $wpdb->prefix . $table ) );
// Save the count to the cache for future use.
wp_cache_set( $cache_key, $count );
}
return $count;
}
/**
* Generate a summary statistic list item.
*
* @since 1.14.0
*
* @param string $item_class The base CSS class for the list item.
* @param int $count The count of items to display.
* @param string $label The translated label with count included.
* @param string $icon_name Icon name passed to edac_icon(). Default 'error'.
*
* @return string The generated HTML list item.
*/
function edac_generate_summary_stat( string $item_class, int $count, string $label, string $icon_name = 'error' ): string {
$has_error_class = ( $count > 0 ) ? ' has-errors' : '';
return '
<li class="edac-summary-stat ' . $item_class . $has_error_class . '">
<span class="screen-reader-text">' . $count . ' ' . $label . '</span>
' . edac_icon( $icon_name ) . '
<div class="edac-panel-number" aria-hidden="true">
' . $count . '
</div>
<div class="edac-panel-number-label" aria-hidden="true">' . $label . '</div>
</li>';
}
/**
* Generate links to pro page with some params.
*
* @param array $query_args A list of key value pairs to add as query vars to the link.
* @param string $type The type of link to generate. Default is 'pro'.
* @param array $args Additional arguments to pass on the link.
* @return string
*/
function edac_generate_link_type( $query_args = [], $type = 'pro', $args = [] ): string {
if ( ! is_array( $query_args ) ) {
$query_args = [];
}
if ( ! is_array( $args ) ) {
$args = [];
}
$date_now = new DateTime( gmdate( 'Y-m-d H:i:s' ) );
$activation_date = new DateTime( get_option( 'edac_activation_date', gmdate( 'Y-m-d H:i:s' ) ) );
$interval = $date_now->diff( $activation_date );
$days_active = $interval->days;
$query_defaults = [
'utm_source' => 'accessibility-checker',
'utm_medium' => 'software',
'utm_campaign' => 'wordpress-general',
'php_version' => PHP_VERSION,
'platform' => 'wordpress',
'platform_version' => $GLOBALS['wp_version'],
'software' => edac_is_pro() ? 'pro' : 'free',
'software_version' => defined( 'EDACP_VERSION' ) ? EDACP_VERSION : EDAC_VERSION,
'days_active' => $days_active,
];
// Add the ref parameter if one is set via filter.
$ref = apply_filters( 'edac_filter_generate_link_type_ref', '' );
if ( ! empty( $ref ) && is_string( $ref ) ) {
$query_args['ref'] = $ref;
}
$query_args = array_merge( $query_defaults, $query_args );
switch ( $type ) {
case 'help':
$base_link = trailingslashit( 'https://a11ychecker.com/help' . ( $args['help_id'] ?? '' ) );
break;
case 'custom': // phpcs:ignore -- intentially only breaking inside the condition because if it's not set we want to hit default.
if ( ! empty( $args['base_link'] ) ) {
$base_link = $args['base_link'];
break;
}
case 'pro':
default:
$base_link = 'https://equalizedigital.com/accessibility-checker/pricing/';
break;
}
return add_query_arg( $query_args, $base_link );
}
/**
* Echo or return a link with some utms.
*
* This is just a simplified wrapper around `edac_generate_link_type` to generate a link with UTM parameters.
*
* @param string $base_url the base URL to which UTM parameters will be added.
* @param string $campaign the UTM campaign name, optional.
* @param string $content the UTM content name, optional.
* @param bool $directly_echo whether to echo the link or return it. Default is true.
*
* @return void|string
*/
function edac_link_wrapper( $base_url, $campaign = '', $content = '', $directly_echo = true ) {
if ( empty( $base_url ) || ! is_string( $base_url ) ) {
return;
}
$params = [];
if ( ! empty( $campaign ) ) {
$params['utm_campaign'] = $campaign;
}
if ( ! empty( $content ) ) {
$params['utm_content'] = $content;
}
$link = edac_generate_link_type(
$params,
'custom',
[ 'base_link' => $base_url ]
);
if ( ! $directly_echo ) {
return $link;
}
echo esc_url( $link );
}
/**
* Check if WooCommerce is enabled.
*
* This just checks for existence of the main WooCommerce function and class.
*
* @return bool
*/
function edac_is_woocommerce_enabled() {
return function_exists( 'WC' ) && class_exists( 'WooCommerce' );
}
/**
* Check if a given post id is the WooCommerce checkout page.
*
* @param int $post_id The post ID to check.
* @return bool
*/
function edac_check_if_post_id_is_woocommerce_checkout_page( $post_id ) {
if ( ! edac_is_woocommerce_enabled() ) {
return false;
}
return wc_get_page_id( 'checkout' ) === $post_id;
}
/**
* Parse HTML content to extract image or SVG elements
*
* @param string $html The HTML content to parse.
* @return array Array containing 'img' (string) and 'svg' (string) keys.
*/
function edac_parse_html_for_media( $html ) {
if ( empty( $html ) ) {
return [
'img' => null,
'svg' => null,
];
}
// Decode HTML entities before processing.
$decoded_html = html_entity_decode( $html, ENT_QUOTES | ENT_HTML5 );
// Early return if no media tags found.
if ( stripos( $decoded_html, '<img' ) === false && stripos( $decoded_html, '<svg' ) === false ) {
return [
'img' => null,
'svg' => null,
];
}
// More specific img tag regex pattern.
if ( preg_match( '/<img[^>]+src=([\'"])(.*?)\1[^>]*>/i', $decoded_html, $matches ) ) {
return [
'img' => $matches[2] ?? null,
'svg' => null,
];
}
// SVG pattern remains the same.
if ( preg_match( '/<svg[^>]*>.*?<\/svg>/is', $decoded_html, $matches ) ) {
return [
'img' => null,
'svg' => $matches[0],
];
}
return [
'img' => null,
'svg' => null,
];
}
/**
* Remove corrected posts
*
* @param int $post_ID The ID of the post.
* @param string $type The type of the post.
* @param int $pre The flag indicating the removal stage (1 for before validation php based rules, 2 for after validation).
* @param string $ruleset The type of the ruleset to correct (php or js). For backwards compatibility, defaults to 'php'.
*
* @return void
*/
function edac_remove_corrected_posts( $post_ID, $type, $pre = 1, $ruleset = 'php' ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed, VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable -- $ruleset is for backwards compatibility.
global $wpdb;
$rules = edac_register_rules();
if ( 0 === count( $rules ) ) {
return;
}
$sql = 1 === $pre
? "UPDATE {$wpdb->prefix}accessibility_checker SET recordcheck = %d WHERE siteid = %d AND postid = %d AND type = %s AND (source = 'automated' OR source IS NULL)"
: "DELETE FROM {$wpdb->prefix}accessibility_checker WHERE recordcheck = %d AND siteid = %d AND postid = %d AND type = %s AND (source = 'automated' OR source IS NULL)";
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Using direct query for adding data to database, caching not required for one time operation.
$wpdb->query(
$wpdb->prepare(
$sql, // phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared, WordPress.DB.PreparedSQL.NotPrepared
0,
get_current_blog_id(),
$post_ID,
$type
)
);
}
/**
* Get the canonical landmark detection rules the scanner uses to populate the
* `landmark` database column.
*
* This is the single source of truth mirrored by `LANDMARK_TAGS`,
* `LANDMARK_ROLES`, `CONDITIONAL_LANDMARK_TAGS`, and
* `CONDITIONAL_LANDMARK_ROLES` in `src/pageScanner/index.js`. Tag names stay
* uppercase to match `Element.tagName`; role names stay lowercase to match
* the already-lowercased `role` attribute the scanner compares against.
*
* Tag-detected and role-detected landmarks are NOT normalized to a shared
* value even when conceptually the same landmark — e.g. a `<nav>` element
* saves `nav`, but `role="navigation"` saves `navigation`. Same for `<aside>`
* (`aside`) vs `role="complementary"` (`complementary`).
*
* Third-party code may extend the landmark set via the `edac_landmark_types`
* filter, but must return an array with all four keys intact.
*
* @since 1.44.0
*
* @return array{tags: string[], roles: string[], conditionalTags: string[], conditionalRoles: string[]} Landmark detection rules.
*/
function edac_get_landmark_types(): array {
$types = [
'tags' => [ 'MAIN', 'HEADER', 'FOOTER', 'NAV', 'ASIDE' ],
'roles' => [ 'main', 'navigation', 'banner', 'contentinfo', 'complementary' ],
'conditionalTags' => [ 'SECTION', 'ARTICLE', 'FORM' ],
'conditionalRoles' => [ 'region', 'article', 'form' ],
];
/**
* Filter the landmark types used by the scanner and Issues Explorer filter.
*
* @since 1.44.0
*
* @param array $types {
* @type string[] $tags Uppercase HTML tag names detected unconditionally.
* @type string[] $roles ARIA roles detected unconditionally.
* @type string[] $conditionalTags Uppercase HTML tag names detected only when the element has an accessible name.
* @type string[] $conditionalRoles ARIA roles detected only when the element has an accessible name.
* }
*/
$filtered = apply_filters( 'edac_landmark_types', $types );
return is_array( $filtered ) ? $filtered : $types;
}
/**
* Get the distinct landmark values that can actually be written to the
* `landmark` database column, as filter-friendly `{ value, label }` pairs.
*
* Built from `edac_get_landmark_types()` so the Issues Explorer's Landmark
* filter (in the pro plugin) can never drift from what the scanner persists.
*
* @since 1.44.0
*
* @return array<array{value: string, label: string}> Filter options, value lowercase, label human-readable.
*/
function edac_get_landmark_filter_options(): array {
$types = edac_get_landmark_types();
$values = array_unique(
array_map(
'strtolower',
array_merge(
$types['tags'] ?? [],
$types['roles'] ?? [],
$types['conditionalTags'] ?? [],
$types['conditionalRoles'] ?? []
)
)
);
$labels = [
/* translators: Landmark type label for the Issues Explorer filter. */
'main' => __( 'Main', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'header' => __( 'Header', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'footer' => __( 'Footer', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'nav' => __( 'Nav', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'aside' => __( 'Aside', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'navigation' => __( 'Navigation', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'banner' => __( 'Banner', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'contentinfo' => __( 'Contentinfo', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'complementary' => __( 'Complementary', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'section' => __( 'Section', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'article' => __( 'Article', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'form' => __( 'Form', 'accessibility-checker' ),
/* translators: Landmark type label for the Issues Explorer filter. */
'region' => __( 'Region', 'accessibility-checker' ),
];
return array_map(
static function ( $value ) use ( $labels ) {
return [
'value' => $value,
'label' => $labels[ $value ] ?? ucfirst( $value ),
];
},
array_values( $values )
);
}
/**
* Generate a landmark link with proper URL and ARIA label
*
* @param string $landmark The landmark type (e.g., "header", "navigation", "main").
* @param string $landmark_selector The CSS selector for the landmark.
* @param int $post_id The post ID to link to.
* @param string $css_class Optional CSS class for the link. Default 'edac-details-rule-records-record-landmark-link'.
* @param bool $target_blank Whether to open link in new window. Default true.
*
* @return string The HTML for the landmark link or just the landmark text if no selector.
*/
function edac_generate_landmark_link( $landmark, $landmark_selector, $post_id, $css_class = 'edac-details-rule-records-record-landmark-link', $target_blank = true ) {
if ( empty( $landmark ) ) {
return '';
}
$landmark = ucwords( $landmark );
$landmark = esc_html( $landmark );
// If we have both landmark and selector, create a link.
if ( ! empty( $landmark_selector ) ) {
$link = apply_filters(
'edac_get_origin_url_for_virtual_page',
get_the_permalink( $post_id ),
$post_id
);
$landmark_url = add_query_arg(
[
'edac_landmark' => base64_encode( $landmark_selector ),
'edac_nonce' => wp_create_nonce( 'edac_highlight' ),
],
$link
);
// translators: %s is the landmark type (e.g., "Header", "Navigation", "Main").
$landmark_aria_label = sprintf( __( 'View %s landmark on website, opens a new window', 'accessibility-checker' ), $landmark );
$target_attr = $target_blank ? ' target="_blank"' : '';
return sprintf(
'<a href="%s" class="%s"%s aria-label="%s">%s</a>',
esc_url( $landmark_url ),
esc_attr( $css_class ),
$target_attr,
esc_attr( $landmark_aria_label ),
$landmark
);
}
// If we only have landmark text, return it formatted.
return $landmark;
}
/**
* Check if a post is a virtual page.
*
* This function checks if a post is a virtual page using the pro plugin's
* VirtualItemType:POST_TYPE constant.
*
* @param int $post_id The post ID to check.
* @return bool True if the post is a virtual page, false otherwise.
*/