Phase 1 MVP: drop-in step registry + session + Markdown report
Plugin skeleton, drop-in step registry, option-backed session, single-page checklist UI, downloadable Markdown report. Steps live as one file each under includes/steps/ — adding/removing one is a single file change. Step IDs are stable strings so renaming files preserves session data. Architecture (hc-5ix.3): WPH_Steps singleton globs includes/steps/*.php, natsort-orders by filename, requires each file (which returns a WPH_Step instance), then applies a 'wph_steps' filter so installs can drop steps. Session (hc-5ix.4): option-backed (per decision — plugin is installed per-engagement, so DB-resident history would be lost on uninstall). Single in-progress session per site; finished sessions render a report that the user downloads/copies. Recovery bootstrap (hc-5ix.1): detects whether wp-site-recovery is installed + active, surfaces state on the start panel and in every active session. Manual install for now; private update channel deferred to hc-5ix.27. Smoke-tested on testsite: registry discovery (13 steps in correct order), start → update_step → progress count → finish → 8KB Markdown report → discard cycle.
This commit is contained in:
105
includes/class-wph-session.php
Normal file
105
includes/class-wph-session.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
/**
|
||||
* Healthcheck session. Option-backed (single in-progress session per site).
|
||||
*
|
||||
* Per beads decision hc-5ix.4: option, not CPT. The plugin is installed per
|
||||
* engagement, so per-site history living in the DB would die on uninstall.
|
||||
* Reports are exported as Markdown instead — see report.php.
|
||||
*/
|
||||
final class WPH_Session {
|
||||
|
||||
public const STATUS_NOT_STARTED = 'not_started';
|
||||
public const STATUS_DONE = 'done';
|
||||
public const STATUS_SKIPPED = 'skipped';
|
||||
public const STATUS_BLOCKED = 'blocked';
|
||||
public const STATUS_NA = 'n_a';
|
||||
|
||||
public const VALID_STATUSES = [
|
||||
self::STATUS_NOT_STARTED,
|
||||
self::STATUS_DONE,
|
||||
self::STATUS_SKIPPED,
|
||||
self::STATUS_BLOCKED,
|
||||
self::STATUS_NA,
|
||||
];
|
||||
|
||||
private array $data;
|
||||
|
||||
private function __construct(array $data) {
|
||||
$this->data = $data;
|
||||
}
|
||||
|
||||
public static function current(): ?self {
|
||||
$raw = get_option(WPH_OPT_SESSION);
|
||||
if (!is_array($raw) || empty($raw['id'])) return null;
|
||||
return new self($raw);
|
||||
}
|
||||
|
||||
public static function start(int $technician_id): self {
|
||||
$data = [
|
||||
'id' => uniqid('wph_', true),
|
||||
'started_at' => time(),
|
||||
'finished_at' => null,
|
||||
'technician_id'=> $technician_id,
|
||||
'site_url' => get_site_url(),
|
||||
'wp_version' => get_bloginfo('version'),
|
||||
'php_version' => PHP_VERSION,
|
||||
'steps' => [], // keyed by step id → ['status' => ..., 'notes' => ..., 'updated_at' => ...]
|
||||
];
|
||||
update_option(WPH_OPT_SESSION, $data, false);
|
||||
return new self($data);
|
||||
}
|
||||
|
||||
public static function discard(): void {
|
||||
delete_option(WPH_OPT_SESSION);
|
||||
}
|
||||
|
||||
public function id(): string { return (string) $this->data['id']; }
|
||||
public function started_at(): int { return (int) $this->data['started_at']; }
|
||||
public function finished_at(): ?int { return isset($this->data['finished_at']) ? (int) $this->data['finished_at'] : null; }
|
||||
public function is_finished(): bool { return $this->finished_at() !== null; }
|
||||
public function technician_id(): int { return (int) $this->data['technician_id']; }
|
||||
public function site_url(): string { return (string) ($this->data['site_url'] ?? get_site_url()); }
|
||||
public function wp_version(): string { return (string) ($this->data['wp_version'] ?? ''); }
|
||||
public function php_version(): string { return (string) ($this->data['php_version'] ?? ''); }
|
||||
public function data(): array { return $this->data; }
|
||||
|
||||
public function step_state(string $step_id): array {
|
||||
return $this->data['steps'][$step_id] ?? [
|
||||
'status' => self::STATUS_NOT_STARTED,
|
||||
'notes' => '',
|
||||
'updated_at' => null,
|
||||
];
|
||||
}
|
||||
|
||||
public function update_step(string $step_id, string $status, string $notes): void {
|
||||
if (!in_array($status, self::VALID_STATUSES, true)) {
|
||||
$status = self::STATUS_NOT_STARTED;
|
||||
}
|
||||
$this->data['steps'][$step_id] = [
|
||||
'status' => $status,
|
||||
'notes' => $notes,
|
||||
'updated_at' => time(),
|
||||
];
|
||||
update_option(WPH_OPT_SESSION, $this->data, false);
|
||||
}
|
||||
|
||||
public function finish(): void {
|
||||
$this->data['finished_at'] = time();
|
||||
update_option(WPH_OPT_SESSION, $this->data, false);
|
||||
}
|
||||
|
||||
public function progress(): array {
|
||||
$steps = WPH_Steps::instance()->all();
|
||||
$total = count($steps);
|
||||
$done = 0;
|
||||
foreach ($steps as $step) {
|
||||
$st = $this->step_state($step->id());
|
||||
if (in_array($st['status'], [self::STATUS_DONE, self::STATUS_SKIPPED, self::STATUS_NA], true)) {
|
||||
$done++;
|
||||
}
|
||||
}
|
||||
return ['done' => $done, 'total' => $total];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user