001// -------------------------------------------------------------------------------- 002// Copyright 2002-2026 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.edit.CoreEditFactory; 020import com.echothree.control.user.core.common.edit.FontWeightEdit; 021import com.echothree.control.user.core.common.form.EditFontWeightForm; 022import com.echothree.control.user.core.common.result.CoreResultFactory; 023import com.echothree.control.user.core.common.result.EditFontWeightResult; 024import com.echothree.control.user.core.common.spec.FontWeightSpec; 025import com.echothree.model.control.core.server.control.FontControl; 026import com.echothree.model.control.party.common.PartyTypes; 027import com.echothree.model.control.security.common.SecurityRoleGroups; 028import com.echothree.model.control.security.common.SecurityRoles; 029import com.echothree.model.data.core.server.entity.FontWeight; 030import com.echothree.model.data.user.common.pk.UserVisitPK; 031import com.echothree.util.common.command.EditMode; 032import com.echothree.util.common.message.ExecutionErrors; 033import com.echothree.util.common.validation.FieldDefinition; 034import com.echothree.util.common.validation.FieldType; 035import com.echothree.util.server.control.BaseAbstractEditCommand; 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.List; 041import javax.enterprise.context.Dependent; 042 043@Dependent 044public class EditFontWeightCommand 045 extends BaseAbstractEditCommand<FontWeightSpec, FontWeightEdit, EditFontWeightResult, FontWeight, FontWeight> { 046 047 private final static CommandSecurityDefinition COMMAND_SECURITY_DEFINITION; 048 private final static List<FieldDefinition> SPEC_FIELD_DEFINITIONS; 049 private final static List<FieldDefinition> EDIT_FIELD_DEFINITIONS; 050 051 static { 052 COMMAND_SECURITY_DEFINITION = new CommandSecurityDefinition(List.of( 053 new PartyTypeDefinition(PartyTypes.UTILITY.name(), null), 054 new PartyTypeDefinition(PartyTypes.EMPLOYEE.name(), List.of( 055 new SecurityRoleDefinition(SecurityRoleGroups.FontWeight.name(), SecurityRoles.Edit.name()) 056 )) 057 )); 058 059 SPEC_FIELD_DEFINITIONS = List.of( 060 new FieldDefinition("FontWeightName", FieldType.ENTITY_NAME, true, null, null) 061 ); 062 063 EDIT_FIELD_DEFINITIONS = List.of( 064 new FieldDefinition("FontWeightName", FieldType.ENTITY_NAME, true, null, null), 065 new FieldDefinition("IsDefault", FieldType.BOOLEAN, true, null, null), 066 new FieldDefinition("SortOrder", FieldType.SIGNED_INTEGER, true, null, null), 067 new FieldDefinition("Description", FieldType.STRING, false, 1L, 132L) 068 ); 069 } 070 071 /** Creates a new instance of EditFontWeightCommand */ 072 public EditFontWeightCommand() { 073 super(COMMAND_SECURITY_DEFINITION, SPEC_FIELD_DEFINITIONS, EDIT_FIELD_DEFINITIONS); 074 } 075 076 @Override 077 public EditFontWeightResult getResult() { 078 return CoreResultFactory.getEditFontWeightResult(); 079 } 080 081 @Override 082 public FontWeightEdit getEdit() { 083 return CoreEditFactory.getFontWeightEdit(); 084 } 085 086 @Override 087 public FontWeight getEntity(EditFontWeightResult result) { 088 var fontControl = Session.getModelController(FontControl.class); 089 FontWeight fontWeight; 090 var fontWeightName = spec.getFontWeightName(); 091 092 if(editMode.equals(EditMode.LOCK) || editMode.equals(EditMode.ABANDON)) { 093 fontWeight = fontControl.getFontWeightByName(fontWeightName); 094 } else { // EditMode.UPDATE 095 fontWeight = fontControl.getFontWeightByNameForUpdate(fontWeightName); 096 } 097 098 if(fontWeight == null) { 099 addExecutionError(ExecutionErrors.UnknownFontWeightName.name(), fontWeightName); 100 } 101 102 return fontWeight; 103 } 104 105 @Override 106 public FontWeight getLockEntity(FontWeight fontWeight) { 107 return fontWeight; 108 } 109 110 @Override 111 public void fillInResult(EditFontWeightResult result, FontWeight fontWeight) { 112 var fontControl = Session.getModelController(FontControl.class); 113 114 result.setFontWeight(fontControl.getFontWeightTransfer(getUserVisit(), fontWeight)); 115 } 116 117 @Override 118 public void doLock(FontWeightEdit edit, FontWeight fontWeight) { 119 var fontControl = Session.getModelController(FontControl.class); 120 var fontWeightDescription = fontControl.getFontWeightDescription(fontWeight, getPreferredLanguage()); 121 var fontWeightDetail = fontWeight.getLastDetail(); 122 123 edit.setFontWeightName(fontWeightDetail.getFontWeightName()); 124 edit.setIsDefault(fontWeightDetail.getIsDefault().toString()); 125 edit.setSortOrder(fontWeightDetail.getSortOrder().toString()); 126 127 if(fontWeightDescription != null) { 128 edit.setDescription(fontWeightDescription.getDescription()); 129 } 130 } 131 132 @Override 133 public void canUpdate(FontWeight fontWeight) { 134 var fontControl = Session.getModelController(FontControl.class); 135 var fontWeightName = edit.getFontWeightName(); 136 var duplicateFontWeight = fontControl.getFontWeightByName(fontWeightName); 137 138 if(duplicateFontWeight != null && !fontWeight.equals(duplicateFontWeight)) { 139 addExecutionError(ExecutionErrors.DuplicateFontWeightName.name(), fontWeightName); 140 } 141 } 142 143 @Override 144 public void doUpdate(FontWeight fontWeight) { 145 var fontControl = Session.getModelController(FontControl.class); 146 var partyPK = getPartyPK(); 147 var fontWeightDetailValue = fontControl.getFontWeightDetailValueForUpdate(fontWeight); 148 var fontWeightDescription = fontControl.getFontWeightDescriptionForUpdate(fontWeight, getPreferredLanguage()); 149 var description = edit.getDescription(); 150 151 fontWeightDetailValue.setFontWeightName(edit.getFontWeightName()); 152 fontWeightDetailValue.setIsDefault(Boolean.valueOf(edit.getIsDefault())); 153 fontWeightDetailValue.setSortOrder(Integer.valueOf(edit.getSortOrder())); 154 155 fontControl.updateFontWeightFromValue(fontWeightDetailValue, partyPK); 156 157 if(fontWeightDescription == null && description != null) { 158 fontControl.createFontWeightDescription(fontWeight, getPreferredLanguage(), description, partyPK); 159 } else { 160 if(fontWeightDescription != null && description == null) { 161 fontControl.deleteFontWeightDescription(fontWeightDescription, partyPK); 162 } else { 163 if(fontWeightDescription != null && description != null) { 164 var fontWeightDescriptionValue = fontControl.getFontWeightDescriptionValue(fontWeightDescription); 165 166 fontWeightDescriptionValue.setDescription(description); 167 fontControl.updateFontWeightDescriptionFromValue(fontWeightDescriptionValue, partyPK); 168 } 169 } 170 } 171 } 172 173}