All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.kie.kogito.examples.OrdersResource Maven / Gradle / Ivy
/*
* Copyright 2021 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.kie.kogito.examples;
import java.net.URI;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Collectors;
import org.jbpm.util.JsonSchemaUtil;
import org.kie.kogito.process.Process;
import org.kie.kogito.process.ProcessInstance;
import org.kie.kogito.process.WorkItem;
import org.kie.kogito.process.ProcessService;
import org.kie.kogito.process.workitem.Attachment;
import org.kie.kogito.process.workitem.AttachmentInfo;
import org.kie.kogito.process.workitem.Comment;
import org.kie.kogito.process.workitem.Policies;
import org.kie.kogito.process.workitem.TaskModel;
import org.kie.kogito.auth.IdentityProvider;
import org.kie.kogito.auth.IdentityProviders;
import org.kie.kogito.auth.SecurityPolicy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.server.ResponseStatusException;
import org.springframework.http.ResponseEntity;
import org.springframework.http.HttpStatus;
import org.springframework.web.util.UriComponents;
import org.springframework.web.util.UriComponentsBuilder;
import io.swagger.v3.oas.annotations.Operation;
@RestController
@RequestMapping("/orders")
@org.springframework.stereotype.Component()
public class OrdersResource {
@org.springframework.beans.factory.annotation.Autowired()
@org.springframework.beans.factory.annotation.Qualifier("demo.orders")
Process process;
@Autowired
ProcessService processService;
@PostMapping(produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public ResponseEntity createResource_orders(@RequestHeader HttpHeaders httpHeaders, @RequestParam(value = "businessKey", required = false) String businessKey, @RequestBody(required = false) @javax.validation.Valid() @javax.validation.constraints.NotNull() OrdersModelInput resource, UriComponentsBuilder uriComponentsBuilder) {
ProcessInstance pi = processService.createProcessInstance(process, businessKey, Optional.ofNullable(resource).orElse(new OrdersModelInput()).toModel(), httpHeaders, httpHeaders.getOrEmpty("X-KOGITO-StartFromNode").stream().findFirst().orElse(null));
return ResponseEntity.created(uriComponentsBuilder.path("/orders/{id}").buildAndExpand(pi.id()).toUri()).body(pi.checkError().variables().toModel());
}
@GetMapping(produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public List getResources_orders() {
return processService.getProcessInstanceOutput(process);
}
@GetMapping(value = "/schema", produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public Map getResourceSchema_orders() {
return JsonSchemaUtil.load(this.getClass().getClassLoader(), process.id());
}
@GetMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public OrdersModelOutput getResource_orders(@PathVariable("id") String id) {
return processService.findById(process, id).orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND));
}
@DeleteMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public OrdersModelOutput deleteResource_orders(@PathVariable("id") final String id) {
return processService.delete(process, id).orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND));
}
@PutMapping(value = "/{id}", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public OrdersModelOutput updateModel_orders(@PathVariable("id") String id, @RequestBody(required = false) OrdersModel resource) {
return processService.update(process, id, resource).orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND));
}
@GetMapping(value = "/{id}/tasks", produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(summary = "Deals with orders created by customer", description = "")
public List getTasks_orders(@PathVariable("id") String id, @RequestParam(value = "user", required = false) final String user, @RequestParam(value = "group", required = false) final List groups) {
return processService.getTasks(process, id, SecurityPolicy.of(IdentityProviders.of(user, groups))).orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND)).stream().map(org.kie.kogito.examples.Orders_TaskModelFactory::from).collect(Collectors.toList());
}
}