forked from hsimah-services/wp-graphql-facetwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-graphql-facetwp.php
144 lines (122 loc) · 3.57 KB
/
wp-graphql-facetwp.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
<?php
/**
* Plugin Name: WPGraphQL for FacetWP
* Plugin URI: https://github.com/hsimah-services/wp-graphql-facetwp
* Description: Adds FacetWP support to WPGraphQL
* Author: hsimah, justlevine
* Author URI: http://www.hsimah.com
* Version: 0.5.0
* Text Domain: wpgraphql-facetwp
* Requires at least: 5.4.1
* Requires PHP: 7.4
* Requires Plugins: wp-graphql
* WPGraphQL requires at least: 1.6.0
* FacetWP requires at least: 4.0
* Tested up to: 6.5
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*
* @package WPGraphQL\FacetWP
* @author hsimah
* @license GPL-3
* @version 0.5.0
*/
namespace WPGraphQL\FacetWP;
// 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\FacetWP\Autoloader::autoload() ) {
return;
}
/**
* Define plugin constants.
*/
function constants(): void {
// Plugin version.
if ( ! defined( 'WPGRAPHQL_FACETWP_VERSION' ) ) {
define( 'WPGRAPHQL_FACETWP_VERSION', '0.5.0' );
}
// Plugin Folder Path.
if ( ! defined( 'WPGRAPHQL_FACETWP_PLUGIN_DIR' ) ) {
define( 'WPGRAPHQL_FACETWP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL.
if ( ! defined( 'WPGRAPHQL_FACETWP_PLUGIN_URL' ) ) {
define( 'WPGRAPHQL_FACETWP_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin Root File.
if ( ! defined( 'WPGRAPHQL_FACETWP_PLUGIN_FILE' ) ) {
define( 'WPGRAPHQL_FACETWP_PLUGIN_FILE', __FILE__ );
}
// Whether to autoload the files or not.
if ( ! defined( 'WPGRAPHQL_FACETWP_AUTOLOAD' ) ) {
define( 'WPGRAPHQL_FACETWP_AUTOLOAD', true );
}
}
/**
* Checks if all the the required plugins are installed and activated.
*
* @return array<string,string> The list of missing dependencies.
*/
function dependencies_not_ready(): array {
$wpgraphql_version = '1.6.0';
$facetwp_version = '4.0';
$deps = [];
if ( ! class_exists( 'WPGraphQL' ) || ( defined( 'WPGRAPHQL_VERSION' ) && version_compare( WPGRAPHQL_VERSION, $wpgraphql_version, '<' ) ) ) {
$deps['WPGraphQL'] = $wpgraphql_version;
}
if ( ! class_exists( 'FacetWP' ) || ( defined( 'FACETWP_VERSION' ) && version_compare( FACETWP_VERSION, $facetwp_version, '<' ) ) ) {
$deps['FacetWP'] = $facetwp_version;
}
return $deps;
}
/**
* Initializes the plugin.
*/
function init(): void {
constants();
$not_ready = dependencies_not_ready();
if ( empty( $not_ready ) && defined( 'WPGRAPHQL_FACETWP_PLUGIN_DIR' ) ) {
require_once WPGRAPHQL_FACETWP_PLUGIN_DIR . 'src/Main.php';
\WPGraphQL\FacetWP\Main::instance();
return;
}
/**
* For users with lower capabilities, don't show the notice.
*
* @todo Are we sure we don't what to tell all users with backend access that the plugin isnt working?
*/
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
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 Plugin Name to work.', 'wpgraphql-facetwp' ),
esc_attr( $dep ),
esc_attr( $version )
);
?>
</p>
</div>
<?php
}
);
}
}
add_action( 'facetwp_init', 'WPGraphQL\FacetWP\init' );