forked from pristas-peter/wp-graphql-gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
114 lines (93 loc) · 3.35 KB
/
plugin.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
<?php
/**
* Plugin Name: WP GraphQL Gutenberg
* Plugin URI: https://github.com/pristas-peter/wp-graphql-gutenberg
* Description: Enable blocks in WP GraphQL.
* Author: pristas-peter
* Author URI:
* Version: 0.3.11
* Requires at least: 5.4
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
namespace WPGraphQLGutenberg;
use WPGraphQLGutenberg\Blocks\Registry;
if (!defined('ABSPATH')) {
die('Silence is golden.');
}
if (!class_exists('WPGraphQLGutenberg')) {
final class WPGraphQLGutenberg {
private static $instance;
public static function instance() {
if (!isset(self::$instance)) {
self::$instance = new WPGraphQLGutenberg();
}
return self::$instance;
}
public $server;
private function setup_autoload() {
/**
* WP_GATSBY_AUTOLOAD can be set to "false" to prevent the autoloader from running.
* In most cases, this is not something that should be disabled, but some environments
* may bootstrap their dependencies in a global autoloader that will autoload files
* before we get to this point, and requiring the autoloader again can trigger fatal errors.
*
* The codeception tests are an example of an environment where adding the autoloader again causes issues
* so this is set to false for tests.
*/
if (defined('WP_GRAPHQL_GUTENBERG_AUTOLOAD') && true === WP_GRAPHQL_GUTENBERG_AUTOLOAD) {
// Autoload Required Classes.
include_once WP_GRAPHQL_GUTENBERG_PLUGIN_DIR . 'vendor/autoload.php';
}
}
private function setup_constants() {
// // Plugin version.
if (!defined('WP_GRAPHQL_GUTENBERG_VERSION')) {
define('WP_GRAPHQL_GUTENBERG_VERSION', '1.0.0');
}
// Plugin Folder Path.
if (!defined('WP_GRAPHQL_GUTENBERG_PLUGIN_DIR')) {
define('WP_GRAPHQL_GUTENBERG_PLUGIN_DIR', plugin_dir_path(__FILE__));
}
// Plugin Folder URL.
if (!defined('WP_GRAPHQL_GUTENBERG_PLUGIN_URL')) {
define('WP_GRAPHQL_GUTENBERG_PLUGIN_URL', plugin_dir_url(__FILE__));
}
// Plugin Root File.
if (!defined('WP_GRAPHQL_GUTENBERG_PLUGIN_FILE')) {
define('WP_GRAPHQL_GUTENBERG_PLUGIN_FILE', __FILE__);
}
// Whether to autoload the files or not.
if (!defined('WP_GRAPHQL_GUTENBERG_AUTOLOAD')) {
define('WP_GRAPHQL_GUTENBERG_AUTOLOAD', true);
}
// Whether to run the plugin in debug mode. Default is false.
if (!defined('WP_GRAPHQL_GUTENBERG_DEBUG')) {
define('WP_GRAPHQL_GUTENBERG_DEBUG', false);
}
}
public function init() {
$this->setup_constants();
$this->setup_autoload();
new \WPGraphQLGutenberg\PostTypes\ReusableBlock();
new \WPGraphQLGutenberg\PostTypes\BlockEditorPreview();
new \WPGraphQLGutenberg\Admin\Editor();
new \WPGraphQLGutenberg\Admin\Settings();
new \WPGraphQLGutenberg\Rest\Rest();
add_action('init_graphql_request', function () {
new \WPGraphQLGutenberg\Schema\Schema();
$this->server = new \WPGraphQLGutenberg\Server\Server();
});
add_filter('graphql_request_data', function ($request_data) {
if ($this->server->enabled() && $this->server->gutenberg_fields_in_query($request_data['query'])) {
Registry::update_registry(Registry::normalize($this->server->get_block_types()));
}
return $request_data;
});
register_deactivation_hook(__FILE__, function () {
\WPGraphQLGutenberg\Server\Server::cleanup();
});
}
}
}
WPGraphQLGutenberg::instance()->init();