use of org.flowable.engine.common.api.FlowableIllegalArgumentException in project plumdo-work by wengwh.
the class ProcessInstanceResource method startProcessInstance.
@RequestMapping(value = "/process-instance", method = RequestMethod.POST, produces = "application/json", name = "流程实例创建")
@ResponseStatus(value = HttpStatus.CREATED)
@Transactional(propagation = Propagation.REQUIRED)
public ProcessInstanceStartResponse startProcessInstance(@RequestBody ProcessInstanceStartRequest request) {
if (request.getProcessDefinitionId() == null && request.getProcessDefinitionKey() == null) {
throw new FlowableIllegalArgumentException("Either processDefinitionId, processDefinitionKey is required.");
}
int paramsSet = ((request.getProcessDefinitionId() != null) ? 1 : 0) + ((request.getProcessDefinitionKey() != null) ? 1 : 0);
if (paramsSet > 1) {
throw new FlowableIllegalArgumentException("Only one of processDefinitionId, processDefinitionKey should be set.");
}
if (request.isCustomTenantSet()) {
// Tenant-id can only be used with either key
if (request.getProcessDefinitionId() != null) {
throw new FlowableIllegalArgumentException("TenantId can only be used with either processDefinitionKey.");
}
}
Map<String, Object> startVariables = null;
if (request.getVariables() != null) {
startVariables = new HashMap<String, Object>();
for (RestVariable variable : request.getVariables()) {
if (variable.getName() == null) {
throw new FlowableIllegalArgumentException("Variable name is required.");
}
startVariables.put(variable.getName(), restResponseFactory.getVariableValue(variable));
}
}
// Actually start the instance based on key or id
ProcessInstance instance = null;
if (request.getProcessDefinitionId() != null) {
instance = runtimeService.startProcessInstanceById(request.getProcessDefinitionId(), request.getBusinessKey(), startVariables);
} else if (request.getProcessDefinitionKey() != null) {
if (request.isCustomTenantSet()) {
instance = runtimeService.startProcessInstanceByKeyAndTenantId(request.getProcessDefinitionKey(), request.getBusinessKey(), startVariables, request.getTenantId());
} else {
instance = runtimeService.startProcessInstanceByKey(request.getProcessDefinitionKey(), request.getBusinessKey(), startVariables);
}
}
// autoCommit:complete all tasks(not include sub process or father process)
if (request.isAutoCommitTask()) {
List<Task> tasks = taskService.createTaskQuery().processInstanceId(instance.getProcessInstanceId()).list();
for (Task task : tasks) {
if (StringUtils.isEmpty(task.getAssignee())) {
taskService.setAssignee(task.getId(), Authentication.getAuthenticatedUserId());
}
// taskExtService.saveTaskAssigneeVar(task.getId());
taskService.complete(task.getId());
}
}
// set next task user
List<Task> tasks = taskService.createTaskQuery().processInstanceId(instance.getProcessInstanceId()).list();
if (request.getNextActors() != null) {
for (Task task : tasks) {
this.addCandidate(task, request.getNextActors());
}
}
return restResponseFactory.createProcessInstanceStartResponse(instance, tasks);
}
use of org.flowable.engine.common.api.FlowableIllegalArgumentException in project plumdo-work by wengwh.
the class TaskCompleteResource method completeTask.
@RequestMapping(value = "/task/{taskId}/complete", method = RequestMethod.PUT, name = "任务完成")
@ResponseStatus(value = HttpStatus.OK)
@Transactional(propagation = Propagation.REQUIRED)
public List<TaskCompleteResponse> completeTask(@PathVariable("taskId") String taskId, @RequestBody(required = false) TaskCompleteRequest taskCompleteRequest) {
List<TaskCompleteResponse> responses = new ArrayList<TaskCompleteResponse>();
Task task = getTaskFromRequest(taskId);
if (task.getAssignee() == null) {
taskService.setAssignee(taskId, Authentication.getAuthenticatedUserId());
}
// 设置任务的完成人变量
// taskExtService.saveTaskAssigneeVar(taskId);
Map<String, Object> completeVariables = new HashMap<String, Object>();
// 设置流程变量
if (taskCompleteRequest != null && taskCompleteRequest.getVariables() != null) {
for (RestVariable variable : taskCompleteRequest.getVariables()) {
if (variable.getName() == null) {
throw new FlowableIllegalArgumentException("Variable name is required.");
}
completeVariables.put(variable.getName(), restResponseFactory.getVariableValue(variable));
}
}
// 设置多实例变量
if (taskCompleteRequest != null && taskCompleteRequest.getMultiKeys() != null) {
for (MultiKey multiKey : taskCompleteRequest.getMultiKeys()) {
if (multiKey.getName() == null) {
throw new FlowableIllegalArgumentException("multiKey name is required.");
}
completeVariables.put(multiKey.getName(), multiKey.getValue());
}
}
// 判断是否是协办完成还是正常流转
if (task.getDelegationState() != null && task.getDelegationState().equals(DelegationState.PENDING)) {
// taskExtService.setStartTime(taskId);
if (completeVariables.isEmpty()) {
taskService.resolveTask(taskId);
} else {
taskService.resolveTask(taskId, completeVariables);
}
} else {
if (completeVariables.isEmpty()) {
taskService.complete(taskId);
} else {
taskService.complete(taskId, completeVariables);
}
}
return responses;
}
use of org.flowable.engine.common.api.FlowableIllegalArgumentException in project plumdo-work by wengwh.
the class RestResponseFactory method getVariableValue.
public Object getVariableValue(RestVariable restVariable) {
Object value = null;
if (restVariable.getType() != null) {
RestVariableConverter converter = null;
for (RestVariableConverter conv : variableConverters) {
if (conv.getRestTypeName().equals(restVariable.getType())) {
converter = conv;
break;
}
}
if (converter == null) {
throw new FlowableIllegalArgumentException("Variable '" + restVariable.getName() + "' has unsupported type: '" + restVariable.getType() + "'.");
}
value = converter.getVariableValue(restVariable);
} else {
value = restVariable.getValue();
}
return value;
}
use of org.flowable.engine.common.api.FlowableIllegalArgumentException in project plumdo-work by wengwh.
the class ProcessInstanceImageResource method getProcessInstanceImage.
@RequestMapping(value = "/process-instance/{processInstanceId}/image", method = RequestMethod.GET, name = "流程实例流程图")
public ResponseEntity<byte[]> getProcessInstanceImage(@PathVariable String processInstanceId) {
ProcessInstance processInstance = getProcessInstanceFromRequest(processInstanceId);
ProcessDefinition pde = repositoryService.getProcessDefinition(processInstance.getProcessDefinitionId());
if (pde != null && pde.hasGraphicalNotation()) {
BpmnModel bpmnModel = repositoryService.getBpmnModel(pde.getId());
ProcessDiagramGenerator diagramGenerator = processEngineConfiguration.getProcessDiagramGenerator();
InputStream resource = diagramGenerator.generateDiagram(bpmnModel, "png", runtimeService.getActiveActivityIds(processInstance.getId()), Collections.<String>emptyList(), processEngineConfiguration.getActivityFontName(), processEngineConfiguration.getLabelFontName(), processEngineConfiguration.getAnnotationFontName(), processEngineConfiguration.getClassLoader(), 1.0);
HttpHeaders responseHeaders = new HttpHeaders();
responseHeaders.setContentType(MediaType.IMAGE_PNG);
try {
return new ResponseEntity<byte[]>(IOUtils.toByteArray(resource), responseHeaders, HttpStatus.OK);
} catch (Exception e) {
throw new FlowableIllegalArgumentException("Error exporting diagram", e);
}
} else {
throw new FlowableIllegalArgumentException("Process instance with id '" + processInstance.getId() + "' has no graphical notation defined.");
}
}
Aggregations