PluginProbe
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN / 1.1.4
xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN v1.1.4
1.3.3 1.3.2 1.3.1 1.3.0 1.2.4 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 All 29 releases
xspeed / includes / class-plugin.php

class-plugin.php in xSpeed Cache: AI-Powered Performance Hub with MCP, Caching & CDN 1.1.4, at includes/class-plugin.php

324 lines 13.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main plugin bootstrap.
4 *
5 * @package XSpeed
6 */
7
8 namespace XSpeed;
9
10 defined( 'ABSPATH' ) || exit;
11
12 class Plugin {
13
14 /**
15 * Data-schema version for one-time migrations, independent of the
16 * plugin version header. Bump when adding a step to maybe_upgrade().
17 */
18 public const DATA_VERSION = '1.1.4';
19
20 private static $instance = null;
21
22 /** @var Usage_Tracker|null */
23 private $usage_tracker = null;
24
25 public static function instance() {
26 if ( null === self::$instance ) {
27 self::$instance = new self();
28 }
29 return self::$instance;
30 }
31
32 public function init() {
33 // v1 services that are NOT yet wrapped as Modules (Admin, Rest_Api,
34 // Cache, Onboarding) are instantiated directly. Minifier is now
35 // instantiated by MinifyModule::boot(); Gzip is purely static.
36 new Admin();
37 new Rest_Api();
38 new Cache();
39 new Rest_Cache();
40 new Onboarding();
41
42 // Optional deactivation feedback survey on the Plugins screen. Admin
43 // context only (its hooks are admin_enqueue_scripts / admin_footer /
44 // wp_ajax). Sends nothing unless the user clicks "Submit & Deactivate".
45 if ( is_admin() ) {
46 new Deactivation_Feedback();
47 }
48
49 // Opt-in usage analytics. Instantiating + init() only registers the
50 // cron callback; NOTHING is collected or sent until the admin opts in
51 // from the setup wizard (Onboarding wires the consent toggle to
52 // Usage_Tracker::opt_in()). See class-usage-tracker.php privacy contract.
53 $this->start_plugin_tracking();
54
55 // Auto-heal the cache drop-in + WP_CACHE constant when state
56 // drifts. Scoped to admin_init only: filesystem writes belong in
57 // an authenticated admin context, never on anonymous front-end
58 // requests. The user already opted in (cache_enabled=true) —
59 // this is a consistency check, not a new install path. First
60 // admin page load after a plugin upgrade restores the state;
61 // front-end then serves from cache on the next request.
62 add_action( 'admin_init', array( Cache::class, 'auto_heal' ) );
63 // Cheap: returns immediately unless the stored schema version is
64 // behind. Covers updates and multisite, where activate() never runs.
65 add_action( 'admin_init', array( Score_Store::class, 'maybe_install' ) );
66
67 // Secondary net: restore as soon as an update completes, for the
68 // cases where activate() does not re-run (bulk updates, auto-updates,
69 // some host updaters). Best-effort by nature — this callback is only
70 // registered when we were loaded in the request performing the
71 // update, which is not guaranteed while WE are the plugin being
72 // replaced. The restore in activate() is the primary guarantee;
73 // auto_heal() on admin_init remains the backstop.
74 add_action( 'upgrader_process_complete', array( $this, 'maybe_restore_after_update' ), 10, 2 );
75
76 // Per-post cache rules (Phase 3.4) — registers postmeta with
77 // REST + meta box on edit screens.
78 Cache_Meta_Box::boot();
79
80 // Phase 0 architecture — managers + Free modules. v1 services
81 // (Cache/Minifier/Gzip) are NOT yet Modules; they'll be refactored
82 // in a follow-up PR with parity tests.
83 Conflict_Registry::boot();
84
85 // Register Free modules via the same action xspeed-pro uses, so
86 // the bootstrap path is symmetric across tiers.
87 add_action( 'xspeed_register_modules', array( $this, 'register_free_modules' ) );
88
89 // Fire the registration action + boot the registry at a LATER
90 // plugins_loaded priority so add-on plugins (xspeed-pro, in
91 // alphabetical order so it runs at default priority 10 AFTER
92 // us, but any add-on loaded at plugins_loaded(< 20)) have a
93 // chance to register their `xspeed_register_modules` callback
94 // before we fire the action.
95 //
96 // Bug history: previously this fired inline from init() at
97 // priority 10. xspeed-pro's plugins_loaded(15) hook then added
98 // its register_pro_modules callback AFTER the action had
99 // already fired — Pro modules never appeared in the registry.
100 // Caught by the ProStatus sentinel module's integration test.
101 add_action( 'plugins_loaded', array( $this, 'fire_module_lifecycle' ), 20 );
102
103 // One-time data migrations keyed on the stored version. Runs in
104 // admin only — nothing here needs to touch a front-end request.
105 if ( is_admin() ) {
106 add_action( 'plugins_loaded', array( $this, 'maybe_upgrade' ), 21 );
107 }
108 }
109
110 /**
111 * Run version-gated data migrations exactly once per upgrade.
112 *
113 * Keyed on `xspeed_data_version` rather than the plugin version header
114 * so a migration can be added without forcing a release bump.
115 */
116 public function maybe_upgrade(): void {
117 $current = (string) get_option( 'xspeed_data_version', '0' );
118 if ( version_compare( $current, self::DATA_VERSION, '>=' ) ) {
119 return;
120 }
121
122 // 1.1.2 — strip credential values recorded by earlier versions'
123 // settings change annotations (they're served by the trend endpoints).
124 Activity_Log::redact_legacy_secrets();
125
126 // 1.1.4 — earlier versions cached a failed loopback as "gzip is not
127 // active" for an hour, which showed up as a bogus server-config
128 // warning. Drop the stale answer so the fixed probe re-runs instead
129 // of the wrong verdict living on past the update (issue #18).
130 delete_transient( 'xspeed_gzip_active' );
131
132 update_option( 'xspeed_data_version', self::DATA_VERSION, false );
133 }
134
135 /**
136 * Phase 2 of plugin init: fire the registration action (collecting
137 * Free + Pro + any third-party modules hooked into
138 * `xspeed_register_modules`) and boot the registry.
139 *
140 * Runs at plugins_loaded(20) so every add-on that hooks at any
141 * priority < 20 has time to register first.
142 */
143 public function fire_module_lifecycle(): void {
144 /**
145 * Action: xspeed_register_modules
146 *
147 * Free modules register at priority 10; xspeed-pro at priority
148 * 20; site code can hook in between to inject custom modules.
149 * Fires exactly once per request.
150 */
151 do_action( 'xspeed_register_modules' );
152
153 Module_Registry::boot_all();
154 }
155
156 /**
157 * Register the Free Modules shipped in this plugin. Add new module
158 * registrations here. Pro plugin hooks the same action separately.
159 */
160 public function register_free_modules(): void {
161 Module_Registry::register( new \XSpeed\Modules\Cache\CacheModule() );
162 Module_Registry::register( new \XSpeed\Modules\Health\HealthModule() );
163 // External performance scores (PSI / GTmetrix) — Free, off by
164 // default. Rendered inside the Health host page's PageSpeed tab, so
165 // it has no sidebar row of its own.
166 Module_Registry::register( new \XSpeed\Modules\Score\ScoreModule() );
167 Module_Registry::register( new \XSpeed\Modules\Preloader\PreloaderModule() );
168 Module_Registry::register( new \XSpeed\Modules\Heartbeat\HeartbeatModule() );
169 Module_Registry::register( new \XSpeed\Modules\Minify\MinifyModule() );
170 Module_Registry::register( new \XSpeed\Modules\Gzip\GzipModule() );
171 Module_Registry::register( new \XSpeed\Modules\Lazy\LazyModule() );
172 Module_Registry::register( new \XSpeed\Modules\Bloat\BloatModule() );
173 Module_Registry::register( new \XSpeed\Modules\Database\DatabaseModule() );
174 Module_Registry::register( new \XSpeed\Modules\Cdn\CdnModule() );
175 Module_Registry::register( new \XSpeed\Modules\Cloudflare\CloudflareModule() );
176 Module_Registry::register( new \XSpeed\Modules\ObjectCache\ObjectCacheModule() );
177 Module_Registry::register( new \XSpeed\Modules\BrowserCache\BrowserCacheModule() );
178 // Advanced Cache — a Free container row that gathers the Pro
179 // cache-coverage features (404 / search / feed / REST / rules /
180 // maintenance) into one sidebar sub-item (FBS-83633).
181 Module_Registry::register( new \XSpeed\Modules\CacheCoverage\CacheCoverageModule() );
182 Module_Registry::register( new \XSpeed\Modules\Fonts\FontsModule() );
183 Module_Registry::register( new \XSpeed\Modules\ResourceHints\ResourceHintsModule() );
184 // AI Privacy (GDPR off-switch) ships in Free even though every AI
185 // *feature* is Pro — privacy is a right, not a paid tier. FEATURES.md
186 // §AI row 6 mandates it. Without this registration the module was dead
187 // code: no REST/settings surface, the promised off-switch unreachable
188 // (FBS-83633 Bug 1). It carries its own cli_commands() so it satisfies
189 // the CLI/MCP coverage guard once registered.
190 Module_Registry::register( new \XSpeed\Modules\AIPrivacy\AIPrivacyModule() );
191 // Migration moved Pro → Free: it's an acquisition/onboarding feature
192 // (detect a competing caching plugin, import its settings, switch over),
193 // so it must work without a Pro license. Agency-scale extras (profiles,
194 // bulk multisite, host presets) remain Pro.
195 Module_Registry::register( new \XSpeed\Modules\Migration\MigrationModule() );
196 // Help & Support moved Pro → Free: a ticket link + read-only system
197 // snapshot is onboarding/diagnostics, not a paid value-add, so every
198 // user gets it. The snapshot degrades gracefully without Pro (Pro
199 // version/license fields fall back to defaults via defined()/get_option).
200 Module_Registry::register( new \XSpeed\Modules\Support\SupportModule() );
201 // MCP remote control (AI assistants) — Free. The plugin serves the
202 // MCP protocol at the site's own /xspeed/mcp URL; the only gate is
203 // the per-site connection token an admin mints via Connect. No
204 // license, no hosted infra. See IMPLEMENTATION.md §17.
205 Module_Registry::register( new \XSpeed\Modules\Mcp\McpModule() );
206 }
207
208 /**
209 * Boot the opt-in usage tracker. Registers the cron sender only; the send
210 * itself is consent-gated inside Usage_Tracker. The instance is held so the
211 * onboarding REST handler can flip consent via usage_tracker()->opt_in().
212 */
213 public function start_plugin_tracking(): void {
214 $this->usage_tracker = Usage_Tracker::get_instance(
215 XSPEED_FILE,
216 array(
217 'opt_in' => true,
218 'item_id' => defined( 'XSPEED_INSIGHTS_ITEM_ID' ) ? XSPEED_INSIGHTS_ITEM_ID : false,
219 )
220 );
221 $this->usage_tracker->init();
222 }
223
224 /**
225 * The shared Usage_Tracker singleton (or null if tracking wasn't booted,
226 * e.g. on the activation hook before init() runs).
227 */
228 public function usage_tracker(): ?Usage_Tracker {
229 return $this->usage_tracker;
230 }
231
232 public static function activate() {
233 Settings::set_defaults();
234
235 // Score history table. Also called on admin_init (see init()) because
236 // activation does not fire for a site added to a multisite network
237 // later, nor after an update that ships a new schema version.
238 Score_Store::maybe_install();
239
240 if ( ! file_exists( XSPEED_CACHE_DIR ) ) {
241 wp_mkdir_p( XSPEED_CACHE_DIR );
242 }
243 Cache::write_silence( XSPEED_CACHE_DIR );
244
245 // Caching is only ever ENABLED from the admin UI — see Cache::toggle()
246 // and Rest_Api::toggle_cache(). A fresh install therefore gets no
247 // drop-in and no wp-config.php edit here: cache_enabled is unset, so
248 // the call below is a no-op.
249 //
250 // It is NOT a no-op during an upgrade. WordPress runs an update as
251 // deactivate → wipe files → install → activate, which deletes
252 // advanced-cache.php while cache_enabled stays true. Restoring it
253 // here closes the window in which the site silently serves uncached
254 // (auto_heal() alone only fires on the next wp-admin page load).
255 Cache::restore_dropin_if_enabled();
256
257 // First-run wizard: flag a one-time redirect for the activating user.
258 // Suppressed for bulk activations / already-completed sites in
259 // Onboarding::maybe_redirect().
260 Onboarding::flag_redirect();
261
262 // Propagate activation to every registered Module. Activation
263 // happens after plugins_loaded → modules are already registered.
264 Module_Registry::activate_all();
265 }
266
267 /**
268 * Restore the cache drop-in right after THIS plugin is updated.
269 *
270 * Bound to upgrader_process_complete. Bulk updates, auto-updates and
271 * host-level updaters finish without re-running activate(), so this is
272 * the only hook that repairs the drop-in before the next wp-admin page
273 * load. Narrow by design: bails unless the completed action was a
274 * plugin update whose payload actually includes xspeed.
275 *
276 * @param \WP_Upgrader $upgrader Upgrader instance (unused).
277 * @param array $hook_extra Contextual data about the update.
278 * @return void
279 */
280 public function maybe_restore_after_update( $upgrader, $hook_extra ) {
281 unset( $upgrader );
282
283 if ( ! is_array( $hook_extra ) ) {
284 return;
285 }
286 if ( ! isset( $hook_extra['type'], $hook_extra['action'] ) ) {
287 return;
288 }
289 if ( 'plugin' !== $hook_extra['type'] || 'update' !== $hook_extra['action'] ) {
290 return;
291 }
292
293 // Single update uses 'plugin'; bulk uses 'plugins'.
294 $updated = array();
295 if ( isset( $hook_extra['plugins'] ) && is_array( $hook_extra['plugins'] ) ) {
296 $updated = $hook_extra['plugins'];
297 } elseif ( isset( $hook_extra['plugin'] ) && is_string( $hook_extra['plugin'] ) ) {
298 $updated = array( $hook_extra['plugin'] );
299 }
300
301 $ours = plugin_basename( XSPEED_FILE );
302 if ( ! in_array( $ours, $updated, true ) ) {
303 return;
304 }
305
306 Cache::restore_dropin_if_enabled();
307 }
308
309 public static function deactivate() {
310 // Drop-in + WP_CACHE constant are NOT touched here. WordPress
311 // upgrades run as deactivate → wipe files → install → activate,
312 // so removing those artifacts on every deactivate would silently
313 // disable caching after each plugin update. uninstall.php
314 // handles full teardown when the user actually removes the
315 // plugin; auto_heal() restores state on the next admin_init if
316 // the drop-in or WP_CACHE went missing for any other reason.
317 Cache::purge_all();
318 Minifier::purge_minified();
319 Gzip::apply( false );
320
321 Module_Registry::deactivate_all();
322 }
323 }
324