Jake Vanderwerf
2026-01-29 e6672fe38ce5d99f3b3f026154f777aded7361de
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
<?php
namespace JVBase\meta;
 
use Exception;
 
if (!defined('ABSPATH')) {
    exit;
}
 
/**
 * Main facade for meta operations
 * Fluent API for getting/setting meta values with validation & sanitization
 */
class Meta
{
    protected Item $item;
    protected Storage $storage;
    protected MetaValidator $validator;
    protected MetaSanitizer $sanitizer;
    protected MetaTypeManager $typeManager;
 
    protected bool $autoValidate = true;
    protected bool $autoSanitize = true;
 
    // ─────────────────────────────────────────────────────────────
    // Factory Methods
    // ─────────────────────────────────────────────────────────────
 
    public static function forPost(int $id): self
    {
        return new self($id, 'post');
    }
 
    public static function forTerm(int $id): self
    {
        return new self($id, 'term');
    }
 
    public static function forUser(int $id): self
    {
        return new self($id, 'user');
    }
 
    public static function forOptions(?string $baseKey = null): self
    {
        $instance = new self($baseKey, 'options');
        $instance->item->baseKey = $baseKey;
        return $instance;
    }
 
    // ─────────────────────────────────────────────────────────────
    // Constructor
    // ─────────────────────────────────────────────────────────────
 
    public function __construct(int|string|null $id, string $type)
    {
        $this->storage = new Storage();
        $this->validator = new MetaValidator();
        $this->sanitizer = new MetaSanitizer();
        $this->typeManager = new MetaTypeManager();
 
        $this->item = $this->buildItem($id, $type);
    }
 
    protected function buildItem(int|string|null $id, string $type): Item
    {
        $contentType = null;
        $wpObject = null;
 
        if ($id && $type !== 'options') {
            [$wpObject, $contentType] = match ($type) {
                'post' => [get_post($id), jvbNoBase(get_post_type($id))],
                'term' => [get_term($id), jvbNoBase(get_term($id)->taxonomy)],
                'user', 'integrations' => [get_user_by('id', $id), jvbUserRole($id)],
                default => [null, null]
            };
        }
 
        $item = new Item($id, $type, $contentType);
        $item->wpObject = $wpObject;
        $item->fieldConfigs = $this->loadFieldConfigs($contentType, $type);
 
        // Mark WP defaults in configs
        $defaults = Item::WP_DEFAULTS[$type] ?? [];
        foreach ($defaults as $name) {
            if (!isset($item->fieldConfigs[$name])) {
                $item->fieldConfigs[$name] = ['type' => 'text', '_wp_default' => true];
            } else {
                $item->fieldConfigs[$name]['_wp_default'] = true;
            }
        }
 
        return $item;
    }
 
    protected function loadFieldConfigs(?string $contentType, string $objectType): array
    {
        if (!$contentType && $objectType !== 'options') {
            return [];
        }
 
        return jvbGetFields($contentType ?? 'options', $objectType);
    }
 
    // ─────────────────────────────────────────────────────────────
    // Magic Methods for Fluent Access
    // ─────────────────────────────────────────────────────────────
 
    public function __get(string $name): mixed
    {
        return $this->get($name);
    }
 
    public function __set(string $name, mixed $value): void
    {
        $this->set($name, $value);
    }
 
    public function __isset(string $name): bool
    {
        return $this->item->hasField($name);
    }
 
    // ─────────────────────────────────────────────────────────────
    // Core API
    // ─────────────────────────────────────────────────────────────
 
    /**
     * Get a field value
     */
    public function get(string $name): mixed
    {
        // Return from loaded field if exists
        if ($field = $this->item->getField($name)) {
            return $field->get();
        }
 
        // Load from storage
        $value = $this->storage->get($this->item, $name);
        $config = $this->item->getFieldConfig($name) ?? ['type' => 'text'];
 
        $field = new Field($name, $value, $config);
        $this->item->setField($field);
 
        return $value;
    }
 
    /**
     * Set a field value (validates & sanitizes)
     */
    public function set(string $name, mixed $value): self
    {
        $config = $this->item->getFieldConfig($name);
 
        if (!$config) {
            // Allow setting unknown fields with minimal config
            $config = ['type' => 'text', 'name' => $name];
        }
 
        $config['name'] = $name;
 
        // Validate
        if ($this->autoValidate && !$this->validator->validate($value, $config)) {
            $field = $this->item->getField($name) ?? new Field($name, $value, $config);
            $field->addError("Validation failed for {$name}");
            $this->item->setField($field);
            return $this;
        }
 
        // Sanitize
        if ($this->autoSanitize) {
            $value = $this->sanitizer->sanitize($value, $config);
        }
 
        // Get or create field
        $field = $this->item->getField($name);
 
        if ($field) {
            $field->set($value);
        } else {
            // Need to load original to track dirty state
            $original = $this->storage->get($this->item, $name);
            $field = new Field($name, $original, $config);
            $field->set($value);
            $this->item->setField($field);
        }
 
        return $this;
    }
 
    /**
     * Get multiple fields
     */
    public function getAll(array $fields = []): array
    {
        if (empty($fields) || $fields === ['all']) {
            $fields = array_keys($this->item->fieldConfigs);
        }
 
        // Load all from storage
        $values = $this->storage->getAll($this->item, $fields);
 
        // Create Field instances
        foreach ($values as $name => $value) {
            if (!$this->item->getField($name)) {
                $config = $this->item->getFieldConfig($name) ?? ['type' => 'text'];
                $this->item->setField(new Field($name, $value, $config));
            }
        }
 
        return $values;
    }
 
    /**
     * Set multiple fields
     */
    public function setAll(array $data): self
    {
        foreach ($data as $name => $value) {
            $this->set($name, $value);
        }
        return $this;
    }
 
    /**
     * Save all dirty fields to database
     */
    public function save(bool $updateTimestamp = true): bool
    {
        if (!$this->item->isValid()) {
            JVB()->error()->log('meta', 'Cannot save: validation errors exist', [
                'fields' => array_keys($this->item->getInvalidFields())
            ], 'warning');
            return false;
        }
 
        // Check for field overrides before saving
        foreach ($this->item->getDirtyFields() as $field) {
            if ($this->checkOverrides($field)) {
                $field->markClean();
            }
        }
 
        return $this->storage->save($this->item, $updateTimestamp);
    }
 
    /**
     * Delete a field value
     */
    public function delete(string $name): bool
    {
        $result = $this->storage->delete($this->item, $name);
 
        if ($result && $field = $this->item->getField($name)) {
            $field->set($this->getDefaultValue($name));
            $field->markClean();
        }
 
        return $result;
    }
 
    // ─────────────────────────────────────────────────────────────
    // Utility Methods
    // ─────────────────────────────────────────────────────────────
 
    /**
     * Get all dirty (changed) fields
     */
    public function getDirty(): array
    {
        return array_map(
            fn(Field $f) => $f->value,
            $this->item->getDirtyFields()
        );
    }
 
    /**
     * Check if any fields have changed
     */
    public function isDirty(): bool
    {
        return $this->item->hasDirtyFields();
    }
 
    /**
     * Discard all unsaved changes
     */
    public function reset(): self
    {
        foreach ($this->item->fields as $field) {
            $field->reset();
        }
        return $this;
    }
 
    /**
     * Get validation errors
     */
    public function getErrors(): array
    {
        $errors = [];
        foreach ($this->item->getInvalidFields() as $name => $field) {
            $errors[$name] = $field->errors;
        }
        return $errors;
    }
 
    /**
     * Check if valid (no validation errors)
     */
    public function isValid(): bool
    {
        return $this->item->isValid();
    }
 
    /**
     * Disable auto-validation for bulk operations
     */
    public function withoutValidation(): self
    {
        $this->autoValidate = false;
        return $this;
    }
 
    /**
     * Disable auto-sanitization
     */
    public function withoutSanitization(): self
    {
        $this->autoSanitize = false;
        return $this;
    }
 
    /**
     * Get the underlying item (for rendering, etc)
     */
    public function item(): Item
    {
        return $this->item;
    }
 
    /**
     * Get field configuration
     */
    public function config(string $name): ?array
    {
        return $this->item->getFieldConfig($name);
    }
 
    /**
     * Get all field configurations
     */
    public function configs(): array
    {
        return $this->item->fieldConfigs;
    }
 
    // ─────────────────────────────────────────────────────────────
    // Protected Helpers
    // ─────────────────────────────────────────────────────────────
 
    protected function checkOverrides(Field $field): bool
    {
        $name = $field->name;
        $type = $field->type();
        $value = $field->value;
 
        do_action('jvb_meta_update', $name, $value, $this->item->objectType);
 
        $overrides = [
            BASE . 'update_' . $name,
            BASE . 'update_' . $type,
            'jvb_update_' . $name,
            'jvb_update_' . $type,
        ];
 
        foreach ($overrides as $override) {
            if (function_exists($override)) {
                $override($this->item->id, $value);
                return true;
            }
        }
 
        return false;
    }
 
    protected function getDefaultValue(string $name): mixed
    {
        $config = $this->item->getFieldConfig($name);
        $type = $config['type'] ?? 'text';
 
        return match ($this->typeManager->getMetaType($type)) {
            'object', 'array' => [],
            'boolean' => false,
            'integer' => 0,
            default => '',
        };
    }
}