Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdst
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdst
提交
990a279b
提交
990a279b
编写于
12月 16, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hebao1234 发布系统代码 [ibz-dst,应用]
上级
b18fc8c5
变更
11
显示空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
233 行增加
和
2 行删除
+233
-2
rule-engine_en_US_base.ts
...ale/lanres/entities/rule-engine/rule-engine_en_US_base.ts
+4
-0
rule-engine_zh_CN_base.ts
...ale/lanres/entities/rule-engine/rule-engine_zh_CN_base.ts
+4
-0
rule-engines.ts
app_web/src/mock/entity/rule-engines/rule-engines.ts
+38
-0
rule-engine-edit-view-base.vue
...rule/rule-engine-edit-view/rule-engine-edit-view-base.vue
+41
-0
rule-engine-service-base.ts
app_web/src/service/rule-engine/rule-engine-service-base.ts
+28
-0
rule-engine-ui-service-base.ts
.../src/uiservice/rule-engine/rule-engine-ui-service-base.ts
+81
-0
IRuleEngineService.java
...java/cn/ibizlab/core/rule/service/IRuleEngineService.java
+2
-0
RuleEngineServiceImpl.java
...ibizlab/core/rule/service/impl/RuleEngineServiceImpl.java
+16
-0
h2_table.xml
ibzdst-core/src/main/resources/liquibase/h2_table.xml
+1
-1
systemResource.json
...st-core/src/main/resources/permission/systemResource.json
+1
-1
RuleEngineResource.java
...src/main/java/cn/ibizlab/api/rest/RuleEngineResource.java
+17
-0
未找到文件。
app_web/src/locale/lanres/entities/rule-engine/rule-engine_en_US_base.ts
浏览文件 @
990a279b
...
...
@@ -132,6 +132,10 @@ function getLocaleResourceBase(){
caption
:
commonLogic
.
appcommonhandle
(
"运行"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
"运行"
,
null
),
},
tbitem1_check
:
{
caption
:
commonLogic
.
appcommonhandle
(
"校验"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
"校验"
,
null
),
},
tbitem2
:
{
caption
:
commonLogic
.
appcommonhandle
(
"-"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
""
,
null
),
...
...
app_web/src/locale/lanres/entities/rule-engine/rule-engine_zh_CN_base.ts
浏览文件 @
990a279b
...
...
@@ -132,6 +132,10 @@ function getLocaleResourceBase(){
caption
:
commonLogic
.
appcommonhandle
(
"运行"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
"运行"
,
null
),
},
tbitem1_check
:
{
caption
:
commonLogic
.
appcommonhandle
(
"校验"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
"校验"
,
null
),
},
tbitem2
:
{
caption
:
commonLogic
.
appcommonhandle
(
"-"
,
null
),
tip
:
commonLogic
.
appcommonhandle
(
""
,
null
),
...
...
app_web/src/mock/entity/rule-engines/rule-engines.ts
浏览文件 @
990a279b
...
...
@@ -195,6 +195,44 @@ mock.onGet(new RegExp(/^\/ruleengines\/getdraft$/)).reply((config: any) => {
return
[
status
,
{}];
});
// Check
mock
.
onPost
(
new
RegExp
(
/^
\/
ruleengines
\/?([
a-zA-Z0-9
\-\;]{0,35})\/
check$/
)).
reply
((
config
:
any
)
=>
{
console
.
groupCollapsed
(
"实体:ruleengine 方法: Check"
);
console
.
table
({
url
:
config
.
url
,
method
:
config
.
method
,
data
:
config
.
data
});
let
status
=
MockAdapter
.
mockStatus
(
config
);
if
(
status
!==
200
)
{
return
[
status
,
null
];
}
const
paramArray
:
Array
<
any
>
=
[
'engine_id'
];
const
matchArray
:
any
=
new
RegExp
(
/^
\/
ruleengines
\/([
a-zA-Z0-9
\-\;]{1,35})\/
check$/
).
exec
(
config
.
url
);
let
tempValue
:
any
=
{};
if
(
matchArray
&&
matchArray
.
length
>
1
&&
paramArray
&&
paramArray
.
length
>
0
){
paramArray
.
forEach
((
item
:
any
,
index
:
number
)
=>
{
Object
.
defineProperty
(
tempValue
,
item
,
{
enumerable
:
true
,
value
:
matchArray
[
index
+
1
]
});
});
}
//let items = mockDatas ? mockDatas : [];
//let _items = items.find((item: any) => Object.is(item.engine_id, tempValue.engine_id));
let
data
=
JSON
.
parse
(
config
.
data
);
mockDatas
.
forEach
((
item
)
=>
{
if
(
item
[
'engine_id'
]
==
tempValue
[
'engine_id'
]
){
for
(
let
value
in
data
){
if
(
item
.
hasOwnProperty
(
value
)){
item
[
value
]
=
data
[
value
];
}
}
}
})
console
.
groupCollapsed
(
"response数据 status: "
+
status
+
" data: "
);
console
.
table
(
data
);
console
.
groupEnd
();
console
.
groupEnd
();
return
[
status
,
data
];
});
// CheckKey
mock
.
onPost
(
new
RegExp
(
/^
\/
ruleengines
\/?([
a-zA-Z0-9
\-\;]{0,35})\/
checkkey$/
)).
reply
((
config
:
any
)
=>
{
console
.
groupCollapsed
(
"实体:ruleengine 方法: CheckKey"
);
...
...
app_web/src/pages/rule/rule-engine-edit-view/rule-engine-edit-view-base.vue
浏览文件 @
990a279b
...
...
@@ -13,6 +13,13 @@
</i-button>
<div
slot=
'content'
>
{{
$t
(
'entities.ruleengine.editviewtoolbar_toolbar.tbitem1_run.tip'
)
}}
</div>
</tooltip>
<tooltip
:transfer=
"true"
:max-width=
"600"
>
<i-button
v-show=
"toolBarModels.tbitem1_check.visabled"
:disabled=
"toolBarModels.tbitem1_check.disabled"
class=
''
v-loading:i-button
@
click=
"toolbar_click(
{ tag: 'tbitem1_check' }, $event)">
<i
class=
''
></i>
<span
class=
'caption'
>
{{
$t
(
'entities.ruleengine.editviewtoolbar_toolbar.tbitem1_check.caption'
)
}}
</span>
</i-button>
<div
slot=
'content'
>
{{
$t
(
'entities.ruleengine.editviewtoolbar_toolbar.tbitem1_check.tip'
)
}}
</div>
</tooltip>
<span
class=
'seperator'
>
|
</span>
<tooltip
:transfer=
"true"
:max-width=
"600"
>
<i-button
v-show=
"toolBarModels.tbitem3.visabled"
:disabled=
"toolBarModels.tbitem3.disabled"
class=
''
v-loading:i-button
@
click=
"toolbar_click(
{ tag: 'tbitem3' }, $event)">
...
...
@@ -388,6 +395,8 @@ export default class RuleEngineEditViewBase extends Vue {
public
toolBarModels
:
any
=
{
tbitem1_run
:
{
name
:
'tbitem1_run'
,
actiontarget
:
'NONE'
,
caption
:
'运行'
,
disabled
:
false
,
type
:
'DEUIACTION'
,
visabled
:
true
,
noprivdisplaymode
:
2
,
dataaccaction
:
''
,
uiaction
:
{
tag
:
'run'
,
target
:
'SINGLEKEY'
}
},
tbitem1_check
:
{
name
:
'tbitem1_check'
,
actiontarget
:
'NONE'
,
caption
:
'校验'
,
disabled
:
false
,
type
:
'DEUIACTION'
,
visabled
:
true
,
noprivdisplaymode
:
2
,
dataaccaction
:
''
,
uiaction
:
{
tag
:
'Check'
,
target
:
'SINGLEKEY'
}
},
tbitem2
:
{
name
:
'tbitem2'
,
type
:
'SEPERATOR'
,
visabled
:
true
,
dataaccaction
:
''
,
uiaction
:
{
}
},
tbitem3
:
{
name
:
'tbitem3'
,
actiontarget
:
'NONE'
,
caption
:
'保存'
,
disabled
:
false
,
type
:
'DEUIACTION'
,
visabled
:
true
,
noprivdisplaymode
:
2
,
dataaccaction
:
''
,
uiaction
:
{
tag
:
'Save'
,
target
:
''
}
},
...
...
@@ -752,6 +761,9 @@ export default class RuleEngineEditViewBase extends Vue {
if
(
Object
.
is
(
$event
.
tag
,
'tbitem1_run'
))
{
this
.
toolbar_tbitem1_run_click
(
null
,
''
,
$event2
);
}
if
(
Object
.
is
(
$event
.
tag
,
'tbitem1_check'
))
{
this
.
toolbar_tbitem1_check_click
(
null
,
''
,
$event2
);
}
if
(
Object
.
is
(
$event
.
tag
,
'tbitem3'
))
{
this
.
toolbar_tbitem3_click
(
null
,
''
,
$event2
);
}
...
...
@@ -863,6 +875,35 @@ export default class RuleEngineEditViewBase extends Vue {
curUIService
.
RuleEngine_run
(
datas
,
contextJO
,
paramJO
,
$event
,
xData
,
this
,
"RuleEngine"
);
}
/**
* 逻辑事件
*
* @param {*} [params={}]
* @param {*} [tag]
* @param {*} [$event]
* @memberof
*/
public
toolbar_tbitem1_check_click
(
params
:
any
=
{},
tag
?:
any
,
$event
?:
any
)
{
// 参数
// 取数
let
datas
:
any
[]
=
[];
let
xData
:
any
=
null
;
// _this 指向容器对象
const
_this
:
any
=
this
;
let
paramJO
:
any
=
{};
let
contextJO
:
any
=
{};
xData
=
this
.
$refs
.
form
;
if
(
xData
.
getDatas
&&
xData
.
getDatas
instanceof
Function
)
{
datas
=
[...
xData
.
getDatas
()];
}
if
(
params
){
datas
=
[
params
];
}
// 界面行为
const
curUIService
:
RuleEngineUIService
=
new
RuleEngineUIService
();
curUIService
.
RuleEngine_Check
(
datas
,
contextJO
,
paramJO
,
$event
,
xData
,
this
,
"RuleEngine"
);
}
/**
* 逻辑事件
*
...
...
app_web/src/service/rule-engine/rule-engine-service-base.ts
浏览文件 @
990a279b
...
...
@@ -139,6 +139,34 @@ export default class RuleEngineServiceBase extends EntityService {
return
res
;
}
/**
* Check接口方法
*
* @param {*} [context={}]
* @param {*} [data={}]
* @param {boolean} [isloading]
* @returns {Promise<any>}
* @memberof RuleEngineServiceBase
*/
public
async
Check
(
context
:
any
=
{},
data
:
any
=
{},
isloading
?:
boolean
):
Promise
<
any
>
{
let
res
:
any
=
Http
.
getInstance
().
post
(
`/ruleengines/
${
context
.
ruleengine
}
/check`
,
data
,
isloading
);
return
res
;
}
/**
* CheckBatch接口方法
*
* @param {*} [context={}]
* @param {*} [data={}]
* @param {boolean} [isloading]
* @returns {Promise<any>}
* @memberof RuleEngineServiceBase
*/
public
async
CheckBatch
(
context
:
any
=
{},
data
:
any
=
{},
isloading
?:
boolean
):
Promise
<
any
>
{
let
tempData
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
data
));
return
await
Http
.
getInstance
().
post
(
`/ruleengine/checkbatch`
,
tempData
,
isloading
);
}
/**
* CheckKey接口方法
*
...
...
app_web/src/uiservice/rule-engine/rule-engine-ui-service-base.ts
浏览文件 @
990a279b
...
...
@@ -116,6 +116,87 @@ export default class RuleEngineUIServiceBase extends UIService {
public
initDeMainStateOPPrivsMap
(){
}
/**
* 校验
*
* @param {any[]} args 当前数据
* @param {any} context 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
*/
public
async
RuleEngine_Check
(
args
:
any
[],
context
:
any
=
{},
params
:
any
=
{},
$event
?:
any
,
xData
?:
any
,
actionContext
?:
any
,
srfParentDeName
?:
string
){
let
data
:
any
=
{};
let
parentContext
:
any
=
{};
let
parentViewParam
:
any
=
{};
const
_this
:
any
=
actionContext
;
const
_args
:
any
[]
=
Util
.
deepCopy
(
args
);
const
actionTarget
:
string
|
null
=
'SINGLEKEY'
;
Object
.
assign
(
context
,
{
ruleengine
:
'%ruleengine%'
});
Object
.
assign
(
params
,
{
engine_id
:
'%ruleengine%'
});
Object
.
assign
(
params
,
{
engine_name
:
'%engine_name%'
});
if
(
_this
.
context
){
parentContext
=
_this
.
context
;
}
if
(
_this
.
viewparams
){
parentViewParam
=
_this
.
viewparams
;
}
context
=
UIActionTool
.
handleContextParam
(
actionTarget
,
_args
,
parentContext
,
parentViewParam
,
context
);
data
=
UIActionTool
.
handleActionParam
(
actionTarget
,
_args
,
parentContext
,
parentViewParam
,
params
);
if
(
Object
.
is
(
actionTarget
,
"MULTIKEY"
)){
let
tempDataArray
:
Array
<
any
>
=
[];
if
((
_args
.
length
>
1
)
&&
(
Object
.
keys
(
data
).
length
>
0
)){
for
(
let
i
=
0
;
i
<
_args
.
length
;
i
++
){
let
tempObject
:
any
=
{};
Object
.
keys
(
data
).
forEach
((
key
:
string
)
=>
{
Object
.
assign
(
tempObject
,{[
key
]:
data
[
key
].
split
(
','
)[
i
]});
})
tempDataArray
.
push
(
tempObject
);
}
}
else
{
tempDataArray
.
push
(
data
);
}
data
=
tempDataArray
;
}
context
=
Object
.
assign
({},
actionContext
.
context
,
context
);
let
parentObj
:
any
=
{
srfparentdename
:
srfParentDeName
?
srfParentDeName
:
null
,
srfparentkey
:
srfParentDeName
?
context
[
srfParentDeName
.
toLowerCase
()]:
null
};
if
(
!
Object
.
is
(
actionTarget
,
"MULTIKEY"
)){
Object
.
assign
(
data
,
parentObj
);
}
Object
.
assign
(
context
,
parentObj
);
// 直接调实体服务需要转换的数据
if
(
context
&&
context
.
srfsessionid
){
context
.
srfsessionkey
=
context
.
srfsessionid
;
delete
context
.
srfsessionid
;
}
const
backend
=
()
=>
{
const
curService
:
RuleEngineService
=
new
RuleEngineService
();
curService
.
Check
(
context
,
data
,
true
).
then
((
response
:
any
)
=>
{
if
(
!
response
||
response
.
status
!==
200
)
{
actionContext
.
$Notice
.
error
({
title
:
'错误'
,
desc
:
response
.
message
});
return
;
}
actionContext
.
$Notice
.
success
({
title
:
'成功'
,
desc
:
'校验成功!'
});
const
_this
:
any
=
actionContext
;
return
response
;
}).
catch
((
response
:
any
)
=>
{
if
(
response
&&
response
.
status
&&
response
.
data
)
{
actionContext
.
$Notice
.
error
({
title
:
(
actionContext
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
response
.
data
.
message
});
return
;
}
if
(
!
response
||
!
response
.
status
||
!
response
.
data
)
{
actionContext
.
$Notice
.
error
({
title
:
(
actionContext
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
(
actionContext
.
$t
(
'app.commonWords.sysException'
)
as
string
)
});
return
;
}
return
response
;
});
};
backend
();
}
/**
* 运行
*
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/rule/service/IRuleEngineService.java
浏览文件 @
990a279b
...
...
@@ -33,6 +33,8 @@ public interface IRuleEngineService extends IService<RuleEngine> {
void
removeBatch
(
Collection
<
String
>
idList
);
RuleEngine
get
(
String
key
);
RuleEngine
getDraft
(
RuleEngine
et
);
RuleEngine
check
(
RuleEngine
et
);
boolean
checkBatch
(
List
<
RuleEngine
>
etList
);
boolean
checkKey
(
RuleEngine
et
);
RuleEngine
run
(
RuleEngine
et
);
boolean
runBatch
(
List
<
RuleEngine
>
etList
);
...
...
ibzdst-core/src/main/java/cn/ibizlab/core/rule/service/impl/RuleEngineServiceImpl.java
浏览文件 @
990a279b
...
...
@@ -122,6 +122,22 @@ public class RuleEngineServiceImpl extends ServiceImpl<RuleEngineMapper, RuleEng
return
et
;
}
@Override
@Transactional
public
RuleEngine
check
(
RuleEngine
et
)
{
//自定义代码
return
et
;
}
@Override
@Transactional
public
boolean
checkBatch
(
List
<
RuleEngine
>
etList
)
{
for
(
RuleEngine
et
:
etList
)
{
check
(
et
);
}
return
true
;
}
@Override
public
boolean
checkKey
(
RuleEngine
et
)
{
return
(!
ObjectUtils
.
isEmpty
(
et
.
getEngineId
()))
&&
(!
Objects
.
isNull
(
this
.
getById
(
et
.
getEngineId
())));
...
...
ibzdst-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
990a279b
...
...
@@ -398,7 +398,7 @@
<!--输出实体[RU_ENGINE]数据结构 -->
<changeSet
author=
"root"
id=
"tab-ru_engine-3
6
-15"
>
<changeSet
author=
"root"
id=
"tab-ru_engine-3
8
-15"
>
<createTable
tableName=
"IBZRULEENGINE"
>
<column
name=
"ENGINEID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_RU_ENGINE_ENGINEID"
/>
...
...
ibzdst-core/src/main/resources/permission/systemResource.json
浏览文件 @
990a279b
...
...
@@ -144,7 +144,7 @@
"delogicname"
:
"规则引擎"
,
"sysmoudle"
:{
"id"
:
"RULE"
,
"name"
:
"rule"
},
"dedataset"
:[{
"id"
:
"Default"
,
"name"
:
"数据集"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"CheckKey"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Run"
,
"name"
:
"运行"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"deaction"
:[{
"id"
:
"Create"
,
"name"
:
"Create"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Update"
,
"name"
:
"Update"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Remove"
,
"name"
:
"Remove"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Get"
,
"name"
:
"Get"
,
"type"
:
"BUILTIN"
},{
"id"
:
"GetDraft"
,
"name"
:
"GetDraft"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Check
"
,
"name"
:
"校验"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Check
Key"
,
"name"
:
"CheckKey"
,
"type"
:
"BUILTIN"
},{
"id"
:
"Run"
,
"name"
:
"运行"
,
"type"
:
"USERCUSTOM"
},{
"id"
:
"Save"
,
"name"
:
"Save"
,
"type"
:
"BUILTIN"
}],
"datascope"
:[{
"id"
:
"all"
,
"name"
:
"全部数据"
}]
}
,
{
...
...
ibzdst-provider/ibzdst-provider-api/src/main/java/cn/ibizlab/api/rest/RuleEngineResource.java
浏览文件 @
990a279b
...
...
@@ -114,6 +114,23 @@ public class RuleEngineResource {
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
ruleengineMapping
.
toDto
(
ruleengineService
.
getDraft
(
new
RuleEngine
())));
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibzdst-RuleEngine-Check-all')"
)
@ApiOperation
(
value
=
"校验"
,
tags
=
{
"规则引擎"
},
notes
=
"校验"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/ruleengines/{ruleengine_id}/check"
)
public
ResponseEntity
<
RuleEngineDTO
>
check
(
@PathVariable
(
"ruleengine_id"
)
String
ruleengine_id
,
@RequestBody
RuleEngineDTO
ruleenginedto
)
{
RuleEngine
domain
=
ruleengineMapping
.
toDomain
(
ruleenginedto
);
domain
.
setEngineId
(
ruleengine_id
);
domain
=
ruleengineService
.
check
(
domain
);
ruleenginedto
=
ruleengineMapping
.
toDto
(
domain
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
ruleenginedto
);
}
@PreAuthorize
(
"hasAnyAuthority('ROLE_SUPERADMIN','ibzdst-RuleEngine-Check-all')"
)
@ApiOperation
(
value
=
"批量处理[校验]"
,
tags
=
{
"规则引擎"
},
notes
=
"批量处理[校验]"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/ruleengines/{ruleengine_id}/checkbatch"
)
public
ResponseEntity
<
Boolean
>
checkBatch
(
@RequestBody
List
<
RuleEngineDTO
>
ruleenginedtos
)
{
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
ruleengineService
.
checkBatch
(
ruleengineMapping
.
toDomain
(
ruleenginedtos
)));
}
@ApiOperation
(
value
=
"检查规则引擎"
,
tags
=
{
"规则引擎"
},
notes
=
"检查规则引擎"
)
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/ruleengines/checkkey"
)
public
ResponseEntity
<
Boolean
>
checkKey
(
@RequestBody
RuleEngineDTO
ruleenginedto
)
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录