mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
192 lines
6.3 KiB
Text
192 lines
6.3 KiB
Text
[[development-plugin-feature-registration]]
|
|
=== Plugin feature registration
|
|
|
|
If your plugin will be used with {kib}'s default distribution, then you have the ability to register the features that your plugin provides. Features are typically apps in {kib}; once registered, you can toggle them via Spaces, and secure them via Roles when security is enabled.
|
|
|
|
==== UI Capabilities
|
|
|
|
Registering features also gives your plugin access to “UI Capabilities”. These capabilities are boolean flags that you can use to conditionally render your interface, based on the current user's permissions. For example, you can hide or disable a Save button if the current user is not authorized.
|
|
|
|
==== Registering a feature
|
|
|
|
Feature registration is controlled via the built-in `xpack_main` plugin. To register a feature, call `xpack_main`'s `registerFeature` function from your plugin's `init` function, and provide the appropriate details:
|
|
|
|
["source","javascript"]
|
|
-----------
|
|
init(server) {
|
|
const xpackMainPlugin = server.plugins.xpack_main;
|
|
xpackMainPlugin.registerFeature({
|
|
// feature details here.
|
|
});
|
|
}
|
|
-----------
|
|
|
|
===== Feature details
|
|
Registering a feature consists of the following fields. For more information, consult the {repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
|
|
|
|
|
|
[cols="1a, 1a, 1a, 1a"]
|
|
|===
|
|
|Field name |Data type |Example |Description
|
|
|
|
|`id` (required)
|
|
|`string`
|
|
|`"sample_feature"`
|
|
|A unique identifier for your feature. Usually, the ID of your plugin is sufficient.
|
|
|
|
|`name` (required)
|
|
|`string`
|
|
|`"Sample Feature"`
|
|
|A human readable name for your feature.
|
|
|
|
|`app` (required)
|
|
|`string[]`
|
|
|`["sample_app", "kibana"]`
|
|
|An array of applications this feature enables. Typically, all of your plugin's apps (from `uiExports`) will be included here.
|
|
|
|
|`privileges` (required)
|
|
|{repo}blob/{branch}/x-pack/plugins/features/server/feature.ts[`FeatureWithAllOrReadPrivileges`].
|
|
|see examples below
|
|
|The set of privileges this feature requires to function.
|
|
|
|
|`icon`
|
|
|`string`
|
|
|"discoverApp"
|
|
|An https://elastic.github.io/eui/#/display/icons[EUI Icon] to use for this feature.
|
|
|
|
|`navLinkId`
|
|
|`string`
|
|
|"sample_app"
|
|
|The ID of the navigation link associated with your feature.
|
|
|===
|
|
|
|
===== Privilege definition
|
|
The `privileges` section of feature registration allows plugins to implement read/write and read-only modes for their applications.
|
|
|
|
For a full explanation of fields and options, consult the {repo}blob/{branch}/x-pack/plugins/features/server/feature_registry.ts[feature registry interface].
|
|
|
|
==== Using UI Capabilities
|
|
|
|
UI Capabilities are available to your public (client) plugin code. These capabilities are read-only, and are used to inform the UI. This object is namespaced by feature id. For example, if your feature id is “foo”, then your UI Capabilities are stored at `uiCapabilities.foo`.
|
|
To access capabilities, import them from `ui/capabilities`:
|
|
|
|
["source","javascript"]
|
|
-----------
|
|
import { uiCapabilities } from 'ui/capabilities';
|
|
|
|
const canUserSave = uiCapabilities.foo.save;
|
|
if (canUserSave) {
|
|
// show save button
|
|
}
|
|
-----------
|
|
|
|
==== Example 1: Canvas Application
|
|
["source","javascript"]
|
|
-----------
|
|
init(server) {
|
|
const xpackMainPlugin = server.plugins.xpack_main;
|
|
xpackMainPlugin.registerFeature({
|
|
id: 'canvas',
|
|
name: 'Canvas',
|
|
icon: 'canvasApp',
|
|
navLinkId: 'canvas',
|
|
app: ['canvas', 'kibana'],
|
|
catalogue: ['canvas'],
|
|
privileges: {
|
|
all: {
|
|
savedObject: {
|
|
all: ['canvas-workpad'],
|
|
read: ['index-pattern'],
|
|
},
|
|
ui: ['save'],
|
|
},
|
|
read: {
|
|
savedObject: {
|
|
all: [],
|
|
read: ['index-pattern', 'canvas-workpad'],
|
|
},
|
|
ui: [],
|
|
},
|
|
},
|
|
});
|
|
}
|
|
-----------
|
|
|
|
This shows how the Canvas application might register itself as a Kibana feature.
|
|
Note that it specifies different `savedObject` access levels for each privilege:
|
|
|
|
- Users with read/write access (`all` privilege) need to be able to read/write `canvas-workpad` saved objects, and they need read-only access to `index-pattern` saved objects.
|
|
- Users with read-only access (`read` privilege) do not need to have read/write access to any saved objects, but instead get read-only access to `index-pattern` and `canvas-workpad` saved objects.
|
|
|
|
Additionally, Canvas registers the `canvas` UI app and `canvas` catalogue entry. This tells Kibana that these entities are available for users with either the `read` or `all` privilege.
|
|
|
|
The `all` privilege defines a single “save” UI Capability. To access this in the UI, Canvas could:
|
|
|
|
["source","javascript"]
|
|
-----------
|
|
import { uiCapabilities } from 'ui/capabilities';
|
|
|
|
const canUserSave = uiCapabilities.canvas.save;
|
|
if (canUserSave) {
|
|
// show save button
|
|
}
|
|
-----------
|
|
|
|
Because the `read` privilege does not define the `save` capability, users with read-only access will have their `uiCapabilities.canvas.save` flag set to `false`.
|
|
|
|
==== Example 2: Dev Tools
|
|
|
|
["source","javascript"]
|
|
-----------
|
|
init(server) {
|
|
const xpackMainPlugin = server.plugins.xpack_main;
|
|
xpackMainPlugin.registerFeature({
|
|
id: 'dev_tools',
|
|
name: i18n.translate('xpack.features.devToolsFeatureName', {
|
|
defaultMessage: 'Dev Tools',
|
|
}),
|
|
icon: 'devToolsApp',
|
|
navLinkId: 'kibana:dev_tools',
|
|
app: ['kibana'],
|
|
catalogue: ['console', 'searchprofiler', 'grokdebugger'],
|
|
privileges: {
|
|
all: {
|
|
api: ['console'],
|
|
savedObject: {
|
|
all: [],
|
|
read: [],
|
|
},
|
|
ui: ['show'],
|
|
},
|
|
read: {
|
|
api: ['console'],
|
|
savedObject: {
|
|
all: [],
|
|
read: [],
|
|
},
|
|
ui: ['show'],
|
|
},
|
|
},
|
|
privilegesTooltip: i18n.translate('xpack.features.devToolsPrivilegesTooltip', {
|
|
defaultMessage:
|
|
'User should also be granted the appropriate Elasticsearch cluster and index privileges',
|
|
}),
|
|
});
|
|
}
|
|
-----------
|
|
|
|
Unlike the Canvas example above, Dev Tools does not require access to any saved objects to function. Dev Tools does specify an API endpoint, however. When this is configured, the Security plugin will automatically authorize access to any server API route that is tagged with `access:console`, similar to the following:
|
|
|
|
["source","javascript"]
|
|
-----------
|
|
server.route({
|
|
path: '/api/console/proxy',
|
|
method: 'POST',
|
|
config: {
|
|
tags: ['access:console'],
|
|
handler: async (req, h) => {
|
|
// ...
|
|
}
|
|
}
|
|
});
|
|
-----------
|