-
Notifications
You must be signed in to change notification settings - Fork 9
/
on-demand-revalidation.php
232 lines (196 loc) · 5.72 KB
/
on-demand-revalidation.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
<?php
/**
* On-Demand Revalidation
*
* Plugin Name: On-Demand Revalidation
* Plugin URI: https://wordpress.org/plugins/on-demand-revalidation
* GitHub Plugin URI: https://github.com/dexerto/on-demand-revalidation
* Description: Next.js On-Demand Revalidation on the post update, revalidate specific paths, tags on the post update.
* Version: 1.2.4
* Author: Dexerto
* Author URI: https://dexerto.com
* Text Domain: on-demand-revalidation
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
*
* @package OnDemandRevalidation
*/
use OnDemandRevalidation\Admin\Settings;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'OnDemandRevalidation' ) ) :
/**
* This is the one true OnDemandRevalidation class
*/
final class OnDemandRevalidation {
/**
* Stores the instance of the OnDemandRevalidation class
*
* @since 0.0.1
*
* @var OnDemandRevalidation The one true OnDemandRevalidation
*/
private static $instance;
/**
* The instance of the OnDemandRevalidation object
*
* @since 0.0.1
*
* @return OnDemandRevalidation The one true OnDemandRevalidation
*/
public static function instance(): self {
if ( ! isset( self::$instance ) && ! ( is_a( self::$instance, __CLASS__ ) ) ) {
self::$instance = new self();
self::$instance->setup_constants();
if ( self::$instance->includes() ) {
self::$instance->settings();
self::$instance->revalidation();
self::$instance->plugin_links();
\OnDemandRevalidation\Helpers::prevent_wrong_api_url();
}
}
/**
* Fire off init action.
*
* @param OnDemandRevalidation $instance The instance of the OnDemandRevalidation class
*/
do_action( 'on_demand_revalidation_init', self::$instance );
// Return the OnDemandRevalidation Instance.
return self::$instance;
}
/**
* Throw error on object clone.
* The whole idea of the singleton design pattern is that there is a single object
* therefore, we don't want the object to be cloned.
*
* @since 0.0.1
*/
public function __clone() {
// Cloning instances of the class is forbidden.
_doing_it_wrong(
__FUNCTION__,
esc_html__(
'The OnDemandRevalidation class should not be cloned.',
'on-demand-revalidation'
),
'0.0.1'
);
}
/**
* Disable unserializing of the class.
*
* @since 0.0.1
*/
public function __wakeup() {
// De-serializing instances of the class is forbidden.
_doing_it_wrong(
__FUNCTION__,
esc_html__(
'De-serializing instances of the OnDemandRevalidation class is not allowed.',
'on-demand-revalidation'
),
'0.0.1'
);
}
/**
* Setup plugin constants.
*
* @since 0.0.1
*/
private function setup_constants(): void {
if ( ! function_exists( 'get_plugin_data' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
// Plugin version.
if ( ! defined( 'ON_DEMAND_REVALIDATION_VERSION' ) ) {
define( 'ON_DEMAND_REVALIDATION_VERSION', get_plugin_data( __FILE__ )['Version'] );
}
// Plugin Folder Path.
if ( ! defined( 'ON_DEMAND_REVALIDATION_PLUGIN_DIR' ) ) {
define( 'ON_DEMAND_REVALIDATION_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
}
// Plugin Folder URL.
if ( ! defined( 'ON_DEMAND_REVALIDATION_PLUGIN_URL' ) ) {
define( 'ON_DEMAND_REVALIDATION_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
}
// Plugin Root File.
if ( ! defined( 'ON_DEMAND_REVALIDATION_PLUGIN_FILE' ) ) {
define( 'ON_DEMAND_REVALIDATION_PLUGIN_FILE', __FILE__ );
}
// Whether to autoload the files or not.
if ( ! defined( 'ON_DEMAND_REVALIDATION_AUTOLOAD' ) ) {
define( 'ON_DEMAND_REVALIDATION_AUTOLOAD', true );
}
}
/**
* Uses composer's autoload to include required files.
*
* @since 0.0.1
*
* @return bool
*/
private function includes(): bool {
// Autoload Required Classes.
if ( defined( 'ON_DEMAND_REVALIDATION_AUTOLOAD' ) && false !== ON_DEMAND_REVALIDATION_AUTOLOAD ) {
if ( file_exists( ON_DEMAND_REVALIDATION_PLUGIN_DIR . 'vendor/autoload.php' ) ) {
require_once ON_DEMAND_REVALIDATION_PLUGIN_DIR . 'vendor/autoload.php';
}
// Bail if installed incorrectly.
if ( ! class_exists( '\OnDemandRevalidation\Admin\Settings' ) ) {
add_action( 'admin_notices', array( $this, 'missing_notice' ) );
return false;
}
}
return true;
}
/**
* Composer dependencies missing notice.
*
* @since 0.0.1
*/
public function missing_notice(): void {
if ( ! current_user_can( 'manage_options' ) ) {
return;
} ?>
<div class="notice notice-error">
<p>
<?php esc_html_e( 'On-Demand Revalidation appears to have been installed without its dependencies. It will not work properly until dependencies are installed. This likely means you have cloned Next.js On-Demand Revalidation from Github and need to run the command `composer install`.', 'on-demand-revalidation' ); ?>
</p>
</div>
<?php
}
/**
* Set up settings.
*
* @since 0.0.1
*/
private function settings(): void {
$settings = new Settings();
$settings->init();
}
/**
* Set up Purge.
*
* @since 0.0.1
*/
private function revalidation(): void {
\OnDemandRevalidation\Revalidation::init();
}
/**
* Set up Action Links.
*
* @since 0.0.1
*/
private function plugin_links(): void {
// Setup Settings link.
add_filter(
'plugin_action_links_' . plugin_basename( __FILE__ ),
function ( $links ) {
$links[] = '<a href="/wp-admin/admin.php?page=on-demand-revalidation">Settings</a>';
return $links;
}
);
}
}
endif;
\OnDemandRevalidation::instance();