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.CreateEntityIntegerRangeForm;
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.EntityIntegerRange;
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 CreateEntityIntegerRangeCommand
042        extends BaseSimpleCommand<CreateEntityIntegerRangeForm> {
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.EntityIntegerRange.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("EntityIntegerRangeName", FieldType.ENTITY_NAME, true, null, null),
060                new FieldDefinition("MinimumIntegerValue", FieldType.SIGNED_INTEGER, false, null, null),
061                new FieldDefinition("MaximumIntegerValue", FieldType.SIGNED_INTEGER, 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 CreateEntityIntegerRangeCommand */
069    public CreateEntityIntegerRangeCommand(UserVisitPK userVisitPK, CreateEntityIntegerRangeForm 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.INTEGER.name())) {
091                        String entityIntegerRangeName = form.getEntityIntegerRangeName();
092                        EntityIntegerRange entityIntegerRange = coreControl.getEntityIntegerRangeByName(entityAttribute, entityIntegerRangeName);
093
094                        if(entityIntegerRange == null) {
095                            var partyPK = getPartyPK();
096                            String strMinimumIntegerValue = form.getMinimumIntegerValue();
097                            Integer minimumIntegerValue = strMinimumIntegerValue == null ? null : Integer.valueOf(strMinimumIntegerValue);
098                            String strMaximumIntegerValue = form.getMaximumIntegerValue();
099                            Integer maximumIntegerValue = strMaximumIntegerValue == null ? null : Integer.valueOf(strMaximumIntegerValue);
100                            var isDefault = Boolean.valueOf(form.getIsDefault());
101                            var sortOrder = Integer.valueOf(form.getSortOrder());
102                            var description = form.getDescription();
103
104                            if(minimumIntegerValue == null || maximumIntegerValue == null || maximumIntegerValue >= minimumIntegerValue) {
105                                entityIntegerRange = coreControl.createEntityIntegerRange(entityAttribute, entityIntegerRangeName, minimumIntegerValue,
106                                        maximumIntegerValue, isDefault, sortOrder, partyPK);
107
108                                if(description != null) {
109                                    coreControl.createEntityIntegerRangeDescription(entityIntegerRange, getPreferredLanguage(), description, partyPK);
110                                }
111                            } else {
112                                addExecutionError(ExecutionErrors.MinimumValueGreaterThanMaximumValue.name(), strMinimumIntegerValue, strMaximumIntegerValue);
113                            }
114                        } else {
115                            addExecutionError(ExecutionErrors.DuplicateEntityIntegerRangeName.name(), componentVendorName, entityTypeName, entityAttributeName, entityIntegerRangeName);
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}