-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxynity-blocks.php
414 lines (375 loc) · 11.4 KB
/
xynity-blocks.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
<?php
/*
* Plugin Name: Xynity Blocks
* Plugin URI: https://github.com/abkarim/xynity-blocks
* Description: Extends wordpress blocks functionality to make better experience with Full Site Editing
* Version: 0.2.7
* Requires at least: 6.0
* Requires PHP: 8.0
* Author: Karim
* Author URI: https://github.com/abkarim
* License: GPL-3.0 license
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
* Update URI:
* Text Domain: xynity-blocks
* Domain Path: /languages
*/
/**
* !Prevent direct access
*/
use Xynity_Blocks\ThemeJSON;
if (!defined("ABSPATH")) {
exit();
}
if (!class_exists("Xynity_Blocks")) {
class Xynity_Blocks
{
/**
* Constructor
*/
public function __construct()
{
$this->define_constants();
/**
* @since 0.2.7
*/
$this->define_constant_if_plugin_updated();
// Load plugin file
require_once XYNITY_BLOCKS_DIR . "includes/plugin.php";
require_once XYNITY_BLOCKS_DIR . "includes/Blocks.php";
require_once XYNITY_BLOCKS_DIR .
"includes/classes/ThemeJSON.php";
/**
* Register plugin activation hook
*/
register_activation_hook(XYNITY_BLOCKS_FILE, [
$this,
"handle_activation",
]);
/**
* Register plugin deactivation hook
*
* @since 0.2.1
*/
register_deactivation_hook(XYNITY_BLOCKS_FILE, [
$this,
"handle_deactivation",
]);
/**
* Check compatibility and
* manage options
* when changing theme
*
* @since 0.2.0
*/
add_action("switch_theme", [$this, "handle_theme_change"]);
/**
* It should be fire on theme update
*
* @since 0.2.0
*/
add_action("after_switch_theme", [$this, "handle_theme_change"]);
/**
* Handle update
*/
add_action('admin_init', [$this, 'handle_update']);
/**
* Load plugin
*/
add_action("plugins_loaded", [$this, "init"]);
/**
* Initialize plugin
* @since 0.2.6
*/
add_action('init', [$this, "initialize"]);
}
/**
* Define constant
* required in plugin
*
* @access private
* @since 0.1.4
* @return void
*/
private function define_constants(): void
{
/**
* require "get_plugin_data" function if not exists already
*/
if (!function_exists("get_plugin_data")) {
require_once ABSPATH . "wp-admin/includes/plugin.php";
}
/**
* Get plugin data from header
* @var array
*/
$plugin_data = get_plugin_data(__FILE__);
/**
* Required php version for this plugin
* @var string
*/
define("XYNITY_BLOCKS_REQUIRED_PHP", $plugin_data["RequiresPHP"]);
/**
* Required wp version for this plugin
* @var string
*/
define("XYNITY_BLOCKS_REQUIRED_WP", $plugin_data["RequiresWP"]);
/**
* Current version
* @var string
*/
define("XYNITY_BLOCKS_VERSION", $plugin_data["Version"]);
/**
* Plugin textdomain
* @var string
*/
define("XYNITY_BLOCKS_TEXT_DOMAIN", $plugin_data["TextDomain"]);
/**
* Plugin name
* @var string
*/
define("XYNITY_BLOCKS_NAME", $plugin_data["Name"]);
/**
* Plugin's path from root
* @var string
*/
define(
"XYNITY_BLOCKS_PATH",
trailingslashit(plugin_dir_path(__FILE__))
);
/**
* Plugin's url from root
* @var string
*/
define(
"XYNITY_BLOCKS_URL",
trailingslashit(plugin_dir_url(__FILE__))
);
/**
* Plugin basename from root
* @var string
*/
define("XYNITY_BLOCKS_BASENAME", plugin_basename(__FILE__));
/**
* Plugin file from root
* @var string
*/
define("XYNITY_BLOCKS_FILE", __FILE__);
/**
* Plugin directory from root
* @var string
*/
define("XYNITY_BLOCKS_DIR", trailingslashit(__DIR__));
/**
* Plugin nonce
* @var string
*/
define(
"XYNITY_BLOCKS_NONCE",
"2abd9731S07S1b7e9f1DSD2f4E5912e523bc4c80255e3e"
);
/**
* Plugin version option name
* @var string
* @since 0.2.7
*/
define("XYNITY_BLOCKS_PLUGIN_VERSION_OPTION_NAME", XYNITY_BLOCKS_TEXT_DOMAIN . "_plugin_version");
}
/**
* Detect if plugin is updated
* and define updated constant
*
* XYNITY_BLOCKS_PLUGIN_UPDATED
*
* @since 0.2.7
* @access private
* @return void
*/
private function define_constant_if_plugin_updated(): void
{
// Get plugin version from DB
$plugin_version_on_db = get_option(XYNITY_BLOCKS_PLUGIN_VERSION_OPTION_NAME, null);
// Add plugin version if not found
if ($plugin_version_on_db === null) {
update_option(XYNITY_BLOCKS_PLUGIN_VERSION_OPTION_NAME, XYNITY_BLOCKS_VERSION);
// No version check required
return;
}
// Return if not updated
if ($plugin_version_on_db === XYNITY_BLOCKS_VERSION) return;
// Update plugin version on db to latest version
update_option(XYNITY_BLOCKS_PLUGIN_VERSION_OPTION_NAME, XYNITY_BLOCKS_VERSION);
define("XYNITY_BLOCKS_PLUGIN_UPDATED", true);
}
/**
* Initialize plugin
*
* Called by plugins_loaded hook
*
* @access public
* @since 0.1.4
* @return void
*/
public function init(): void
{
// Run the plugin
\Xynity_Blocks\Plugin::instance();
}
/**
* Init
*
* called by init hook
*
* @access public
* @since 0.2.6
* @return void
*/
public function initialize(): void
{
// Initiate blocks
new \Xynity_Blocks\Blocks();
}
/**
* Handle update
*
* @access public
* @since 0.2.5
* @return void
*/
public function handle_update(): void
{
/**
* Is config required
*/
if (!ThemeJSON::is_backup_content_theme_version_and_current_theme_version_same()) {
$this->handle_activation();
}
}
/**
* Is compatible
*
* @since 0.2.0
* @access private
* @return void
*/
private function is_compatible(): void
{
/**
* Check php version
*/
if (
!version_compare(phpversion(), XYNITY_BLOCKS_REQUIRED_PHP, ">=")
) {
throw new Exception(
"Minium php version required " .
XYNITY_BLOCKS_REQUIRED_PHP .
", you have " .
phpversion()
);
}
global $wp_version;
/**
* Check wp version
*/
if (
!version_compare($wp_version, XYNITY_BLOCKS_REQUIRED_WP, ">=")
) {
throw new Exception(
"Minium WordPress version required " .
XYNITY_BLOCKS_REQUIRED_WP .
", you have $wp_version"
);
}
/**
* This plugin is made for block theme
* check if current theme is block based or not
*/
if (!wp_is_block_theme()) {
throw new Exception("Please use a block theme");
}
}
/**
* Activation configure
* Performs necessary operation to configure files on activation
*
* Called by activation hook
*
* @since 0.1.4
* @access public
*/
public function handle_activation()
{
try {
$this->is_compatible();
/**
* Manage theme.json content
*
* @since 0.2.0
*/
\Xynity_Blocks\ThemeJSON::replace_theme_json_file_in_theme();
/**
* Manage database configuration
*
* @since 0.1.4
*/
require_once XYNITY_BLOCKS_DIR . "includes/classes/DB.php";
\Xynity_Blocks\DB::update_tables_if_necessary();
} catch (Exception $e) {
if (isset($_GET["activate"])) {
unset($_GET["activate"]);
}
// Deactivate the plugin
deactivate_plugins(plugin_basename(__FILE__));
// Display an error message
wp_die($e->getMessage());
}
}
/**
* Handle deactivation
* Performs necessary operation on plugin deactivation
*
* @return void
* @access public
* @since 0.2.1
*/
public function handle_deactivation(): void
{
/**
* Manage theme.json content
* remove xynity's theme.json
* and rename default.theme.json to theme.json
*/
require_once XYNITY_BLOCKS_DIR . "includes/classes/ThemeJSON.php";
\Xynity_Blocks\ThemeJSON::migrate_to_default_theme_json();
}
/**
* Handle theme switch
*
* Called by switch_theme hook
*
* @param string new_theme
* @return void
* @access public
* @since 0.2.0
*/
public function handle_theme_change(string $new_theme): void
{
try {
$this->is_compatible();
/**
* Manage theme.json content
*
* @since 0.2.0
*/
require_once XYNITY_BLOCKS_DIR .
"includes/classes/ThemeJSON.php";
\Xynity_Blocks\ThemeJSON::replace_theme_json_file_in_theme();
} catch (Exception $e) {
\Xynity_Blocks\Plugin::show_admin_error_message(
$e->getMessage()
);
}
}
}
new Xynity_Blocks();
}