Skip to content

Commit a1d972b

Browse files
committed
Add documentation about the available user capabilities and how to customize them.
1 parent a136c1c commit a1d972b

File tree

4 files changed

+111
-0
lines changed

4 files changed

+111
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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+
```

docs/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
* [Accessing AI Services with WP-CLI](./Accessing-AI-Services-with-WP-CLI.md)
77
* [Implementing and Registering a New AI Service](./Implementing-and-Registering-a-New-AI-Service.md)
88
* [Customizing AI Services Model Parameters](Customizing-AI-Services-Model-Parameters.md)
9+
* [Customizing the Available Capabilities](Customizing-the-Available-Capabilities.md)
910
* [Enabling the Assistant Chatbot Feature](./Enabling-the-Assistant-Chatbot-Feature.md)

includes/Services/Services_Loader.php

+2
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,11 @@ function () {
127127
*
128128
* This hook allows you to modify the rules for how these capabilities are granted. The capabilities
129129
* available in the controller are:
130+
*
130131
* - 'ais_manage_services' (base capability)
131132
* - 'ais_access_services' (base capability)
132133
* - 'ais_access_service' (meta capability, called with the specific service slug as parameter)
134+
* - 'ais_use_playground' (meta capability)
133135
*
134136
* @since 0.1.0
135137
*

readme.txt

+4
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,10 @@ add_filter(
241241

242242
The same approach works for any other services too. Simply use the correct service slug, e.g. `openai` for the OpenAI integration and `anthropic` for the Anthropic integration.
243243

244+
= Which user capabilities are available and how can I customize them? =
245+
246+
[Please see the documentation article on customizing the available plugin capabilities.](https://github.com/felixarntz/ai-services/blob/main/docs/Customizing-the-Available-Capabilities.md)
247+
244248
= Should this be in WordPress Core? =
245249

246250
Probably not? At least not yet. While generative AI has been around for a few years, in the grand scheme of things we are still only scratching the surface of what's possible. But most importantly, the lack of standardization makes it difficult to consider built-in AI support in WordPress Core.

0 commit comments

Comments
 (0)