-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
wp-graphql-rank-math.php
209 lines (181 loc) · 5.29 KB
/
wp-graphql-rank-math.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
<?php
/**
* Plugin Name: WPGraphQL for Rank Math SEO
* Plugin URI: https://github.com/AxeWP/wp-graphql-rank-math
* GitHub Plugin URI: https://github.com/AxeWP/wp-graphql-rank-math
* Description: Adds RankMath support to WPGraphQL
* Author: AxePress
* Author URI: https://github.com/AxeWP
* Update URI: https://github.com/AxeWP/wp-graphql-rank-math
* Version: 0.3.2
* Text Domain: wp-graphql-rank-math
* Domain Path: /languages
* Requires at least: 6.0
* Tested up to: 6.6.1
* Requires PHP: 7.4
* Requires Plugins: wp-graphql, seo-by-rank-math
* WPGraphQL requires at least: 1.26.0
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*
* @package WPGraphQL\RankMath
* @author axepress
* @license GPL-3
* @version 0.3.2
*/
declare( strict_types = 1 );
namespace WPGraphQL\RankMath;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// If the codeception remote coverage file exists, require it.
// This file should only exist locally or when CI bootstraps the environment for testing.
if ( file_exists( __DIR__ . '/c3.php' ) ) {
require_once __DIR__ . '/c3.php';
}
// Load the autoloader.
require_once __DIR__ . '/src/Autoloader.php';
if ( ! \WPGraphQL\RankMath\Autoloader::autoload() ) {
return;
}
/**
* Define plugin constants.
*/
function constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_SEO_VERSION' ) ) {
define( 'WPGRAPHQL_SEO_VERSION', '0.3.2' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_SEO_PLUGIN_DIR' ) ) {
define( 'WPGRAPHQL_SEO_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL.
if ( ! defined( 'WPGRAPHQL_SEO_PLUGIN_URL' ) ) {
define( 'WPGRAPHQL_SEO_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin Root File.
if ( ! defined( 'WPGRAPHQL_SEO_PLUGIN_FILE' ) ) {
define( 'WPGRAPHQL_SEO_PLUGIN_FILE', __FILE__ );
}
// Whether to autoload the files or not.
if ( ! defined( 'WPGRAPHQL_SEO_AUTOLOAD' ) ) {
define( 'WPGRAPHQL_SEO_AUTOLOAD', true );
}
}
// Run this function when the plugin is activated.
if ( file_exists( __DIR__ . '/activation.php' ) ) {
require_once __DIR__ . '/activation.php';
register_activation_hook(
__FILE__,
'WPGraphQL\RankMath\activation_callback'
);
}
// Run this function when the plugin is deactivated.
if ( file_exists( __DIR__ . '/deactivation.php' ) ) {
require_once __DIR__ . '/deactivation.php';
register_activation_hook( __FILE__, 'WPGraphQL\RankMath\deactivation_callback' );
}
/**
* Checks if all the the required plugins are installed and activated.
*
* @return array<string, string> List of dependencies that are not ready.
*/
function dependencies_not_ready(): array {
$wpgraphql_version = '1.26.0';
$rankmath_version = '1.0.201';
$deps = [];
// WPGraphQL Check.
if ( ! class_exists( '\WPGraphQL' ) || ( defined( 'WPGRAPHQL_VERSION' ) && version_compare( WPGRAPHQL_VERSION, $wpgraphql_version, '<' ) ) ) {
$deps['WPGraphQL'] = $wpgraphql_version;
}
if ( ! class_exists( '\RankMath' ) || ( defined( 'RANK_MATH_VERSION' ) && version_compare( RANK_MATH_VERSION, $rankmath_version, '<' ) ) ) {
$deps['RankMath SEO'] = $rankmath_version;
}
return $deps;
}
/**
* Checks if any known plugin conflicts are present.
*
* @return array<string, string> List of conflicting plugins.
*
* @since 0.0.12
*/
function plugin_conflicts(): array {
$conflicts = [];
if ( function_exists( 'wp_gql_seo_build_content_type_data' ) ) {
$conflicts['WPGraphQL Yoast SEO Addon'] = __( 'This plugin may appear as "Add WPGraphQL SEO" in the plugin list.', 'wp-graphql-rank-math' );
}
return $conflicts;
}
/**
* Initializes plugin.
*/
function init(): void {
constants();
$not_ready = dependencies_not_ready();
// Get the conflicting plugins.
$conflicts = plugin_conflicts();
if ( empty( $not_ready ) && empty( $conflicts ) && defined( 'WPGRAPHQL_SEO_PLUGIN_DIR' ) ) {
require_once WPGRAPHQL_SEO_PLUGIN_DIR . 'src/Main.php';
\WPGraphQL\RankMath\Main::instance();
return;
}
// Output an error notice for the dependencies that are not ready.
foreach ( $not_ready as $dep => $version ) {
add_action(
'admin_notices',
static function () use ( $dep, $version ) {
?>
<div class="error notice">
<p>
<?php
printf(
/* translators: dependency not ready error message */
esc_html__( '%1$s (v%2$s+) must be active for WPGraphQL for Rank Math to work.', 'wp-graphql-rank-math' ),
esc_attr( $dep ),
esc_attr( $version ),
);
?>
</p>
</div>
<?php
}
);
}
// Output an error notice for the conflicting plugins.
foreach ( $conflicts as $conflict => $note ) {
add_action(
'admin_notices',
static function () use ( $conflict, $note ) {
?>
<div class="error notice">
<p>
<?php
printf(
/* translators: dependency not ready error message */
esc_html__( '%1$s is not compatible with WPGraphQL for Rank Math SEO. Please deactivate it.', 'wp-graphql-rank-math' ),
esc_attr( $conflict ),
);
if ( ! empty( $note ) ) {
// translators: resolution message.
printf(
'<br /><em>%1$s</em> %2$s',
esc_html__( 'Note: ', 'wp-graphql-rank-math' ),
esc_html( $note ),
);
}
?>
</p>
</div>
<?php
}
);
}
}
// Initialize the plugin.
add_action(
'graphql_init',
'WPGraphQL\RankMath\init'
);