001// --------------------------------------------------------------------------------
002// Copyright 2002-2025 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.employee.server.command;
018
019import com.echothree.control.user.employee.common.edit.EmployeeEditFactory;
020import com.echothree.control.user.employee.common.edit.TerminationReasonDescriptionEdit;
021import com.echothree.control.user.employee.common.form.EditTerminationReasonDescriptionForm;
022import com.echothree.control.user.employee.common.result.EmployeeResultFactory;
023import com.echothree.control.user.employee.common.spec.TerminationReasonDescriptionSpec;
024import com.echothree.model.control.employee.server.control.EmployeeControl;
025import com.echothree.model.control.party.common.PartyTypes;
026import com.echothree.model.control.party.server.control.PartyControl;
027import com.echothree.model.control.security.common.SecurityRoleGroups;
028import com.echothree.model.control.security.common.SecurityRoles;
029import com.echothree.model.data.user.common.pk.UserVisitPK;
030import com.echothree.util.common.message.ExecutionErrors;
031import com.echothree.util.common.validation.FieldDefinition;
032import com.echothree.util.common.validation.FieldType;
033import com.echothree.util.common.command.BaseResult;
034import com.echothree.util.common.command.EditMode;
035import com.echothree.util.server.control.BaseEditCommand;
036import com.echothree.util.server.control.CommandSecurityDefinition;
037import com.echothree.util.server.control.PartyTypeDefinition;
038import com.echothree.util.server.control.SecurityRoleDefinition;
039import com.echothree.util.server.persistence.Session;
040import java.util.ArrayList;
041import java.util.Collections;
042import java.util.List;
043import javax.enterprise.context.RequestScoped;
044
045@RequestScoped
046public class EditTerminationReasonDescriptionCommand
047        extends BaseEditCommand<TerminationReasonDescriptionSpec, TerminationReasonDescriptionEdit> {
048
049    private final static CommandSecurityDefinition COMMAND_SECURITY_DEFINITION;
050    private final static List<FieldDefinition> SPEC_FIELD_DEFINITIONS;
051    private final static List<FieldDefinition> EDIT_FIELD_DEFINITIONS;
052    
053    static {
054        COMMAND_SECURITY_DEFINITION = new CommandSecurityDefinition(List.of(
055                new PartyTypeDefinition(PartyTypes.UTILITY.name(), null),
056                new PartyTypeDefinition(PartyTypes.EMPLOYEE.name(), List.of(
057                        new SecurityRoleDefinition(SecurityRoleGroups.TerminationReason.name(), SecurityRoles.Description.name())
058                ))
059        ));
060
061        List<FieldDefinition> temp = new ArrayList<>(2);
062        temp.add(new FieldDefinition("TerminationReasonName", FieldType.ENTITY_NAME, true, null, null));
063        temp.add(new FieldDefinition("LanguageIsoName", FieldType.ENTITY_NAME, true, null, null));
064        SPEC_FIELD_DEFINITIONS = Collections.unmodifiableList(temp);
065        
066        temp = new ArrayList<>(1);
067        temp.add(new FieldDefinition("Description", FieldType.STRING, true, 1L, 132L));
068        EDIT_FIELD_DEFINITIONS = Collections.unmodifiableList(temp);
069    }
070    
071    /** Creates a new instance of EditTerminationReasonDescriptionCommand */
072    public EditTerminationReasonDescriptionCommand() {
073        super(COMMAND_SECURITY_DEFINITION, SPEC_FIELD_DEFINITIONS, EDIT_FIELD_DEFINITIONS);
074    }
075    
076    @Override
077    protected BaseResult execute() {
078        var employeeControl = Session.getModelController(EmployeeControl.class);
079        var result = EmployeeResultFactory.getEditTerminationReasonDescriptionResult();
080        var terminationReasonName = spec.getTerminationReasonName();
081        var terminationReason = employeeControl.getTerminationReasonByName(terminationReasonName);
082        
083        if(terminationReason != null) {
084            var partyControl = Session.getModelController(PartyControl.class);
085            var languageIsoName = spec.getLanguageIsoName();
086            var language = partyControl.getLanguageByIsoName(languageIsoName);
087            
088            if(language != null) {
089                if(editMode.equals(EditMode.LOCK)) {
090                    var terminationReasonDescription = employeeControl.getTerminationReasonDescription(terminationReason, language);
091                    
092                    if(terminationReasonDescription != null) {
093                        result.setTerminationReasonDescription(employeeControl.getTerminationReasonDescriptionTransfer(getUserVisit(), terminationReasonDescription));
094                        
095                        if(lockEntity(terminationReason)) {
096                            var edit = EmployeeEditFactory.getTerminationReasonDescriptionEdit();
097                            
098                            result.setEdit(edit);
099                            edit.setDescription(terminationReasonDescription.getDescription());
100                        } else {
101                            addExecutionError(ExecutionErrors.EntityLockFailed.name());
102                        }
103                        
104                        result.setEntityLock(getEntityLockTransfer(terminationReason));
105                    } else {
106                        addExecutionError(ExecutionErrors.UnknownTerminationReasonDescription.name());
107                    }
108                } else if(editMode.equals(EditMode.UPDATE)) {
109                    var terminationReasonDescriptionValue = employeeControl.getTerminationReasonDescriptionValueForUpdate(terminationReason, language);
110                    
111                    if(terminationReasonDescriptionValue != null) {
112                        if(lockEntityForUpdate(terminationReason)) {
113                            try {
114                                var description = edit.getDescription();
115                                
116                                terminationReasonDescriptionValue.setDescription(description);
117                                
118                                employeeControl.updateTerminationReasonDescriptionFromValue(terminationReasonDescriptionValue, getPartyPK());
119                            } finally {
120                                unlockEntity(terminationReason);
121                            }
122                        } else {
123                            addExecutionError(ExecutionErrors.EntityLockStale.name());
124                        }
125                    } else {
126                        addExecutionError(ExecutionErrors.UnknownTerminationReasonDescription.name());
127                    }
128                }
129            } else {
130                addExecutionError(ExecutionErrors.UnknownLanguageIsoName.name(), languageIsoName);
131            }
132        } else {
133            addExecutionError(ExecutionErrors.UnknownTerminationReasonName.name(), terminationReasonName);
134        }
135        
136        return result;
137    }
138    
139}