参考标准插件说明
在项目根目录下执行 python manage.py create_atoms_app {CUSTOM PLUGINS NAME}
,其中 {CUSTOM PLUGINS NAME}
为你定制开发的标准插件
集合包名,注意不要和项目中已有的模块和插件集合名字重复,名字最好能体现插件包的作用。执行命令后会生成如下目录结构:
{CUSTOM PLUGINS NAME}
├── __init__.py
├── apps.py
├── components
│ ├── __init__.py
│ └── collections
│ ├── __init__.py
│ └── plugins.py
├── migrations
│ └── __init__.py
├── static
│ └── {CUSTOM PLUGINS NAME}
│ └── plugins.js
└── tests
├── __init__.py
└── components
├── __init__.py
└── collections
├── __init__.py
└── plugins_test
└── __init__.py
其中,components 放置标准插件集合后台代码文件,static 放置标准插件集合前端静态代码文件,plugin.py
和 plugin.js
可以改为你开发的标准
插件对应的系统名简称,如 job、cmdb 等。
打开 config/default.py
文件,找到INSTALLED_APPS变量,加入步骤1中创建的 {CUSTOM PLUGINS NAME}
。
如果你开发的标准插件依赖自定义接入的 API 网关,那么在你将接口接入蓝鲸API网关后,需要手动将 API 添加到 Client SDK 中。
在 {CUSTOM PLUGINS NAME}/__init__.py
文件下编写相应的代码即可向 Client 中添加对应的接口:
from packages.blueking.component import collections
from packages.blueking.component.base import ComponentAPI
from packages.blueking.component.client import ComponentClient
class CollectionsMySystem(object):
def __init__(self, client):
self.client = client
self.get_status = ComponentAPI(
client=self.client, method='GET',
path='/api/c/compapi{bk_api_ver}/my_system/status/',
description=u"查询状态"
)
self.set_status = ComponentAPI(
client=self.client, method='POST',
path='/api/c/compapi{bk_api_ver}/my_system/status/',
description=u"设置状态"
)
collections.AVAILABLE_COLLECTIONS.update({
'my_system': CollectionsMySystem
})
ComponentClient.setup_components(collections.AVAILABLE_COLLECTIONS)
上面面的例子中为 Client 添加了一个名为 my_system
的系统,并且为该系统中添加了 get_status
和 set_status
两个接口。
在项目根目录下运行命令
python manage.py create_new_plugin {group_code} {plugin_code} {version} {plugin_env} {app_code} {append}
其中
- group_code为插件所属的系列(如:cc,tgw,gcs)
- plugin_code为插件的code(如:create_set)
- version为插件的版本(如:v1.0)
- plugin_env为插件的类型(如:open,ieod)
- app_code为插件所在app的code(如:pipeline_plugins)
- append为插件所在目录后缀(如:pipeline_plugins/components/collections/sites 中的 sites, 可为空)
eg.
python manage.py create_new_plugin cc create_set v1.0 open pipeline_plugins sites
即创建CC系列插件create_set,版本号为v1.0,属于开源版插件
在 plugin.py
文件中编写插件后台逻辑,主要包括标准插件定义和后台执行逻辑,下面是示例代码
# -*- coding: utf-8 -*-
import logging
from django.utils.translation import ugettext_lazy as _
from pipeline.core.flow.activity import Service
from pipeline.component_framework.component import Component
from gcloud.conf import settings
logger = logging.getLogger('celery')
get_client_by_user = settings.ESB_GET_CLIENT_BY_USER
__group_name__ = _(u"自定义插件(CUSTOM)")
class TestCustomService(Service):
__need_schedule__ = False
def execute_pre_process(self, data, parent_data):
test_input = data.inputs.test_input
if not test_input.startswith("test_"):
message = "test_input should start with 'test_'"
data.set_outputs('ex_data', message)
return False
return True
def execute(self, data, parent_data):
executor = parent_data.inputs.executor
biz_cc_id = parent_data.inputs.biz_cc_id
client = get_client_by_user(executor)
test_input = data.inputs.test_input
test_textarea = data.inputs.test_textarea
test_radio = data.inputs.test_radio
api_kwargs = {
'biz_biz_id': biz_cc_id,
'executor': executor,
'test_input': test_input,
'test_textarea': test_textarea,
'test_radio': test_radio,
}
api_result = client.test_api.test1(api_kwargs)
logger.info('test_api result: {result}, api_kwargs: {kwargs}'.format(result=api_result, kwargs=api_kwargs))
if api_result['result']:
data.set_outputs('data1', api_result['data']['data1'])
return True
else:
data.set_outputs('ex_data', api_result['message'])
return False
def outputs_format(self):
return [
self.OutputItem(name=_(u'结果数据1'), key='data1', type='string')
]
class TestCustomComponent(Component):
name = _(u"自定义插件测试")
code = 'test_custom'
bound_service = TestCustomService
form = '%scustom_plugins/plugin.js' % settings.STATIC_URL
version = '1.1.0'
其中各属性和类含义为:
__group_name__
: 标准插件所属分类(一般是对应 API 的系统简称,如配置平台(CMDB)。class TestCustomService(Service)
:标准插件后台执行逻辑。class TestCustomComponent(Component)
:标准插件定义,前后端服务绑定。
TestCustomService 类详解:
__need_schedule__
:是否是异步标准插件(包括异步轮询和异步回调),默认为 False。interval
:异步标准插件的轮询策略。def execute_pre_process
:标准插件执行前预处理逻辑,可进行插件输入数据预处理和校验,返回True/False,代表预处理结果,为False则不会调用execute函数。def execute
:标准插件执行逻辑,包含前端参数获取、API 参数组装、结果解析、结果输出。def schedule
:异步标准插件的轮询或者回调逻辑,同步标准插件不需要定义该方法。def outputs_format
:输出参数定义。def inputs_format
:输入参数定义。
execute_pre_process 函数详解:
- 可以是任何 python 代码,对插件数据进行校验和预处理,返回预处理结果。可以不实现,默认返回True。
- data 是标准插件输入输出参数数据对象,输入参数对应于前端的表单,可以用
data.inputs.xxx
或者data.get_one_of_inputs('xxx')
获取 某一个参数;执行完成可以使用data.set_outputs
写入输出参数,异常信息请赋值给ex_data
。 parent_data
是任务的公共参数,包括 executor(执行者),operator(操作员),biz_cc_id(所属业务 ID)等。详细信息请查看gcloud/taskflow3/utils.py
。- 返回
False
表示预处理或校验失败,会直接返回插件运行失败结果和异常信息,不会执行execute
及schedule
函数; 返回True
表示预处理或校验成功,会正常执行execute
函数。
execute 函数详解:
- 可以是任何 python 代码,如果需要调用蓝鲸API网关接口,一般分为参数组装、API 调用、结果解析。
- data 是标准插件输入输出参数数据对象,输入参数对应于前端的表单,可以用
data.inputs.xxx
或者data.get_one_of_inputs('xxx')
获取 某一个参数;执行完成可以使用data.set_outputs
写入输出参数,异常信息请赋值给ex_data
。 parent_data
是任务的公共参数,包括 executor(执行者),operator(操作员),biz_cc_id(所属业务 ID)等。详细信息请查看gcloud/taskflow3/utils.py
。- 返回
False
表示执行失败,同步标准插件返回True
表示标准插件执行成功,异步标准插件返回True
会进入休眠,等待第一次异步轮询或者外部 回调,执行schedule
函数。
outputs_format 函数详解:
- 返回输出参数的列表。
- 列表格式的每一项定义一个返回字段,是
execute
函数中的set_outputs
输出的字段的子集;key
表示输出字段标识,name
表示输出 字段含义,type
表示输出字段类型(str
、int
等python
数据结构)。
inputs_format 函数详解:
- 返回输入参数的列表。
- 该方法对输入参数进行说明,不影响代码执行。
schedule 函数详解:
- 由
TestCustomService
类的interval
属性控制调度策略,如pipeline.core.flow.activity.StaticIntervalGenerator
(每隔 多少秒轮询一次)、SquareIntervalGenerator
(每次轮询间隔时间是当前已调度次数的平方)。 - 使用
self.finish_schedule
结束轮询,返回True
表示标准插件执行成功,False
表示执行失败。
TestCustomComponent 类详解:
name
:标准插件名称。code
:标准插件唯一编码,请保持code
和version
全局联合唯一。bound_service
:绑定后台服务TestCustomService
。form
:前端表单文件路径,请加上settings.STATIC_URL
前缀。version
:插件版本号字符串,用于对code
相同的插件进行版本管理,
有时候我们需要对某个插件进行升级操作,例如为表单添加新的字段,为后台逻辑添加新的功能,那么这个时候就需要修改现有插件的逻辑;但是用户存量流程和任务使用到了这个插件,直接修改插件的代码可能会导致存量流程和任务不可用,所以正确的做法应该是为这个插件增加一个新的版本。
通过设置 Component 的 version
类属性,我们能够将 code
相同的插件设置成不同版本,以保证插件的功能升级不会影响用户的正常使用,用户只需要在合适的时候将旧的插件升级到新版本即可。
重要:对于没有声明 version
参数的插件,请不要擅自为其添加 version
字段,否则系统会将其视为新的插件,可能会导致现有模板和任务不可用。
version 字段的命名没有强制的限制,但最好采用人类可读的方式以及可管理的方式进行命名。
在 plugin.js
文件中编写前端逻辑,利用标准运维的前端插件框架,只需要配置就能生成前端表单,下面是示例代码
(function(){
$.atoms.test_custom = [
{
tag_code: "test_input",
type: "input",
attrs: {
name: gettext("参数1"),
placeholder: gettext("请输入字符串"),
hookable: true,
validation: [
{
type: "required"
}
]
}
},
{
tag_code: "test_textarea",
type: "textarea",
attrs: {
name: gettext("参数2"),
placeholder: gettext("多个用换行分隔"),
hookable: true,
validation: [
{
type: "required"
}
]
}
},
{
tag_code: "test_radio",
type: "radio",
attrs: {
name: gettext("参数3"),
items: [
{value: "1", name: gettext("选项1")},
{value: "2", name: gettext("选项2")},
{value: "3", name: gettext("选项3")}
],
default: "1",
hookable: true,
validation: [
{
type: "required"
}
]
}
}
]
})();
通过 $.atoms 注册标准插件前端配置,其中各项含义是:
test_custom
:标准插件后台定义的 code。tag_code
:参数 code,请保持全局唯一,命名规范为"系统名_参数名"。type
:前端表单类型,可选 input、textarea、radio、checkbox、select、datetime、datatable、upload、combine等。attrs
:对应type的属性设置,如 name、validation等。
另外,标准插件前端配置支持继承其他标准插件的表单配置项,需要定义以下属性:
extend
:继承其他标准插件表单项,格式Base.TagA.TagB...
,Base
为其他标准插件名称,Tag
为插件表单项tag_code
属性值,如果只定义Base
值则继承该标准插件的所有表单项。config
: 覆盖所继承的标准插件表单项配置,非必需属性,数据类型需要和所继承的配置项数据类型保持一致。如果所继承配置为对象类型,config 对象的 tag_code 需要设置为继承对象的 tag_code 值,两者对象属性取并集,存在相同属性时,config 对象属性值会覆盖继承对象属性值;所继承配置为数组类型,比如只定义Base
的场景,config 需要为数组类型,数组内的表单配置项元素会与继承配置合并,tag_code 相同的配置项覆盖规则和对象类型保持一致。
标准插件前端继承的例子:
// base.js
(function () {
$.atoms.base_custom = [
{
tag_code: "test_input",
type: "input",
attrs: {
name: gettext("参数1"),
placeholder: gettext("请输入字符串"),
hookable: true,
validation: [
{
type: "required"
}
]
}
}
]
})()
// test_custom.js
(function () {
$.atoms.test_custom = [
{
extend: "base.test_input",
config: {
tag_code: "test_input",
type: "textarea"
}
},
{
tag_code: "test_radio",
type: "radio",
attrs: {
name: gettext("参数3"),
items: [
{value: "1", name: gettext("选项1")},
{value: "2", name: gettext("选项2")},
{value: "3", name: gettext("选项3")}
],
default: "1",
hookable: true,
validation: [
{
type: "required"
}
]
}
}
]
})()
// 继承生效后的 test_custom.js
(function () {
$.atoms.test_custom = [
{
tag_code: "test_input",
type: "text", // type 属性被覆盖
attrs: {
name: gettext("参数1"),
placeholder: gettext("请输入字符串"),
hookable: true,
validation: [
{
type: "required"
}
]
}
}
{
tag_code: "test_radio",
type: "radio",
attrs: {
name: gettext("参数3"),
items: [
{value: "1", name: gettext("选项1")},
{value: "2", name: gettext("选项2")},
{value: "3", name: gettext("选项3")}
],
default: "1",
hookable: true,
validation: [
{
type: "required"
}
]
}
}
]
})()
详细字段说明可参考:Tag 使用和开发说明。
标准运维支持从系统外部加载标准插件,但是,对于编写的插件有以下要求(如果你编写的插件不需要进行远程加载,可以跳过此章节):
- 需要声明插件所需的系统中不存在的 python 第三方组件库
- 插件表单需要使用嵌入的方式
若你编写的插件需要依赖标准运维运行时不存在的 python 第三方插件,则需要在 {CUSTOM PLUGINS NAME}/__init__.py
中
添加 __requirements__
变量并声明所需要的组件及版本号:
# {CUSTOM PLUGINS NAME}/__init__.py
__requirements__ = [
"flask==x.x.x", # 特定版本号
"mako", # 不限制版本号
]
远程加载的插件目前不支持从静态文件中读取插件的前端表单,所以需要用嵌入的方式将表单添加到插件的后台定义中:
- 在 Component 类中添加
embedded_form
属性并设置为True
- 在 Component 类中添加
form
属性并将其值设置为表单的定义
下面的例子展示了在 4,5 小节中定义的插件的内嵌式表单声明的方式:
class TestCustomComponent(Component):
name = _(u"自定义插件测试")
code = 'test_custom'
bound_service = TestCustomService
embedded_form = True # 内嵌式表单声明
# 表单定义
form = """
(function(){
$.atoms.test_custom = [
{
tag_code: "test_input",
type: "input",
attrs: {
name: gettext("参数1"),
placeholder: gettext("请输入字符串"),
hookable: true,
validation: [
{
type: "required"
}
]
}
},
{
tag_code: "test_textarea",
type: "textarea",
attrs: {
name: gettext("参数2"),
placeholder: gettext("多个用换行分隔"),
hookable: true,
validation: [
{
type: "required"
}
]
}
},
{
tag_code: "test_radio",
type: "radio",
attrs: {
name: gettext("参数3"),
items: [
{value: "1", name: gettext("选项1")},
{value: "2", name: gettext("选项2")},
{value: "3", name: gettext("选项3")}
],
default: "1",
hookable: true,
validation: [
{
type: "required"
}
]
}
}
]
})();
"""
在我们完成自定义组件的开发后,我们需要测试组件是否能够按照我们预期的那样运行。最简单的方式就是构造一个包含该节点的流程然后把流程跑起来 观察其行为和输出是否符合预期。但是这种测试方式十分耗时而且是一次性的,下次若是修改了节点后需要再进行一遍相同的操作。
为了解决这个问题,框架内部提供了组件测试单元测试框架,框架会模拟组件在流程中执行的场景,并根据开发者编写的测试用例来执行组件并检测组件 的行为是否符合预期。借助组件单元测试框架能够节省我们测试组件的时间,并且保证组件实现在发生变化后能够快速确认改动是否影响了组件的功能。
标准插件的单元测试需要在 {CUSTOM PLUGINS NAME}/tests
下根据插件后台定义文件创建子目录路径一致的测试文件并编写测试代码。例如
针对 {CUSTOM PLUGINS NAME}/components/collections/plugins.py
中编写的插件,
应该在 {CUSTOM PLUGINS NAME}/tests/components/collections/plugins_test
目录下为每个插件创建对应的文件并编写单元测试。
另外,测试文件名应该为 test_{code}.py
,{code}
为插件的唯一编码。
单元测试编写指引请参考:标准插件单元测试编写。
开发完成后,先在根目录下执行 python manage.py collectstatic –noinput
收集静态资源。
然后新建流程模板,并添加标准插件节点,标准插件类型选择新开发的标准插件,确保展示的输入参数和前端配置项一致,输出参数和后台
outputs_format 一致,其中执行结果是系统默认,值是 True
或 False
,表示节点执行结果是成功还是失败。
然后使用新建的流程创建任务,填写参数并执行,执行后查看结果是否符合预期,可以结合日志更准确的评估执行结果。
- 分组命名规则是“系统名(系统英文缩写)”,如“作业平台(JOB)”。
- 标准插件编码(code)使用下划线方式,规则是“系统名_接口名”,如 job_execute_task。
- 后台类名使用驼峰式,规则是“标准插件编码+继承类名”,如 JobExecuteTaskService。
- 前端 JS 文件目录保持和系统名缩写一致,JS 文件名保持和标准插件编码一致。
- 参数 tag_code 命名规则是“系统名_参数名”,这样可以保证全局唯一;长度不要超过 20 个字符。
- 后台和前端中的中文都要使用翻译函数,以便可以国际化。