001// -------------------------------------------------------------------------------- 002// Copyright 2002-2024 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016 017package com.echothree.control.user.core.server.command; 018 019import com.echothree.control.user.core.common.form.CreateEntityLongRangeForm; 020import com.echothree.model.control.core.common.EntityAttributeTypes; 021import com.echothree.model.control.party.common.PartyTypes; 022import com.echothree.model.control.security.common.SecurityRoleGroups; 023import com.echothree.model.control.security.common.SecurityRoles; 024import com.echothree.model.data.core.server.entity.ComponentVendor; 025import com.echothree.model.data.core.server.entity.EntityAttribute; 026import com.echothree.model.data.core.server.entity.EntityLongRange; 027import com.echothree.model.data.core.server.entity.EntityType; 028import com.echothree.model.data.user.common.pk.UserVisitPK; 029import com.echothree.util.common.message.ExecutionErrors; 030import com.echothree.util.common.validation.FieldDefinition; 031import com.echothree.util.common.validation.FieldType; 032import com.echothree.util.common.command.BaseResult; 033import com.echothree.util.server.control.BaseSimpleCommand; 034import com.echothree.util.server.control.CommandSecurityDefinition; 035import com.echothree.util.server.control.PartyTypeDefinition; 036import com.echothree.util.server.control.SecurityRoleDefinition; 037import java.util.Arrays; 038import java.util.Collections; 039import java.util.List; 040 041public class CreateEntityLongRangeCommand 042 extends BaseSimpleCommand<CreateEntityLongRangeForm> { 043 044 private final static CommandSecurityDefinition COMMAND_SECURITY_DEFINITION; 045 private final static List<FieldDefinition> FORM_FIELD_DEFINITIONS; 046 047 static { 048 COMMAND_SECURITY_DEFINITION = new CommandSecurityDefinition(Collections.unmodifiableList(Arrays.asList( 049 new PartyTypeDefinition(PartyTypes.UTILITY.name(), null), 050 new PartyTypeDefinition(PartyTypes.EMPLOYEE.name(), Collections.unmodifiableList(Arrays.asList( 051 new SecurityRoleDefinition(SecurityRoleGroups.EntityLongRange.name(), SecurityRoles.Create.name()) 052 ))) 053 ))); 054 055 FORM_FIELD_DEFINITIONS = Collections.unmodifiableList(Arrays.asList( 056 new FieldDefinition("ComponentVendorName", FieldType.ENTITY_NAME, true, null, null), 057 new FieldDefinition("EntityTypeName", FieldType.ENTITY_TYPE_NAME, true, null, null), 058 new FieldDefinition("EntityAttributeName", FieldType.ENTITY_NAME, true, null, null), 059 new FieldDefinition("EntityLongRangeName", FieldType.ENTITY_NAME, true, null, null), 060 new FieldDefinition("MinimumLongValue", FieldType.SIGNED_LONG, false, null, null), 061 new FieldDefinition("MaximumLongValue", FieldType.SIGNED_LONG, false, null, null), 062 new FieldDefinition("IsDefault", FieldType.BOOLEAN, true, null, null), 063 new FieldDefinition("SortOrder", FieldType.SIGNED_INTEGER, true, null, null), 064 new FieldDefinition("Description", FieldType.STRING, false, 1L, 132L) 065 )); 066 } 067 068 /** Creates a new instance of CreateEntityLongRangeCommand */ 069 public CreateEntityLongRangeCommand(UserVisitPK userVisitPK, CreateEntityLongRangeForm form) { 070 super(userVisitPK, form, COMMAND_SECURITY_DEFINITION, FORM_FIELD_DEFINITIONS, false); 071 } 072 073 @Override 074 protected BaseResult execute() { 075 var coreControl = getCoreControl(); 076 String componentVendorName = form.getComponentVendorName(); 077 ComponentVendor componentVendor = coreControl.getComponentVendorByName(componentVendorName); 078 079 if(componentVendor != null) { 080 String entityTypeName = form.getEntityTypeName(); 081 EntityType entityType = coreControl.getEntityTypeByName(componentVendor, entityTypeName); 082 083 if(entityType != null) { 084 String entityAttributeName = form.getEntityAttributeName(); 085 EntityAttribute entityAttribute = coreControl.getEntityAttributeByName(entityType, entityAttributeName); 086 087 if(entityAttribute != null) { 088 String entityAttributeTypeName = entityAttribute.getLastDetail().getEntityAttributeType().getEntityAttributeTypeName(); 089 090 if(entityAttributeTypeName.equals(EntityAttributeTypes.LONG.name())) { 091 String entityLongRangeName = form.getEntityLongRangeName(); 092 EntityLongRange entityLongRange = coreControl.getEntityLongRangeByName(entityAttribute, entityLongRangeName); 093 094 if(entityLongRange == null) { 095 var partyPK = getPartyPK(); 096 String strMinimumLongValue = form.getMinimumLongValue(); 097 Long minimumLongValue = strMinimumLongValue == null ? null : Long.valueOf(strMinimumLongValue); 098 String strMaximumLongValue = form.getMaximumLongValue(); 099 Long maximumLongValue = strMaximumLongValue == null ? null : Long.valueOf(strMaximumLongValue); 100 var isDefault = Boolean.valueOf(form.getIsDefault()); 101 var sortOrder = Integer.valueOf(form.getSortOrder()); 102 var description = form.getDescription(); 103 104 if(minimumLongValue == null || maximumLongValue == null || maximumLongValue >= minimumLongValue) { 105 entityLongRange = coreControl.createEntityLongRange(entityAttribute, entityLongRangeName, minimumLongValue, 106 maximumLongValue, isDefault, sortOrder, partyPK); 107 108 if(description != null) { 109 coreControl.createEntityLongRangeDescription(entityLongRange, getPreferredLanguage(), description, partyPK); 110 } 111 } else { 112 addExecutionError(ExecutionErrors.MinimumValueGreaterThanMaximumValue.name(), strMinimumLongValue, strMaximumLongValue); 113 } 114 } else { 115 addExecutionError(ExecutionErrors.DuplicateEntityLongRangeName.name(), componentVendorName, entityTypeName, entityAttributeName, entityLongRangeName); 116 } 117 } else { 118 addExecutionError(ExecutionErrors.InvalidEntityAttributeType.name(), componentVendorName, entityTypeName, entityAttributeName, entityAttributeTypeName); 119 } 120 } else { 121 addExecutionError(ExecutionErrors.UnknownEntityAttributeName.name(), componentVendorName, entityTypeName, entityAttributeName); 122 } 123 } else { 124 addExecutionError(ExecutionErrors.UnknownEntityTypeName.name(), componentVendorName, entityTypeName); 125 } 126 } else { 127 addExecutionError(ExecutionErrors.UnknownComponentVendorName.name(), componentVendorName); 128 } 129 130 return null; 131 } 132 133}