-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Abilities API: Add the initial core abilities and categories registration. #10411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
jorgefilipecosta
wants to merge
20
commits into
WordPress:trunk
from
jorgefilipecosta:add/core-abilities-registration
Closed
Changes from 6 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
6debd58
Add: Core abiltiies registration.
jorgefilipecosta 0a15be1
correct version field
jorgefilipecosta 9427ec6
lint fix
jorgefilipecosta ca04081
fix wpRegisterAbility tests
jorgefilipecosta fd17d01
additional test fixes
jorgefilipecosta ec22568
in progress test fixes
jorgefilipecosta 16d94b8
in progress test fixes
jorgefilipecosta ec261bb
middle most tests working
jorgefilipecosta bbc0ae2
one failure
jorgefilipecosta 6a5562c
fix remaning test case
jorgefilipecosta 527bc40
Update tests/phpunit/tests/abilities-api/wpCoreAbilities.php
jorgefilipecosta 20c7ec3
Update src/wp-includes/abilities/wp-core-abilities.php
jorgefilipecosta 9269d56
test fixes different appraoch
jorgefilipecosta 0335699
Fix abilities API tests without test-specific changes
jorgefilipecosta b389659
add ticket mark to new tests
jorgefilipecosta 54b48d6
apply test feedback
jorgefilipecosta 688019f
remove duplicate variable
jorgefilipecosta 1ab6019
remove overprotective unnecessary check
jorgefilipecosta c2d1b92
Add since tag missed on set_up_before_class
jorgefilipecosta a9997d7
make test names match ability names they are testing
jorgefilipecosta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,271 @@ | ||
| <?php | ||
| /** | ||
| * Core Abilities registration. | ||
| * | ||
| * @package WordPress | ||
| * @subpackage Abilities_API | ||
| * @since 6.9.0 | ||
| */ | ||
|
|
||
| declare( strict_types = 1 ); | ||
| /** | ||
| * Registers the core abilities categories. | ||
| * | ||
| * @since 6.9.0 | ||
| * | ||
| * @return void | ||
| */ | ||
| 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 | ||
| * | ||
| * @return void | ||
| */ | ||
| function wp_register_core_abilities(): void { | ||
| $category_site = 'site'; | ||
| $category_user = 'user'; | ||
|
|
||
| $site_info_fields = array( | ||
| 'name', | ||
| 'description', | ||
| 'url', | ||
| 'wpurl', | ||
| 'admin_email', | ||
| 'charset', | ||
| 'language', | ||
| 'version', | ||
| ); | ||
|
|
||
| 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' => 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.' ), | ||
| ), | ||
| ), | ||
| 'additionalProperties' => false, | ||
| ), | ||
| 'execute_callback' => static function ( $input = array() ): array { | ||
| $input = is_array( $input ) ? $input : array(); | ||
| $all_fields = array( 'name', 'description', 'url', 'wpurl', 'admin_email', 'charset', 'language', 'version' ); | ||
| $requested_fields = ! empty( $input['fields'] ) ? $input['fields'] : $all_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, | ||
jorgefilipecosta marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ), | ||
| ) | ||
| ); | ||
|
|
||
| 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.' ), | ||
| 'examples' => array( '8.0.34', '10.11.6-MariaDB' ), | ||
| ), | ||
| '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 ( isset( $wpdb ) && is_object( $wpdb ) && 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, | ||
| ), | ||
| ) | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.