|
| 1 | +[Back to overview](./README.md) |
| 2 | + |
| 3 | +# Customizing the Available Capabilities |
| 4 | + |
| 5 | +The AI Services comes with several custom user capabilities which are granted to users based on certain existing capabilities by default. This behavior can be modified to fine tune which users on a WordPress site are able to use the AI capabilities. |
| 6 | + |
| 7 | +## Available capabilities |
| 8 | + |
| 9 | +Here is a list of the available user capabilities, what they are for, and how they are granted by default: |
| 10 | + |
| 11 | +* `ais_manage_services`: Base capability which controls which users can access the _Settings > AI Services_ screen and configure AI service credentials. |
| 12 | + * By default, all users with the `manage_options` WordPress Core capability (typically users with the administrator role) are granted this capability. |
| 13 | + * Example check: `current_user_can( 'ais_manage_services' )` |
| 14 | +* `ais_access_services`: Base capability which controls which users can use AI features using any of the configured AI services. |
| 15 | + * By default, all users with the `edit_posts` WordPress Core capability (typically users with the contributor role or higher) are granted this capability. |
| 16 | + * Example check: `current_user_can( 'ais_access_services' )` |
| 17 | +* `ais_access_service`: Meta capability which controls which users can use AI features using a _specific_ configured AI service. |
| 18 | + * By default, any user with the `ais_access_services` base capability will also be granted this meta capability. |
| 19 | + * Example check: `current_user_can( 'ais_access_service', 'google' )` |
| 20 | +* `ais_use_playground`: Meta capability which controls which users can access and use the _Tools > AI Playground_ screen. |
| 21 | + * By default, any user with the `ais_access_services` base capability will also be granted this meta capability. |
| 22 | + * Example check: `current_user_can( 'ais_use_playground' )` |
| 23 | + |
| 24 | +## How to customize the default behavior |
| 25 | + |
| 26 | +The AI Services plugin's `ais_load_services_capabilities` action hook can be used to customize the way that these capabilities are granted by default. It receives an instance of a capability controller class which exposes methods to change the behavior. |
| 27 | + |
| 28 | +Below are some examples of how this action hook could be used: |
| 29 | + |
| 30 | +### Altering which WordPress Core capabilities the plugin capabilities are granted based on |
| 31 | + |
| 32 | +You can alter which WordPress Core capability a user needs to have to be granted one of the plugin's capabilities. For example, you could use the following snippet to "bump" the requirement for accessing AI services to `manage_options` which would mean that (typically) only administrators would be able to access any AI features based on these services. |
| 33 | + |
| 34 | +```php |
| 35 | +add_action( |
| 36 | + 'ais_load_services_capabilities', |
| 37 | + function ( $capability_controller ) { |
| 38 | + $capability_controller->grant_cap_for_base_caps( |
| 39 | + 'ais_access_services', |
| 40 | + array( 'manage_options' ) |
| 41 | + ); |
| 42 | + } |
| 43 | +); |
| 44 | +``` |
| 45 | + |
| 46 | +### Not granting any of the plugin capabilities based on existing WordPress Core capabilities |
| 47 | + |
| 48 | +You can set the required WordPress Core capabilities for all base capabilities of the AI Services plugin to an empty array, to prevent them from being granted based on other capabilities altogether. Note that if you do that you will need to implement another mechanism to grant the capabilities yourself - otherwise no user will be able to use the AI Services plugin. |
| 49 | + |
| 50 | +The following snippet would disable granting the plugin capabilities based on any WordPress Core capabilities: |
| 51 | + |
| 52 | +```php |
| 53 | +add_action( |
| 54 | + 'ais_load_services_capabilities', |
| 55 | + function ( $capability_controller ) { |
| 56 | + $capability_controller->grant_cap_for_base_caps( 'ais_access_services', array() ); |
| 57 | + $capability_controller->grant_cap_for_base_caps( 'ais_manage_services', array() ); |
| 58 | + } |
| 59 | +); |
| 60 | +``` |
| 61 | + |
| 62 | +### Altering for a specific AI service which users can access it |
| 63 | + |
| 64 | +Instead of modifying the required WordPress Core capability to access _all_ AI services, you could also more granularly alter the conditions required to access a _specific_ AI service. This is done by providing a custom callback function to resolve the `ais_access_service` meta capability. |
| 65 | + |
| 66 | +Here is an example which would lead to the `openai` AI service to be only accessible to users with both the `ais_access_services` capability and the `manage_options` capability (typically administrators), while the other AI services would continue to be accessible to anyone with the `ais_access_services` capability. |
| 67 | + |
| 68 | +```php |
| 69 | +add_action( |
| 70 | + 'ais_load_services_capabilities', |
| 71 | + function ( $capability_controller ) { |
| 72 | + $capability_controller->set_meta_map_callback( |
| 73 | + 'ais_access_service', |
| 74 | + function ( int $user_id, string $service_slug ) { |
| 75 | + $required_base_caps = array( 'ais_access_services' ); |
| 76 | + if ( 'openai' === $service_slug ) { |
| 77 | + $required_base_caps[] = 'manage_options'; |
| 78 | + } |
| 79 | + return $required_base_caps; |
| 80 | + } |
| 81 | + ); |
| 82 | + } |
| 83 | +); |
| 84 | +``` |
| 85 | + |
| 86 | +### Disabling access to the AI Playground |
| 87 | + |
| 88 | +Other than customizing which users are granted a certain capability, you can also decide to not grant a capability to any users, effectively disabling the underlying feature. |
| 89 | + |
| 90 | +For example, the following snippet would prevent any user from accessing and using the AI Playground administration screen, by using the special WordPress Core capability `do_not_allow`: |
| 91 | + |
| 92 | +```php |
| 93 | +add_action( |
| 94 | + 'ais_load_services_capabilities', |
| 95 | + function ( $capability_controller ) { |
| 96 | + $capability_controller->set_meta_map_callback( |
| 97 | + 'ais_use_playground', |
| 98 | + function () { |
| 99 | + return array( 'do_not_allow' ); |
| 100 | + } |
| 101 | + ); |
| 102 | + } |
| 103 | +); |
| 104 | +``` |
0 commit comments