nocobase/docs/en-US/api/resourcer/index.md

286 lines
6.4 KiB
Markdown
Raw Normal View History

# Resourcer
2023-02-03 09:55:40 +00:00
## Overview
2022-11-13 15:00:59 +00:00
2023-02-03 09:55:40 +00:00
The interfaces in NocoBase follow a resource-oriented design pattern. Resourcer is mainly used to manage API resources and routes.
2022-11-13 15:00:59 +00:00
```javascript
const Koa = require('koa');
const { Resourcer } = require('@nocobase/resourcer');
const resourcer = new Resourcer();
2023-02-03 09:55:40 +00:00
// Define a resourcer
2022-11-13 15:00:59 +00:00
resourcer.define({
name: 'users',
actions: {
async list(ctx) {
ctx.body = [
{
name: "u1",
age: 18
},
{
name: "u2",
age: 20
}
]
}
},
});
const app = new Koa();
2023-02-03 09:55:40 +00:00
// Use the resourcer in instance koa
2022-11-13 15:00:59 +00:00
app.use(
resourcer.middleware({
2023-02-03 09:55:40 +00:00
prefix: '/api', // Route prefix of resourcer
2022-11-13 15:00:59 +00:00
}),
);
app.listen(3000);
```
2023-02-03 09:55:40 +00:00
After starting the service, make request using `curl`:
2022-11-13 15:00:59 +00:00
```bash
>$ curl localhost:3000/api/users
[{"name":"u1","age":18},{"name":"u2","age":20}]
```
2022-11-13 15:00:59 +00:00
2023-02-03 09:55:40 +00:00
More instructions of Resourcer can be found in [Resources and Actions](/development/guide/resources-actions). Resourcer is built into [NocoBase Application](/api/server/application#resourcer), you can access it through `app.resourcer`.
2023-02-03 09:55:40 +00:00
## Constructor
2023-02-03 09:55:40 +00:00
To create resourcer manager instances.
2023-02-03 09:55:40 +00:00
**Signature**
* `constructor(options: ResourcerOptions)`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
2023-02-03 09:55:40 +00:00
| `prefix` | `string` | - | Route prefix |
2023-02-05 04:36:42 +00:00
| `accessors` | `Object` | _The following values of members_ | Name identifier of the default operation method |
| `accessors.list` | `string` | `'list'` | Name identifier of the list operation method |
| `accessors.get` | `string` | `'get'` | Name identifier of the get operation method |
| `accessors.create` | `string` | `'create'` | Name identifier of the create operation method |
| `accessors.update` | `string` | `'update'` | Name identifier of the update operation method |
| `accessors.delete` | `string` | `'destroy'` | Name identifier of the delete operation method |
| `accessors.add` | `string` | `'add'` | Name identifier of the add association operation method |
| `accessors.remove` | `string` | `'remove'` | Name identifier of the remove association operation method |
| `accessors.set` | `string` | `'set'` | Name identifier of the global set association operation method |
2023-02-03 09:55:40 +00:00
**Example**
2023-02-05 04:36:42 +00:00
Pass in through the `resourcer` option when creating app:
```ts
const app = new Application({
2023-02-05 04:36:42 +00:00
// Correspond to the configuration item of the default resourcer instance
resourcer: {
prefix: process.env.API_BASE_PATH
}
});
```
2023-02-05 04:36:42 +00:00
## Instance Methods
### `define()`
定义并向资源管理器注册一个资源对象。通常代替 `Resource` 类的构造函数使用。
2023-02-03 09:55:40 +00:00
**Signature**
* `define(options: ResourceOptions): Resource`
2023-02-03 09:55:40 +00:00
**Parameter**
详见 [Resource 构造函数](/api/server/resourcer/resource#构造函数)。
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.define({
name: 'books',
actions: {
// 扩展的 action
publish(ctx, next) {
ctx.body = 'ok';
}
}
});
```
### `isDefined()`
检查对应名称的资源是否已被注册。
2023-02-03 09:55:40 +00:00
**Signature**
* `isDefined(name: string): boolean`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `name` | `string` | - | 资源名称 |
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.isDefined('books'); // true
```
### `registerAction()`
向资源管理器注册一个操作,可以指定针对特定的资源,如不指定资源名称,则认为是针对全局所有资源都可访问的操作。
2023-02-03 09:55:40 +00:00
**Signature**
* `registerAction(name: string, handler: HandlerType): void`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `name` | `string` | - | 操作名称 |
| `handler` | `HandlerType` | - | 操作处理函数 |
`name` 的值如果以 `<resourceName>:` 开头则代表仅针对 `<resourceName>` 资源可访问,否则认为是全局操作。
2023-02-03 09:55:40 +00:00
**Example**
```ts
// 注册后任意资源都可以进行 upload 操作
app.resourcer.registerAction('upload', async (ctx, next) => {
ctx.body = 'ok';
});
// 仅针对 attachments 资源注册 upload 操作
app.resourcer.registerAction('attachments:upload', async (ctx, next) => {
ctx.body = 'ok';
});
```
### `registerActions()`
向资源管理器注册多个操作的集合方法。
2023-02-03 09:55:40 +00:00
**Signature**
* `registerActions(actions: { [name: string]: HandlerType }): void`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `actions` | `{ [name: string]: HandlerType }` | - | 操作集合 |
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.registerActions({
upload: async (ctx, next) => {
ctx.body = 'ok';
},
'attachments:upload': async (ctx, next) => {
ctx.body = 'ok';
}
});
```
### `getResource()`
获取对应名称的资源对象。
2023-02-03 09:55:40 +00:00
**Signature**
* `getResource(name: string): Resource`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `name` | `string` | - | 资源名称 |
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.getResource('books');
```
### `getAction()`
获取对应名称的操作处理函数。
2023-02-03 09:55:40 +00:00
**Signature**
* `getAction(name: string): HandlerType`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `name` | `string` | - | 操作名称 |
`name` 的值如果以 `<resourceName>:` 开头则代表仅针对 `<resourceName>` 资源的操作,否则认为是全局操作。
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.getAction('upload');
app.resourcer.getAction('attachments:upload');
```
### `use()`
以 Koa 的形式注册一个中间件,中间件形成一个队列,并排在所有资源的操作处理函数之前执行。
2023-02-03 09:55:40 +00:00
**Signature**
* `use(middleware: Middleware | Middleware[]): void`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `middleware` | `Middleware \| Middleware[]` | - | 中间件 |
2023-02-03 09:55:40 +00:00
**Example**
```ts
app.resourcer.use(async (ctx, next) => {
console.log(ctx.req.url);
await next();
});
```
### `middleware()`
生成一个兼容 Koa 的中间件,用于将资源的路由处理注入到应用中。
2023-02-03 09:55:40 +00:00
**Signature**
* `middleware(options: KoaMiddlewareOptions): KoaMiddleware`
2023-02-03 09:55:40 +00:00
**Parameter**
2023-02-03 09:55:40 +00:00
| Name | Type | Default | Description |
| --- | --- | --- | --- |
| `options.prefix?` | `string` | `''` | 路径前缀。 |
| `options.accessors?` | `Object` | `{}` | 常用方法的名称映射,与构造函数的 `accessors` 参数结构相同。 |
2023-02-03 09:55:40 +00:00
**Example**
```ts
const koa = new Koa();
const resourcer = new Resourcer();
// 生成兼容 Koa 的中间件
koa.use(resourcer.middleware());
```