blob: b4d44a6a3bf64d8d9f3ce214d7ab3aa940cfc977 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.fineract.cn.portfolio.service.rest;
import org.apache.fineract.cn.portfolio.api.v1.PermittableGroupIds;
import org.apache.fineract.cn.portfolio.api.v1.domain.AccountAssignment;
import org.apache.fineract.cn.portfolio.api.v1.domain.Pattern;
import org.apache.fineract.cn.portfolio.api.v1.domain.Product;
import org.apache.fineract.cn.portfolio.api.v1.domain.ProductPage;
import org.apache.fineract.cn.portfolio.api.v1.validation.CheckValidSortColumn;
import org.apache.fineract.cn.portfolio.api.v1.validation.CheckValidSortDirection;
import org.apache.fineract.cn.portfolio.api.v1.validation.ValidSortDirection;
import org.apache.fineract.cn.portfolio.service.internal.command.ChangeEnablingOfProductCommand;
import org.apache.fineract.cn.portfolio.service.internal.command.ChangeProductCommand;
import org.apache.fineract.cn.portfolio.service.internal.command.CreateProductCommand;
import org.apache.fineract.cn.portfolio.service.internal.command.DeleteProductCommand;
import org.apache.fineract.cn.portfolio.service.internal.service.CaseService;
import org.apache.fineract.cn.portfolio.service.internal.service.PatternService;
import org.apache.fineract.cn.portfolio.service.internal.service.ProductService;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import javax.annotation.Nullable;
import javax.validation.Valid;
import org.apache.fineract.cn.anubis.annotation.AcceptedTokenType;
import org.apache.fineract.cn.anubis.annotation.Permittable;
import org.apache.fineract.cn.api.util.UserContextHolder;
import org.apache.fineract.cn.command.gateway.CommandGateway;
import org.apache.fineract.cn.lang.ServiceException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
/**
* @author Myrle Krantz
*/
@SuppressWarnings("unused")
@RestController //
@RequestMapping("/products") //
public class ProductRestController {
private final static Set<String> VALID_SORT_COLUMNS = new HashSet<>(Arrays.asList("lastModifiedOn", "identifier", "name", "enabled"));
private final CommandGateway commandGateway;
private final CaseService caseService;
private final ProductService productService;
private final PatternService patternService;
@Autowired public ProductRestController(final CommandGateway commandGateway,
final CaseService caseService,
final ProductService productService,
final PatternService patternService) {
super();
this.commandGateway = commandGateway;
this.caseService = caseService;
this.productService = productService;
this.patternService = patternService;
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@RequestMapping(method = RequestMethod.GET) //
public @ResponseBody
ProductPage getProducts(@RequestParam(value = "includeDisabled", required = false) final Boolean includeDisabled,
@RequestParam(value = "term", required = false) final @Nullable String term,
@RequestParam(value = "pageIndex") final Integer pageIndex,
@RequestParam(value = "size") final Integer size,
@RequestParam(value = "sortColumn", required = false) final String sortColumn,
@RequestParam(value = "sortDirection", required = false) final @Valid @ValidSortDirection String sortDirection) {
if (!CheckValidSortColumn.validate(sortColumn, VALID_SORT_COLUMNS))
throw ServiceException
.badRequest("Invalid sort column ''{0}''. Valid inputs are ''{1}''.", sortColumn, VALID_SORT_COLUMNS);
if (!CheckValidSortDirection.validate(sortDirection))
throw ServiceException.badRequest("Invalid sort direction ''{0}''.", sortDirection);
return this.productService.findEntities(includeDisabled, term, pageIndex, size, sortColumn, sortDirection);
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@RequestMapping(method = RequestMethod.POST) //
public @ResponseBody ResponseEntity<Void> createEntity(@RequestBody @Valid final Product instance) {
productService.findByIdentifier(instance.getIdentifier())
.ifPresent(product -> {throw ServiceException.conflict("Duplicate identifier: " + product.getIdentifier());});
final Pattern pattern = patternService.findByIdentifier(instance.getPatternPackage())
.orElseThrow(() -> ServiceException.badRequest("Invalid pattern package referenced."));
final String user = UserContextHolder.checkedGetUser();
if (!(instance.getCreatedBy() == null || instance.getCreatedBy().equals(user)))
throw ServiceException.badRequest("CreatedBy must be either 'null', or the creating user upon initial creation.");
if (!(instance.getLastModifiedBy() == null || instance.getLastModifiedBy().equals(user)))
throw ServiceException.badRequest("LastModifiedBy must be either 'null', or the creating user upon initial creation.");
if (instance.getCreatedOn() != null)
throw ServiceException.badRequest("CreatedOn must be 'null' upon initial creation.");
if (instance.getLastModifiedOn() != null)
throw ServiceException.badRequest("LastModifiedOn must be 'null' be upon initial creation.");
if (instance.isEnabled())
throw ServiceException.badRequest("Enabled must be 'false' be upon initial creation.");
this.commandGateway.process(new CreateProductCommand(instance));
return new ResponseEntity<>(HttpStatus.ACCEPTED);
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}",
method = RequestMethod.GET,
consumes = MediaType.ALL_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody ResponseEntity<Product> getProduct(@PathVariable("productidentifier") final String productIdentifier)
{
return productService.findByIdentifier(productIdentifier)
.map(ResponseEntity::ok)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier " + productIdentifier + " doesn't exist."));
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}",
method = RequestMethod.PUT,
consumes = MediaType.ALL_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody ResponseEntity<Void> changeProduct(@PathVariable("productidentifier") final String productIdentifier,
@RequestBody @Valid final Product instance)
{
productService.findByIdentifier(productIdentifier)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier " + productIdentifier + " doesn't exist."));
if (!productIdentifier.equals(instance.getIdentifier()))
throw ServiceException.badRequest("Instance identifier may not be changed. Identifier provided in instance = " + instance.getIdentifier() + ". Instance referenced in path = " + productIdentifier + ".");
if (caseService.existsByProductIdentifier(productIdentifier))
throw ServiceException.conflict("Cases exist for product with the identifier '" + productIdentifier + "'. Product cannot be changed.");
if (instance.isEnabled())
throw ServiceException.badRequest("Enabled must be 'false' be during editing.");
commandGateway.process(new ChangeProductCommand(instance));
return ResponseEntity.accepted().build();
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}",
method = RequestMethod.DELETE,
consumes = MediaType.ALL_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE
)
public @ResponseBody ResponseEntity<Void> deleteProduct(@PathVariable("productidentifier") final String productIdentifier)
{
final boolean enabled = productService.findEnabledByIdentifier(productIdentifier)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier ''{0}'' doesn''t exist.", productIdentifier));
if (enabled)
throw ServiceException.conflict("Cannot delete product with identifier ''{0}'', because it is enabled.", productIdentifier);
if (caseService.existsByProductIdentifier(productIdentifier))
throw ServiceException.conflict("Cannot delete product with identifier ''{0}'', because there are already cases defined on it.", productIdentifier);
commandGateway.process(new DeleteProductCommand(productIdentifier));
return ResponseEntity.accepted().build();
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_OPERATIONS_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}/incompleteaccountassignments",
method = RequestMethod.GET,
consumes = MediaType.APPLICATION_JSON_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody ResponseEntity<Set<AccountAssignment>> getIncompleteAccountAssignments(@PathVariable("productidentifier") final String productIdentifier)
{
productService.findByIdentifier(productIdentifier)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier ''{0}'' doesn''t exist.", productIdentifier));
return ResponseEntity.ok(productService.getIncompleteAccountAssignments(productIdentifier));
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_OPERATIONS_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}/enabled",
method = RequestMethod.PUT,
consumes = MediaType.APPLICATION_JSON_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody ResponseEntity<Void> enableProduct(
@PathVariable("productidentifier") final String productIdentifier,
@RequestBody final Boolean enabled)
{
productService.findByIdentifier(productIdentifier)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier ''{0}'' doesn''t exist.", productIdentifier));
if (enabled) {
if (!productService.areChargeDefinitionsCoveredByAccountAssignments(productIdentifier))
throw ServiceException.conflict("Product with identifier ''{0}'' is not ready to be enabled.", productIdentifier);
}
commandGateway.process(new ChangeEnablingOfProductCommand(productIdentifier, enabled));
return ResponseEntity.accepted().build();
}
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_MANAGEMENT)
@Permittable(value = AcceptedTokenType.TENANT, groupId = PermittableGroupIds.PRODUCT_OPERATIONS_MANAGEMENT)
@RequestMapping(
value = "/{productidentifier}/enabled",
method = RequestMethod.GET,
consumes = MediaType.APPLICATION_JSON_VALUE,
produces = MediaType.APPLICATION_JSON_VALUE)
public @ResponseBody ResponseEntity<Boolean> getProductEnabled(@PathVariable("productidentifier") final String productIdentifier)
{
return ResponseEntity.ok(productService.findEnabledByIdentifier(productIdentifier)
.orElseThrow(() -> ServiceException.notFound("Instance with identifier ''{0}'' doesn''t exist.", productIdentifier)));
}
}