|
| 1 | +package org.fineract.messagegateway.tenants.serialization; |
| 2 | + |
| 3 | +import java.lang.reflect.Type; |
| 4 | +import java.util.ArrayList; |
| 5 | +import java.util.List; |
| 6 | +import java.util.Map; |
| 7 | + |
| 8 | +import org.fineract.messagegateway.exception.PlatformApiDataValidationException; |
| 9 | +import org.fineract.messagegateway.helpers.ApiParameterError; |
| 10 | +import org.fineract.messagegateway.helpers.DataValidatorBuilder; |
| 11 | +import org.fineract.messagegateway.helpers.FromJsonHelper; |
| 12 | +import org.fineract.messagegateway.tenants.constants.TenantConstants; |
| 13 | +import org.fineract.messagegateway.tenants.domain.Tenant; |
| 14 | +import org.springframework.beans.factory.annotation.Autowired; |
| 15 | +import org.springframework.stereotype.Component; |
| 16 | + |
| 17 | +import com.google.gson.JsonElement; |
| 18 | +import com.google.gson.reflect.TypeToken; |
| 19 | + |
| 20 | +@Component |
| 21 | +public class TenantSerializer { |
| 22 | + |
| 23 | + private final FromJsonHelper fromJsonHelper; |
| 24 | + |
| 25 | + @Autowired |
| 26 | + public TenantSerializer(FromJsonHelper fromJsonHelper) { |
| 27 | + this.fromJsonHelper = fromJsonHelper; |
| 28 | + } |
| 29 | + |
| 30 | + public Tenant validateCreateRequest(final String json) { |
| 31 | + final Type typeOfMap = new TypeToken<Map<String, Object>>() {}.getType(); |
| 32 | + this.fromJsonHelper.checkForUnsupportedParameters(typeOfMap, json, |
| 33 | + TenantConstants.CREATE_REQUEST_PARAMETERS); |
| 34 | + |
| 35 | + final List<ApiParameterError> dataValidationErrors = new ArrayList<>(); |
| 36 | + final DataValidatorBuilder baseDataValidator = new DataValidatorBuilder(dataValidationErrors) |
| 37 | + .resource(TenantConstants.TENANTS_RESOURCE_NAME); |
| 38 | + final JsonElement element = this.fromJsonHelper.parse(json); |
| 39 | + |
| 40 | + |
| 41 | + final String tenantId = this.fromJsonHelper.extractStringNamed(TenantConstants.TENANT_ID, element); |
| 42 | + baseDataValidator.reset().parameter(TenantConstants.TENANT_ID) |
| 43 | + .value(tenantId).notBlank().notExceedingLengthOf(32); |
| 44 | + |
| 45 | + String tenantDescription = null; |
| 46 | + if(this.fromJsonHelper.parameterExists(TenantConstants.TENANT_DESCRIPTION, element)) { |
| 47 | + tenantDescription = this.fromJsonHelper.extractStringNamed(TenantConstants.TENANT_DESCRIPTION, |
| 48 | + element); |
| 49 | + baseDataValidator.reset().parameter(TenantConstants.TENANT_DESCRIPTION).value(tenantDescription) |
| 50 | + .notBlank().notExceedingLengthOf(500); |
| 51 | + } |
| 52 | + |
| 53 | + if (!dataValidationErrors.isEmpty()) { |
| 54 | + throw new PlatformApiDataValidationException("validation.msg.validation.errors.exist", |
| 55 | + "Validation errors exist.", dataValidationErrors); |
| 56 | + } |
| 57 | + |
| 58 | + return new Tenant(tenantId, null, tenantDescription); |
| 59 | + } |
| 60 | +} |
0 commit comments