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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<?php
namespace JVBase\rest;
 
use WP_REST_Request;
use WP_Error;
use WP_User;
 
if (!defined('ABSPATH')) {
    exit;
}
 
/**
 * Centralized Permission Handler for REST Routes
 *
 * Provides reusable permission callbacks and utilities for route authentication.
 */
class PermissionHandler
{
    /**
     * Check if the 'user' parameter in request matches current logged-in user
     * Common pattern for user-specific endpoints
     */
    public static function userMatch(WP_REST_Request $request): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in to access this resource',
                ['status' => 401]
            );
        }
 
        $requestedUserId = $request->get_param('user');
 
        // No user param specified - allow (controller will handle)
        if (empty($requestedUserId)) {
            return true;
        }
 
        $currentUserId = get_current_user_id();
 
        if ((int) $requestedUserId !== $currentUserId) {
            return new WP_Error(
                'forbidden',
                'You can only access your own resources',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Check if current user is an administrator
     */
    public static function isAdmin(WP_REST_Request $request): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        if (!current_user_can('manage_options')) {
            return new WP_Error(
                'forbidden',
                'Administrator access required',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Check if current user is verified (has skip_moderation capability)
     */
    public static function isVerified(WP_REST_Request $request): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        if (!current_user_can('skip_moderation')) {
            return new WP_Error(
                'not_verified',
                'Account verification required',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Check if current user has a specific role
     */
    public static function hasRole(WP_REST_Request $request, string $role): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        $user = wp_get_current_user();
        $role = self::normalizeRole($role);
 
        if (!in_array($role, $user->roles, true)) {
            return new WP_Error(
                'forbidden',
                'You do not have the required role',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Check if current user has any of the specified roles
     */
    public static function hasAnyRole(WP_REST_Request $request, array $roles): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        $user = wp_get_current_user();
        $normalizedRoles = array_map([self::class, 'normalizeRole'], $roles);
 
        foreach ($user->roles as $userRole) {
            if (in_array($userRole, $normalizedRoles, true)) {
                return true;
            }
        }
 
        return new WP_Error(
            'forbidden',
            'You do not have any of the required roles',
            ['status' => 403]
        );
    }
 
    /**
     * Check if current user has all specified roles
     */
    public static function hasAllRoles(WP_REST_Request $request, array $roles): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        $user = wp_get_current_user();
        $normalizedRoles = array_map([self::class, 'normalizeRole'], $roles);
 
        foreach ($normalizedRoles as $role) {
            if (!in_array($role, $user->roles, true)) {
                return new WP_Error(
                    'forbidden',
                    'You do not have all required roles',
                    ['status' => 403]
                );
            }
        }
 
        return true;
    }
 
    /**
     * Check if current user has a specific capability
     */
    public static function hasCapability(WP_REST_Request $request, string $capability): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        if (!current_user_can($capability)) {
            return new WP_Error(
                'forbidden',
                'You do not have the required permission',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Check if current user has any of the specified capabilities
     */
    public static function hasAnyCapability(WP_REST_Request $request, array $capabilities): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        foreach ($capabilities as $cap) {
            if (current_user_can($cap)) {
                return true;
            }
        }
 
        return new WP_Error(
            'forbidden',
            'You do not have any of the required permissions',
            ['status' => 403]
        );
    }
 
    /**
     * Check if user owns a specific post
     */
    public static function ownsPost(WP_REST_Request $request, string $paramName = 'post_id'): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        $postId = $request->get_param($paramName);
 
        if (empty($postId)) {
            return new WP_Error(
                'missing_param',
                'Post ID is required',
                ['status' => 400]
            );
        }
 
        $post = get_post($postId);
 
        if (!$post) {
            return new WP_Error(
                'not_found',
                'Post not found',
                ['status' => 404]
            );
        }
 
        if ((int) $post->post_author !== get_current_user_id()) {
            // Allow admins to bypass ownership check
            if (!current_user_can('manage_options')) {
                return new WP_Error(
                    'forbidden',
                    'You can only modify your own content',
                    ['status' => 403]
                );
            }
        }
 
        return true;
    }
 
    /**
     * Check if user can edit a specific post type
     */
    public static function canEditPostType(WP_REST_Request $request, string $postType): bool|WP_Error
    {
        if (!is_user_logged_in()) {
            return new WP_Error(
                'not_logged_in',
                'You must be logged in',
                ['status' => 401]
            );
        }
 
        $postTypeObj = get_post_type_object($postType);
 
        if (!$postTypeObj) {
            return new WP_Error(
                'invalid_post_type',
                'Invalid post type',
                ['status' => 400]
            );
        }
 
        if (!current_user_can($postTypeObj->cap->edit_posts)) {
            return new WP_Error(
                'forbidden',
                'You cannot edit this content type',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Verify nonce from request header
     */
    public static function verifyNonce(WP_REST_Request $request, string $action = 'wp_rest', string $header = 'X-WP-Nonce'): bool|WP_Error
    {
        $nonce = $request->get_header($header);
 
        if (empty($nonce)) {
            return new WP_Error(
                'missing_nonce',
                'Security token is missing',
                ['status' => 403]
            );
        }
 
        if (!wp_verify_nonce($nonce, $action)) {
            return new WP_Error(
                'invalid_nonce',
                'Invalid or expired security token',
                ['status' => 403]
            );
        }
 
        return true;
    }
 
    /**
     * Verify action-specific nonce (e.g., 'dash-{user_id}')
     */
    public static function verifyActionNonce(WP_REST_Request $request, string $actionPrefix, string $header = 'X-Action-Nonce'): bool|WP_Error
    {
        $userId = $request->get_param('user') ?: get_current_user_id();
        $action = $actionPrefix . $userId;
 
        return self::verifyNonce($request, $action, $header);
    }
 
    /**
     * Combined permission check: user match + rate limit
     */
    public static function userMatchWithRateLimit(WP_REST_Request $request): bool|WP_Error
    {
        static $rateLimiter = null;
 
        if ($rateLimiter === null) {
            $rateLimiter = new RateLimiter();
        }
 
        // Check rate limit first
        if (!$rateLimiter->checkLimit($request)) {
            return new WP_Error(
                'rate_limit',
                'Too many requests. Please wait before trying again.',
                ['status' => 429]
            );
        }
 
        return self::userMatch($request);
    }
 
    /**
     * Create a custom permission callback combining multiple checks
     *
     * Usage:
     *   PermissionHandler::combine(['logged_in', 'verified'])
     *   PermissionHandler::combine([['role' => 'artist'], ['capability' => 'edit_posts']])
     */
    public static function combine(array $checks): callable
    {
        return function(WP_REST_Request $request) use ($checks) {
            foreach ($checks as $check) {
                $result = match (true) {
                    $check === 'logged_in' => is_user_logged_in() ?: new WP_Error('not_logged_in', 'Login required', ['status' => 401]),
                    $check === 'admin' => self::isAdmin($request),
                    $check === 'verified' => self::isVerified($request),
                    $check === 'user' => self::userMatch($request),
                    is_array($check) && isset($check['role']) => self::hasRole($request, $check['role']),
                    is_array($check) && isset($check['roles']) => self::hasAnyRole($request, $check['roles']),
                    is_array($check) && isset($check['capability']) => self::hasCapability($request, $check['capability']),
                    is_callable($check) => $check($request),
                    default => true,
                };
 
                if (is_wp_error($result)) {
                    return $result;
                }
 
                if ($result === false) {
                    return new WP_Error('forbidden', 'Access denied', ['status' => 403]);
                }
            }
 
            return true;
        };
    }
 
    /**
     * Create an OR permission callback (passes if ANY check passes)
     */
    public static function any(array $checks): callable
    {
        return function(WP_REST_Request $request) use ($checks) {
            $lastError = null;
 
            foreach ($checks as $check) {
                $result = match (true) {
                    $check === 'logged_in' => is_user_logged_in(),
                    $check === 'admin' => self::isAdmin($request),
                    $check === 'verified' => self::isVerified($request),
                    $check === 'user' => self::userMatch($request),
                    is_array($check) && isset($check['role']) => self::hasRole($request, $check['role']),
                    is_array($check) && isset($check['capability']) => self::hasCapability($request, $check['capability']),
                    is_callable($check) => $check($request),
                    default => false,
                };
 
                // If it's a successful check (true), pass
                if ($result === true) {
                    return true;
                }
 
                // Track last error for reporting
                if (is_wp_error($result)) {
                    $lastError = $result;
                }
            }
 
            return $lastError ?: new WP_Error('forbidden', 'Access denied', ['status' => 403]);
        };
    }
 
    /**
     * Normalize role name (add BASE prefix if needed)
     */
    private static function normalizeRole(string $role): string
    {
        if (defined('BASE') && !str_starts_with($role, BASE)) {
            // Check if it's a WordPress core role
            $coreRoles = ['administrator', 'editor', 'author', 'contributor', 'subscriber'];
            if (!in_array($role, $coreRoles, true)) {
                return BASE . $role;
            }
        }
        return $role;
    }
 
    /**
     * Get current user for request (cached)
     */
    public static function getCurrentUser(): ?WP_User
    {
        static $user = null;
 
        if ($user === null && is_user_logged_in()) {
            $user = wp_get_current_user();
        }
 
        return $user instanceof WP_User ? $user : null;
    }
 
    /**
     * Check if request is from same origin (basic CSRF protection)
     */
    public static function verifySameOrigin(WP_REST_Request $request): bool|WP_Error
    {
        $origin = $request->get_header('Origin');
        $referer = $request->get_header('Referer');
 
        $siteUrl = get_site_url();
        $siteDomain = parse_url($siteUrl, PHP_URL_HOST);
 
        // Check origin header
        if ($origin) {
            $originDomain = parse_url($origin, PHP_URL_HOST);
            if ($originDomain !== $siteDomain) {
                return new WP_Error(
                    'cross_origin',
                    'Cross-origin requests not allowed',
                    ['status' => 403]
                );
            }
        }
 
        // Check referer as fallback
        if (!$origin && $referer) {
            $refererDomain = parse_url($referer, PHP_URL_HOST);
            if ($refererDomain !== $siteDomain) {
                return new WP_Error(
                    'cross_origin',
                    'Cross-origin requests not allowed',
                    ['status' => 403]
                );
            }
        }
 
        return true;
    }
}