forked from wp-seopress/wp-seopress-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seopress-functions.php
743 lines (653 loc) · 18.9 KB
/
seopress-functions.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
<?php
if ( ! defined('ABSPATH')) {
exit;
}
use SEOPress\Core\Kernel;
/**
* Get a service.
*
* @since 4.3.0
*
* @param string $service
*
* @return object
*/
function seopress_get_service($service) {
return Kernel::getContainer()->getServiceByName($service);
}
/*
* Get first key of an array if PHP < 7.3
* @since 4.2.1
* @return string
* @author Benjamin
*/
if ( ! function_exists('array_key_first')) {
function array_key_first(array $arr) {
foreach ($arr as $key => $unused) {
return $key;
}
return null;
}
}
/*
* Get last key of an array if PHP < 7.3
* @since 4.2.1
* @return string
* @author Benjamin
*/
if ( ! function_exists('array_key_last')) {
function array_key_last(array $arr) {
end($arr);
$key = key($arr);
return $key;
}
}
/**
* Get all registered post types.
*
* @author Benjamin Denis
*
* @deprecated 4.4.0
*
* @return (array) $wp_post_types
*/
function seopress_get_post_types() {
if ( ! function_exists('seopress_get_service')) {
global $wp_post_types;
$args = [
'show_ui' => true,
'public' => true,
];
$output = 'objects'; // names or objects, note names is the default
$operator = 'and'; // 'and' or 'or'
$post_types = get_post_types($args, $output, $operator);
unset(
$post_types['attachment'],
$post_types['seopress_rankings'],
$post_types['seopress_backlinks'],
$post_types['seopress_404'],
$post_types['elementor_library'],
$post_types['customer_discount'],
$post_types['cuar_private_file'],
$post_types['cuar_private_page'],
$post_types['ct_template']
);
$post_types = apply_filters('seopress_post_types', $post_types);
return $post_types;
}
return seopress_get_service('WordPressData')->getPostTypes();
}
/**
* Get all registered custom taxonomies.
*
* @author Benjamin Denis
*
* @param bool $with_terms
*
* @return array $taxonomies
**/
function seopress_get_taxonomies($with_terms = false) {
$args = [
'show_ui' => true,
'public' => true,
];
$args = apply_filters('seopress_get_taxonomies_args', $args);
$output = 'objects'; // or objects
$operator = 'and'; // 'and' or 'or'
$taxonomies = get_taxonomies($args, $output, $operator);
unset(
$taxonomies['seopress_bl_competitors']
);
$taxonomies = apply_filters('seopress_get_taxonomies_list', $taxonomies);
if ( ! $with_terms) {
return $taxonomies;
}
foreach ($taxonomies as $_tax_slug => &$_tax) {
$_tax->terms = get_terms(['taxonomy' => $_tax_slug]);
}
return $taxonomies;
}
/**
* Get all custom fields (limit: 250).
*
* @author Benjamin Denis
*
* @return array custom field keys
*/
function seopress_get_custom_fields() {
$cf_keys = wp_cache_get('seopress_get_custom_fields');
if (false === $cf_keys) {
global $wpdb;
$limit = (int) apply_filters('postmeta_form_limit', 250);
$cf_keys = $wpdb->get_col($wpdb->prepare("
SELECT DISTINCT meta_key
FROM $wpdb->postmeta
GROUP BY meta_key
HAVING meta_key NOT LIKE '\_%%'
ORDER BY meta_key
LIMIT %d", $limit));
if (is_plugin_active('types/wpcf.php')) {
$wpcf_fields = get_option('wpcf-fields');
if ( ! empty($wpcf_fields)) {
foreach ($wpcf_fields as $key => $value) {
$cf_keys[] = $value['meta_key'];
}
}
}
$cf_keys = apply_filters('seopress_get_custom_fields', $cf_keys);
if ($cf_keys) {
natcasesort($cf_keys);
}
wp_cache_set('seopress_get_custom_fields', $cf_keys);
}
return $cf_keys;
}
/**
* Check SSL for schema.org.
*
* @author Benjamin Denis
*
* @return string correct protocol
*/
function seopress_check_ssl() {
if (is_ssl()) {
return 'https://';
} else {
return 'http://';
}
}
/**
* Get IP address.
*
* @author Benjamin Denis
*
* @return (string) $ip
**/
function seopress_get_ip_address() {
foreach (['HTTP_CLIENT_IP', 'HTTP_CF_CONNECTING_IP', 'HTTP_VIA', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR'] as $key) {
if (true === array_key_exists($key, $_SERVER)) {
foreach (explode(',', $_SERVER[$key]) as $ip) {
$ip = trim($ip); // just to be safe
return apply_filters('seopress_404_ip', $ip ? $ip : '');
}
}
}
}
/**
* Disable Query Monitor for CA.
*
* @return array
*
* @author Benjamin
*
* @param mixed $url
* @param mixed $allcaps
* @param mixed $caps
* @param mixed $args
*/
function seopress_disable_qm($allcaps, $caps, $args) {
$allcaps['view_query_monitor'] = false;
return $allcaps;
}
/**
* Clear content for CA.
*
* @author Benjamin
*/
function seopress_clean_content_analysis() {
if (current_user_can('edit_posts')) {
if (isset($_GET['no_admin_bar']) && '1' === $_GET['no_admin_bar']) {
//Remove admin bar
add_filter('show_admin_bar', '__return_false');
//Disable Query Monitor
add_filter('user_has_cap', 'seopress_disable_qm', 10, 3);
//Disable wptexturize
add_filter('run_wptexturize', '__return_false');
//Oxygen compatibility
if (function_exists('ct_template_output')) { //disable for Oxygen
add_action('template_redirect', 'seopress_get_oxygen_content');
}
}
}
}
add_action('plugins_loaded', 'seopress_clean_content_analysis');
/**
* Test if a URL is in absolute.
*
* @return bool true if absolute
*
* @author Benjamin
*
* @param mixed $url
*/
function seopress_is_absolute($url) {
$pattern = "%^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@|\d{1,3}(?:\.\d{1,3}){3}|(?:(?:[a-z\d\x{00a1}-\x{ffff}]+-?)*[a-z\d\x{00a1}-\x{ffff}]+)(?:\.(?:[a-z\d\x{00a1}-\x{ffff}]+-?)*[a-z\d\x{00a1}-\x{ffff}]+)*(?:\.[a-z\x{00a1}-\x{ffff}]{2,6}))(?::\d+)?(?:[^\s]*)?$%iu";
return (bool) preg_match($pattern, $url);
}
/**
* Manage localized links.
*
* @return string locale for documentation links
*
* @author Benjamin
*/
function seopress_get_locale() {
switch (get_user_locale(get_current_user_id())) {
case 'fr_FR':
case 'fr_BE':
case 'fr_CA':
case 'fr_LU':
case 'fr_MC':
case 'fr_CH':
$locale_link = 'fr';
break;
default:
$locale_link = '';
break;
}
return $locale_link;
}
/**
* Check empty global title template.
*
* @since 5.0
*
* @param string $type
* @param string $metadata
* @param bool $notice
*
* @return string notice with list of empty cpt titles
*
* @author Benjamin
*/
function seopress_get_empty_templates($type, $metadata, $notice = true) {
$cpt_titles_empty = [];
$templates = '';
$data = '';
$html = '';
$list = '';
if ('cpt' === $type) {
$templates = seopress_get_post_types();
$notice_i18n = __('Custom Post Types', 'wp-seopress');
}
if ('tax' === $type) {
$templates = seopress_get_taxonomies();
$notice_i18n = __('Custom Taxonomies', 'wp-seopress');
}
foreach ($templates as $key => $value) {
$options = get_option('seopress_titles_option_name');
if (!empty($options)) {
if ('cpt' === $type) {
if (!array_key_exists($key, $options['seopress_titles_single_titles'])) {
$cpt_titles_empty[] = $key;
} else {
$data = $options['seopress_titles_single_titles'][$key][$metadata];
}
}
if ('tax' === $type) {
if (!array_key_exists($key, $options['seopress_titles_tax_titles'])) {
$cpt_titles_empty[] = $key;
} else {
$data = $options['seopress_titles_tax_titles'][$key][$metadata];
}
}
}
if (empty($data)) {
$cpt_titles_empty[] = $key;
}
}
if ( ! empty($cpt_titles_empty)) {
$list .= '<ul>';
foreach ($cpt_titles_empty as $cpt) {
$list .= '<li>' . $cpt . '</li>';
}
$list .= '</ul>';
if (false === $notice) {
return $list;
} else {
$html .= '<div class="seopress-notice is-warning">
<p>';
/* translators: %s: "Custom Post Types" or "Custom Taxonomies" %s: "title" or "description" */
$html .= sprintf(__('Some <strong>%s</strong> have no <strong>meta %s</strong> set! We strongly encourage you to add one by filling in the fields below.', 'wp-seopress'), $notice_i18n, $metadata);
$html .= '</p>';
$html .= $list;
$html .= '</div>';
return $html;
}
}
}
/**
* Generate Tooltip.
*
* @since 3.8.2
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_desc
* @param mixed $tooltip_code
*
* @return string tooltip title, tooltip description, tooltip url
*
* @author Benjamin
*/
function seopress_tooltip($tooltip_title, $tooltip_desc, $tooltip_code) {
$html =
'<button type="button" class="sp-tooltip"><span class="dashicons dashicons-editor-help"></span>
<span class="sp-tooltiptext" role="tooltip" tabindex="0">
<span class="sp-tooltip-headings">' . $tooltip_title . '</span>
<span class="sp-tooltip-desc">' . $tooltip_desc . '</span>
<span class="sp-tooltip-code">' . $tooltip_code . '</span>
</span></button>';
return $html;
}
/**
* Generate Tooltip (alternative version).
*
* @since 3.8.6
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_anchor
* @param mixed $tooltip_desc
*
* @return string tooltip title, tooltip description, tooltip url
*
* @author Benjamin
*/
function seopress_tooltip_alt($tooltip_anchor, $tooltip_desc) {
$html =
'<button type="button" class="sp-tooltip alt">' . $tooltip_anchor . '
<span class="sp-tooltiptext" role="tooltip" tabindex="0">
<span class="sp-tooltip-desc">' . $tooltip_desc . '</span>
</span>
</button>';
return $html;
}
/**
* Generate Tooltip link.
*
* @since 5.0
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_anchor
* @param mixed $tooltip_desc
*
* @return string tooltip title, tooltip description, tooltip url
*
* @author Benjamin
*/
function seopress_tooltip_link($tooltip_anchor, $tooltip_desc) {
$html = '<a href="' . $tooltip_anchor . '"
target="_blank" class="seopress-doc">
<span class="dashicons dashicons-editor-help"></span>
<span class="screen-reader-text">
' . $tooltip_desc . '
</span>
</a>';
return $html;
}
/**
* Remove BOM.
*
* @since 3.8.2
*
* @param mixed $text
*
* @return mixed $text
*
* @author Benjamin
*/
function seopress_remove_utf8_bom($text) {
$bom = pack('H*', 'EFBBBF');
$text = preg_replace("/^$bom/", '', $text);
return $text;
}
/**
* Generate notification (Notifications Center).
*
* @since 3.8.2
*
* @param array $args
*
* @return string HTML notification
*
* @author Benjamin
*/
function seopress_notification($args) {
if ( ! empty($args)) {
$id = isset($args['id']) ? $args['id'] : null;
$title = isset($args['title']) ? $args['title'] : null;
$desc = isset($args['desc']) ? $args['desc'] : null;
$impact = isset($args['impact']) ? $args['impact'] : [];
$link = isset($args['link']) ? $args['link'] : null;
$deleteable = isset($args['deleteable']) ? $args['deleteable'] : null;
$icon = isset($args['icon']) ? $args['icon'] : null;
$wrap = isset($args['wrap']) ? $args['wrap'] : null;
$class = '';
if ( ! empty($impact)) {
$class .= ' impact';
$class .= ' ' . key($impact);
}
if (true === $deleteable) {
$class .= ' deleteable';
}
$html = '<div id="' . $id . '-alert" class="seopress-alert seopress-card">';
if ( ! empty($impact)) {
$html .= '<span class="screen-reader-text">' . reset($impact) . '</span>';
}
if ( ! empty($icon)) {
$html .= '<span class="dashicons ' . $icon . '"></span>';
} else {
$html .= '<span class="dashicons dashicons-info"></span>';
}
$html .= '<h3>' . $title . '</h3>';
if (false === $wrap) {
$html .= $desc;
} else {
$html .= '<p>' . $desc . '</p>';
}
$href = '';
if (function_exists('seopress_get_locale') && 'fr' == seopress_get_locale() && isset($link['fr'])) {
$href = ' href="' . $link['fr'] . '"';
} elseif (isset($link['en'])) {
$href = ' href="' . $link['en'] . '"';
}
$target = '';
if (isset($link['external']) && true === $link['external']) {
$target = ' target="_blank"';
}
if ( ! empty($link) || true === $deleteable) {
$html .= '<p class="seopress-card-actions">';
if ( ! empty($link)) {
$html .= '<a class="btn btnSecondary"' . $href . $target . '>' . $link['title'] . '</a>';
}
if (true === $deleteable) {
$html .= '<button id="' . $id . '" name="notice-title-tag" type="button" class="btn btnTertiary" data-notice="' . $id . '">' . __('Dismiss', 'wp-seopress') . '</button>';
}
$html .= '</p>';
}
$html .= '</div>';
echo $html;
}
}
/**
* Filter the capability to allow other roles to use the plugin.
*
* @since 3.8.2
*
* @author Julio Potier
*
* @return string
*
* @param mixed $cap
* @param mixed $context
*/
function seopress_capability($cap, $context = '') {
$newcap = apply_filters('seopress_capability', $cap, $context);
if ( ! current_user_can($newcap)) {
return $cap;
}
return $newcap;
}
/**
* Check if the page is one of ours.
*
* @since 3.8.2
*
* @author Julio Potier
*
* @return bool
*/
function is_seopress_page() {
if ( ! is_admin() && ( ! isset($_REQUEST['page']) || ! isset($_REQUEST['post_type']))) {
return false;
}
if (isset($_REQUEST['page'])) {
return 0 === strpos($_REQUEST['page'], 'seopress');
} elseif (isset($_REQUEST['post_type'])) {
return 0 === strpos($_REQUEST['post_type'], 'seopress');
}
}
/**
* Only add our notices on our pages.
*
* @since 3.8.2
*
* @author Julio Potier
*
* @return bool
*/
function seopress_remove_other_notices() {
if (is_seopress_page()) {
add_filter('admin_footer_text', '__return_false');
remove_all_actions('network_admin_notices');
remove_all_actions('admin_notices');
remove_all_actions('user_admin_notices');
remove_all_actions('all_admin_notices');
add_action('admin_notices', 'seopress_admin_notices');
if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) {
add_action('admin_notices', 'seopress_insights_notice');
}
}
}
add_action('in_admin_header', 'seopress_remove_other_notices');
/**
* We replace the WP action by ours.
*
* @since 3.8.2
*
* @author Julio Potier
*
* @return bool
*/
function seopress_admin_notices() {
do_action('seopress_admin_notices');
}
/**
* Return the 7 days in correct order.
*
* @since 3.8.2
*
* @author Julio Potier
*
* @return bool
*/
function seopress_get_days() {
$start_of_week = (int) get_option('start_of_week');
return array_map(
function () use ($start_of_week) {
static $start_of_week;
return ucfirst(date_i18n('l', strtotime($start_of_week++ - date('w', 0) . ' day', 0)));
},
array_combine(
array_merge(
array_slice(range(0, 6), $start_of_week, 7),
array_slice(range(0, 6), 0, $start_of_week)
),
range(0, 6)
)
);
}
/**
* Check if a key exists in a multidimensional array.
*
* @since 3.8.2
*
* @author Benjamin Denis
*
* @return bool
*
* @param mixed $key
*/
function seopress_if_key_exists(array $arr, $key) {
// is in base array?
if (array_key_exists($key, $arr)) {
return true;
}
// check arrays contained in this array
foreach ($arr as $element) {
if (is_array($element)) {
if (seopress_if_key_exists($element, $key)) {
return true;
}
}
}
return false;
}
/**
* Get Oxygen Content.
*
* @since 3.8.5
*
* @author Benjamin Denis
*
* @return null
*/
function seopress_get_oxygen_content() {
if (is_plugin_active('oxygen/functions.php') && function_exists('ct_template_output')) {
$seopress_get_the_content = ct_template_output();
if ( ! $seopress_get_the_content) {
//Get post content
$seopress_get_the_content = apply_filters('the_content', get_post_field('post_content', get_the_ID()));
}
$seopress_get_the_content = normalize_whitespace(wp_strip_all_tags($seopress_get_the_content));
if ($seopress_get_the_content) {
//Get Target Keywords
if (get_post_meta(get_the_ID(), '_seopress_analysis_target_kw', true)) {
$seopress_analysis_target_kw = array_filter(explode(',', strtolower(esc_attr(get_post_meta(get_the_ID(), '_seopress_analysis_target_kw', true)))));
//Keywords density
foreach ($seopress_analysis_target_kw as $kw) {
if (preg_match_all('#\b(' . $kw . ')\b#iu', $seopress_get_the_content, $m)) {
$data['kws_density']['matches'][$kw][] = $m[0];
}
}
}
//Words Counter
$data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", $seopress_get_the_content, $matches);
if ( ! empty($matches[0])) {
$words_counter_unique = count(array_unique($matches[0]));
} else {
$words_counter_unique = '0';
}
$data['words_counter_unique'] = $words_counter_unique;
//Update analysis
update_post_meta(get_the_ID(), '_seopress_analysis_data_oxygen', $data);
}
}
}
/**
* Output submit button.
*
* @since 5.0
*
* @author Benjamin Denis
*
* @param mixed $value
* @param mixed $classes
* @param mixed $type
*/
function sp_submit_button($value ='', $classes = 'btn btnPrimary', $type = 'submit') {
if ('' === $value) {
$value = __('Save changes', 'wp-seopress');
}
$html = '<p class="submit"><input id="submit" name="submit" type="' . $type . '" class="' . $classes . '" value="' . $value . '"/></p>';
echo $html;
}