package com.iailab.module.bpm.controller.admin.definition;
|
|
import cn.hutool.core.collection.CollUtil;
|
import com.iailab.framework.common.pojo.CommonResult;
|
import com.iailab.framework.common.pojo.PageResult;
|
import com.iailab.framework.common.util.collection.CollectionUtils;
|
import com.iailab.framework.common.util.io.IoUtils;
|
import com.iailab.framework.common.util.json.JsonUtils;
|
import com.iailab.framework.common.util.object.BeanUtils;
|
import com.iailab.module.bpm.controller.admin.definition.vo.model.*;
|
import com.iailab.module.bpm.convert.definition.BpmModelConvert;
|
import com.iailab.module.bpm.dal.dataobject.definition.BpmCategoryDO;
|
import com.iailab.module.bpm.dal.dataobject.definition.BpmFormDO;
|
import com.iailab.module.bpm.service.definition.BpmCategoryService;
|
import com.iailab.module.bpm.service.definition.BpmFormService;
|
import com.iailab.module.bpm.service.definition.BpmModelService;
|
import com.iailab.module.bpm.service.definition.BpmProcessDefinitionService;
|
import com.iailab.module.bpm.service.definition.dto.BpmModelMetaInfoRespDTO;
|
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import org.flowable.engine.repository.Deployment;
|
import org.flowable.engine.repository.Model;
|
import org.flowable.engine.repository.ProcessDefinition;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
import javax.validation.Valid;
|
import java.io.IOException;
|
import java.util.HashSet;
|
import java.util.List;
|
import java.util.Map;
|
import java.util.Set;
|
|
import static com.iailab.framework.common.pojo.CommonResult.success;
|
import static com.iailab.framework.common.util.collection.CollectionUtils.convertMap;
|
import static com.iailab.framework.common.util.collection.CollectionUtils.convertSet;
|
|
@Tag(name = "管理后台 - 流程模型")
|
@RestController
|
@RequestMapping("/bpm/model")
|
@Validated
|
public class BpmModelController {
|
|
@Resource
|
private BpmModelService modelService;
|
@Resource
|
private BpmFormService formService;
|
@Resource
|
private BpmCategoryService categoryService;
|
@Resource
|
private BpmProcessDefinitionService processDefinitionService;
|
|
@GetMapping("/page")
|
@Operation(summary = "获得模型分页")
|
public CommonResult<PageResult<BpmModelRespVO>> getModelPage(BpmModelPageReqVO pageVO) {
|
PageResult<Model> pageResult = modelService.getModelPage(pageVO);
|
if (CollUtil.isEmpty(pageResult.getList())) {
|
return success(PageResult.empty(pageResult.getTotal()));
|
}
|
|
// 拼接数据
|
// 获得 Form 表单
|
Set<Long> formIds = convertSet(pageResult.getList(), model -> {
|
BpmModelMetaInfoRespDTO metaInfo = JsonUtils.parseObject(model.getMetaInfo(), BpmModelMetaInfoRespDTO.class);
|
return metaInfo != null ? metaInfo.getFormId() : null;
|
});
|
Map<Long, BpmFormDO> formMap = formService.getFormMap(formIds);
|
// 获得 Category Map
|
Map<String, BpmCategoryDO> categoryMap = categoryService.getCategoryMap(
|
convertSet(pageResult.getList(), Model::getCategory));
|
// 获得 Deployment Map
|
Set<String> deploymentIds = new HashSet<>();
|
pageResult.getList().forEach(model -> CollectionUtils.addIfNotNull(deploymentIds, model.getDeploymentId()));
|
Map<String, Deployment> deploymentMap = processDefinitionService.getDeploymentMap(deploymentIds);
|
// 获得 ProcessDefinition Map
|
List<ProcessDefinition> processDefinitions = processDefinitionService.getProcessDefinitionListByDeploymentIds(deploymentIds);
|
Map<String, ProcessDefinition> processDefinitionMap = convertMap(processDefinitions, ProcessDefinition::getDeploymentId);
|
return success(BpmModelConvert.INSTANCE.buildModelPage(pageResult, formMap, categoryMap, deploymentMap, processDefinitionMap));
|
}
|
|
@GetMapping("/get")
|
@Operation(summary = "获得模型")
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
@PreAuthorize("@ss.hasPermission('bpm:model:query')")
|
public CommonResult<BpmModelRespVO> getModel(@RequestParam("id") String id) {
|
Model model = modelService.getModel(id);
|
if (model == null) {
|
return null;
|
}
|
byte[] bpmnBytes = modelService.getModelBpmnXML(id);
|
return success(BpmModelConvert.INSTANCE.buildModel(model, bpmnBytes));
|
}
|
|
@PostMapping("/create")
|
@Operation(summary = "新建模型")
|
@PreAuthorize("@ss.hasPermission('bpm:model:create')")
|
public CommonResult<String> createModel(@Valid @RequestBody BpmModelCreateReqVO createRetVO) {
|
return success(modelService.createModel(createRetVO, null));
|
}
|
|
@PutMapping("/update")
|
@Operation(summary = "修改模型")
|
@PreAuthorize("@ss.hasPermission('bpm:model:update')")
|
public CommonResult<Boolean> updateModel(@Valid @RequestBody BpmModelUpdateReqVO modelVO) {
|
modelService.updateModel(modelVO);
|
return success(true);
|
}
|
|
@PostMapping("/import")
|
@Operation(summary = "导入模型")
|
@PreAuthorize("@ss.hasPermission('bpm:model:import')")
|
public CommonResult<String> importModel(@Valid BpmModeImportReqVO importReqVO) throws IOException {
|
BpmModelCreateReqVO createReqVO = BeanUtils.toBean(importReqVO, BpmModelCreateReqVO.class);
|
// 读取文件
|
String bpmnXml = IoUtils.readUtf8(importReqVO.getBpmnFile().getInputStream(), false);
|
return success(modelService.createModel(createReqVO, bpmnXml));
|
}
|
|
@PostMapping("/deploy")
|
@Operation(summary = "部署模型")
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
@PreAuthorize("@ss.hasPermission('bpm:model:deploy')")
|
public CommonResult<Boolean> deployModel(@RequestParam("id") String id) {
|
modelService.deployModel(id);
|
return success(true);
|
}
|
|
@PutMapping("/update-state")
|
@Operation(summary = "修改模型的状态", description = "实际更新的部署的流程定义的状态")
|
@PreAuthorize("@ss.hasPermission('bpm:model:update')")
|
public CommonResult<Boolean> updateModelState(@Valid @RequestBody BpmModelUpdateStateReqVO reqVO) {
|
modelService.updateModelState(reqVO.getId(), reqVO.getState());
|
return success(true);
|
}
|
|
@DeleteMapping("/delete")
|
@Operation(summary = "删除模型")
|
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
@PreAuthorize("@ss.hasPermission('bpm:model:delete')")
|
public CommonResult<Boolean> deleteModel(@RequestParam("id") String id) {
|
modelService.deleteModel(id);
|
return success(true);
|
}
|
|
}
|