-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathabilities.php
More file actions
476 lines (453 loc) · 15.1 KB
/
abilities.php
File metadata and controls
476 lines (453 loc) · 15.1 KB
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
<?php
/**
* Core Abilities registration.
*
* @package WordPress
* @subpackage Abilities_API
* @since 6.9.0
*/
declare( strict_types = 1 );
/**
* Registers the core ability categories.
*
* @since 6.9.0
*/
function wp_register_core_ability_categories(): void {
wp_register_ability_category(
'site',
array(
'label' => __( 'Site' ),
'description' => __( 'Abilities that retrieve or modify site information and settings.' ),
)
);
wp_register_ability_category(
'user',
array(
'label' => __( 'User' ),
'description' => __( 'Abilities that retrieve or modify user information and settings.' ),
)
);
}
/**
* Registers the default core abilities.
*
* @since 6.9.0
*
* @global wpdb $wpdb WordPress database abstraction object.
*/
function wp_register_core_abilities(): void {
$category_site = 'site';
$category_user = 'user';
$site_info_properties = array(
'name' => array(
'type' => 'string',
'description' => __( 'The site title.' ),
),
'description' => array(
'type' => 'string',
'description' => __( 'The site tagline.' ),
),
'url' => array(
'type' => 'string',
'description' => __( 'The site home URL.' ),
),
'wpurl' => array(
'type' => 'string',
'description' => __( 'The WordPress installation URL.' ),
),
'admin_email' => array(
'type' => 'string',
'description' => __( 'The site administrator email address.' ),
),
'charset' => array(
'type' => 'string',
'description' => __( 'The site character encoding.' ),
),
'language' => array(
'type' => 'string',
'description' => __( 'The site language locale code.' ),
),
'version' => array(
'type' => 'string',
'description' => __( 'The WordPress version.' ),
),
);
$site_info_fields = array_keys( $site_info_properties );
wp_register_ability(
'core/get-site-info',
array(
'label' => __( 'Get Site Information' ),
'description' => __( 'Returns site information configured in WordPress. By default returns all fields, or optionally a filtered subset.' ),
'category' => $category_site,
'input_schema' => array(
'type' => 'object',
'properties' => array(
'fields' => array(
'type' => 'array',
'items' => array(
'type' => 'string',
'enum' => $site_info_fields,
),
'description' => __( 'Optional: Limit response to specific fields. If omitted, all fields are returned.' ),
),
),
'additionalProperties' => false,
'default' => array(),
),
'output_schema' => array(
'type' => 'object',
'properties' => $site_info_properties,
'additionalProperties' => false,
),
'execute_callback' => static function ( $input = array() ) use ( $site_info_fields ): array {
$input = is_array( $input ) ? $input : array();
$requested_fields = ! empty( $input['fields'] ) ? $input['fields'] : $site_info_fields;
$result = array();
foreach ( $requested_fields as $field ) {
$result[ $field ] = get_bloginfo( $field );
}
return $result;
},
'permission_callback' => static function (): bool {
return current_user_can( 'manage_options' );
},
'meta' => array(
'annotations' => array(
'readonly' => true,
'destructive' => false,
'idempotent' => true,
),
'show_in_rest' => true,
),
)
);
wp_register_ability(
'core/get-user-info',
array(
'label' => __( 'Get User Information' ),
'description' => __( 'Returns basic profile details for the current authenticated user to support personalization, auditing, and access-aware behavior.' ),
'category' => $category_user,
'output_schema' => array(
'type' => 'object',
'required' => array( 'id', 'display_name', 'user_nicename', 'user_login', 'roles', 'locale' ),
'properties' => array(
'id' => array(
'type' => 'integer',
'description' => __( 'The user ID.' ),
),
'display_name' => array(
'type' => 'string',
'description' => __( 'The display name of the user.' ),
),
'user_nicename' => array(
'type' => 'string',
'description' => __( 'The URL-friendly name for the user.' ),
),
'user_login' => array(
'type' => 'string',
'description' => __( 'The login username for the user.' ),
),
'roles' => array(
'type' => 'array',
'description' => __( 'The roles assigned to the user.' ),
'items' => array(
'type' => 'string',
),
),
'locale' => array(
'type' => 'string',
'description' => __( 'The locale string for the user, such as en_US.' ),
),
),
'additionalProperties' => false,
),
'execute_callback' => static function (): array {
$current_user = wp_get_current_user();
return array(
'id' => $current_user->ID,
'display_name' => $current_user->display_name,
'user_nicename' => $current_user->user_nicename,
'user_login' => $current_user->user_login,
'roles' => $current_user->roles,
'locale' => get_user_locale( $current_user ),
);
},
'permission_callback' => static function (): bool {
return is_user_logged_in();
},
'meta' => array(
'annotations' => array(
'readonly' => true,
'destructive' => false,
'idempotent' => true,
),
'show_in_rest' => false,
),
)
);
wp_register_ability(
'core/get-user',
array(
'label' => __( 'Get User' ),
'description' => __( 'Returns profile data for a specific user looked up by ID, username, or email. Users can view their own record; viewing others requires the list_users capability.' ),
'category' => $category_user,
'input_schema' => array(
'type' => 'object',
'oneOf' => array(
array(
'required' => array( 'id' ),
'properties' => array(
'id' => array(
'type' => 'integer',
'description' => __( 'The user ID.' ),
'minimum' => 1,
),
),
),
array(
'required' => array( 'username' ),
'properties' => array(
'username' => array(
'type' => 'string',
'description' => __( 'The user login name.' ),
),
),
),
array(
'required' => array( 'email' ),
'properties' => array(
'email' => array(
'type' => 'string',
'description' => __( 'The user email address.' ),
),
),
),
),
'properties' => array(
'id' => array(
'type' => 'integer',
'description' => __( 'The user ID.' ),
'minimum' => 1,
),
'username' => array(
'type' => 'string',
'description' => __( 'The user login name.' ),
),
'email' => array(
'type' => 'string',
'description' => __( 'The user email address.' ),
),
'include_capabilities' => array(
'type' => 'boolean',
'description' => __( 'Whether to include the user\'s capabilities in the response.' ),
'default' => false,
),
),
'additionalProperties' => false,
),
'output_schema' => array(
'type' => 'object',
'required' => array( 'id', 'username', 'email', 'display_name', 'first_name', 'last_name', 'nickname', 'description', 'url', 'link', 'slug', 'registered_date', 'roles', 'locale', 'avatar_urls' ),
'properties' => array(
'id' => array(
'type' => 'integer',
'description' => __( 'The user ID.' ),
),
'username' => array(
'type' => 'string',
'description' => __( 'The login username for the user.' ),
),
'email' => array(
'type' => 'string',
'description' => __( 'The email address for the user.' ),
),
'display_name' => array(
'type' => 'string',
'description' => __( 'The display name for the user.' ),
),
'first_name' => array(
'type' => 'string',
'description' => __( 'The first name for the user.' ),
),
'last_name' => array(
'type' => 'string',
'description' => __( 'The last name for the user.' ),
),
'nickname' => array(
'type' => 'string',
'description' => __( 'The nickname for the user.' ),
),
'description' => array(
'type' => 'string',
'description' => __( 'The biographical description for the user.' ),
),
'url' => array(
'type' => 'string',
'description' => __( 'The URL of the user\'s website.' ),
),
'link' => array(
'type' => 'string',
'description' => __( 'The URL to the user\'s author archive page.' ),
),
'slug' => array(
'type' => 'string',
'description' => __( 'The URL-friendly slug for the user.' ),
),
'registered_date' => array(
'type' => 'string',
'description' => __( 'The date the user was registered, as a UTC ISO 8601 date string.' ),
),
'roles' => array(
'type' => 'array',
'description' => __( 'The roles assigned to the user.' ),
'items' => array(
'type' => 'string',
),
),
'locale' => array(
'type' => 'string',
'description' => __( 'The locale for the user.' ),
),
'avatar_urls' => array(
'type' => 'object',
'description' => __( 'Avatar URLs for the user, keyed by size in pixels.' ),
'additionalProperties' => array(
'type' => 'string',
),
),
'capabilities' => array(
'type' => 'object',
'description' => __( 'All capabilities assigned to the user. Only present when include_capabilities is true.' ),
'additionalProperties' => array(
'type' => 'boolean',
),
),
),
'additionalProperties' => false,
),
'execute_callback' => static function ( $input = array() ) {
$input = is_array( $input ) ? $input : array();
$user = null;
if ( isset( $input['id'] ) ) {
$user = get_user_by( 'id', $input['id'] );
} elseif ( isset( $input['username'] ) ) {
$user = get_user_by( 'login', $input['username'] );
} elseif ( isset( $input['email'] ) ) {
$user = get_user_by( 'email', $input['email'] );
}
if ( ! $user instanceof WP_User ) {
return new WP_Error( 'user_not_found', __( 'No user was found matching the provided identifier.' ), array( 'status' => 404 ) );
}
$data = array(
'id' => $user->ID,
'username' => $user->user_login,
'email' => $user->user_email,
'display_name' => $user->display_name,
'first_name' => $user->first_name,
'last_name' => $user->last_name,
'nickname' => $user->nickname,
'description' => $user->description,
'url' => $user->user_url,
'link' => get_author_posts_url( $user->ID, $user->user_nicename ),
'slug' => $user->user_nicename,
'registered_date' => gmdate( 'Y-m-d\TH:i:s\Z', strtotime( $user->user_registered ) ),
'roles' => array_values( $user->roles ),
'locale' => get_user_locale( $user ),
'avatar_urls' => rest_get_avatar_urls( $user ),
);
if ( ! empty( $input['include_capabilities'] ) ) {
$data['capabilities'] = $user->allcaps;
}
return $data;
},
'permission_callback' => static function ( $input = array() ): bool {
if ( ! is_user_logged_in() ) {
return false;
}
$input = is_array( $input ) ? $input : array();
// Determine the target user from the input identifiers.
$requested_user = null;
if ( isset( $input['id'] ) ) {
$requested_user = get_user_by( 'id', $input['id'] );
} elseif ( isset( $input['username'] ) ) {
$requested_user = get_user_by( 'login', $input['username'] );
} elseif ( isset( $input['email'] ) ) {
$requested_user = get_user_by( 'email', $input['email'] );
}
// Users may always view their own record.
if ( $requested_user instanceof WP_User && get_current_user_id() === $requested_user->ID ) {
return true;
}
// Viewing any other user requires list_users.
return current_user_can( 'list_users' );
},
'meta' => array(
'annotations' => array(
'readonly' => true,
'destructive' => false,
'idempotent' => true,
),
'show_in_rest' => true,
),
)
);
wp_register_ability(
'core/get-environment-info',
array(
'label' => __( 'Get Environment Info' ),
'description' => __( 'Returns core details about the site\'s runtime context for diagnostics and compatibility (environment, PHP runtime, database server info, WordPress version).' ),
'category' => $category_site,
'output_schema' => array(
'type' => 'object',
'required' => array( 'environment', 'php_version', 'db_server_info', 'wp_version' ),
'properties' => array(
'environment' => array(
'type' => 'string',
'description' => __( 'The site\'s runtime environment classification (can be one of these: production, staging, development, local).' ),
'enum' => array( 'production', 'staging', 'development', 'local' ),
),
'php_version' => array(
'type' => 'string',
'description' => __( 'The PHP runtime version executing WordPress.' ),
),
'db_server_info' => array(
'type' => 'string',
'description' => __( 'The database server vendor and version string reported by the driver.' ),
),
'wp_version' => array(
'type' => 'string',
'description' => __( 'The WordPress core version running on this site.' ),
),
),
'additionalProperties' => false,
),
'execute_callback' => static function (): array {
global $wpdb;
$env = wp_get_environment_type();
$php_version = phpversion();
$db_server_info = '';
if ( method_exists( $wpdb, 'db_server_info' ) ) {
$db_server_info = $wpdb->db_server_info() ?? '';
}
$wp_version = get_bloginfo( 'version' );
return array(
'environment' => $env,
'php_version' => $php_version,
'db_server_info' => $db_server_info,
'wp_version' => $wp_version,
);
},
'permission_callback' => static function (): bool {
return current_user_can( 'manage_options' );
},
'meta' => array(
'annotations' => array(
'readonly' => true,
'destructive' => false,
'idempotent' => true,
),
'show_in_rest' => true,
),
)
);
}