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.FontStyleEdit; 021import com.echothree.control.user.core.common.form.EditFontStyleForm; 022import com.echothree.control.user.core.common.result.CoreResultFactory; 023import com.echothree.control.user.core.common.result.EditFontStyleResult; 024import com.echothree.control.user.core.common.spec.FontStyleSpec; 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.FontStyle; 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 java.util.List; 040import javax.enterprise.context.Dependent; 041import javax.inject.Inject; 042 043@Dependent 044public class EditFontStyleCommand 045 extends BaseAbstractEditCommand<FontStyleSpec, FontStyleEdit, EditFontStyleResult, FontStyle, FontStyle> { 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.FontStyle.name(), SecurityRoles.Edit.name()) 056 )) 057 )); 058 059 SPEC_FIELD_DEFINITIONS = List.of( 060 new FieldDefinition("FontStyleName", FieldType.ENTITY_NAME, true, null, null) 061 ); 062 063 EDIT_FIELD_DEFINITIONS = List.of( 064 new FieldDefinition("FontStyleName", 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 @Inject 072 FontControl fontControl; 073 074 075 /** Creates a new instance of EditFontStyleCommand */ 076 public EditFontStyleCommand() { 077 super(COMMAND_SECURITY_DEFINITION, SPEC_FIELD_DEFINITIONS, EDIT_FIELD_DEFINITIONS); 078 } 079 080 @Override 081 public EditFontStyleResult getResult() { 082 return CoreResultFactory.getEditFontStyleResult(); 083 } 084 085 @Override 086 public FontStyleEdit getEdit() { 087 return CoreEditFactory.getFontStyleEdit(); 088 } 089 090 @Override 091 public FontStyle getEntity(EditFontStyleResult result) { 092 FontStyle fontStyle; 093 var fontStyleName = spec.getFontStyleName(); 094 095 if(editMode.equals(EditMode.LOCK) || editMode.equals(EditMode.ABANDON)) { 096 fontStyle = fontControl.getFontStyleByName(fontStyleName); 097 } else { // EditMode.UPDATE 098 fontStyle = fontControl.getFontStyleByNameForUpdate(fontStyleName); 099 } 100 101 if(fontStyle == null) { 102 addExecutionError(ExecutionErrors.UnknownFontStyleName.name(), fontStyleName); 103 } 104 105 return fontStyle; 106 } 107 108 @Override 109 public FontStyle getLockEntity(FontStyle fontStyle) { 110 return fontStyle; 111 } 112 113 @Override 114 public void fillInResult(EditFontStyleResult result, FontStyle fontStyle) { 115 result.setFontStyle(fontControl.getFontStyleTransfer(getUserVisit(), fontStyle)); 116 } 117 118 @Override 119 public void doLock(FontStyleEdit edit, FontStyle fontStyle) { 120 var fontStyleDescription = fontControl.getFontStyleDescription(fontStyle, getPreferredLanguage()); 121 var fontStyleDetail = fontStyle.getLastDetail(); 122 123 edit.setFontStyleName(fontStyleDetail.getFontStyleName()); 124 edit.setIsDefault(fontStyleDetail.getIsDefault().toString()); 125 edit.setSortOrder(fontStyleDetail.getSortOrder().toString()); 126 127 if(fontStyleDescription != null) { 128 edit.setDescription(fontStyleDescription.getDescription()); 129 } 130 } 131 132 @Override 133 public void canUpdate(FontStyle fontStyle) { 134 var fontStyleName = edit.getFontStyleName(); 135 var duplicateFontStyle = fontControl.getFontStyleByName(fontStyleName); 136 137 if(duplicateFontStyle != null && !fontStyle.equals(duplicateFontStyle)) { 138 addExecutionError(ExecutionErrors.DuplicateFontStyleName.name(), fontStyleName); 139 } 140 } 141 142 @Override 143 public void doUpdate(FontStyle fontStyle) { 144 var partyPK = getPartyPK(); 145 var fontStyleDetailValue = fontControl.getFontStyleDetailValueForUpdate(fontStyle); 146 var fontStyleDescription = fontControl.getFontStyleDescriptionForUpdate(fontStyle, getPreferredLanguage()); 147 var description = edit.getDescription(); 148 149 fontStyleDetailValue.setFontStyleName(edit.getFontStyleName()); 150 fontStyleDetailValue.setIsDefault(Boolean.valueOf(edit.getIsDefault())); 151 fontStyleDetailValue.setSortOrder(Integer.valueOf(edit.getSortOrder())); 152 153 fontControl.updateFontStyleFromValue(fontStyleDetailValue, partyPK); 154 155 if(fontStyleDescription == null && description != null) { 156 fontControl.createFontStyleDescription(fontStyle, getPreferredLanguage(), description, partyPK); 157 } else { 158 if(fontStyleDescription != null && description == null) { 159 fontControl.deleteFontStyleDescription(fontStyleDescription, partyPK); 160 } else { 161 if(fontStyleDescription != null && description != null) { 162 var fontStyleDescriptionValue = fontControl.getFontStyleDescriptionValue(fontStyleDescription); 163 164 fontStyleDescriptionValue.setDescription(description); 165 fontControl.updateFontStyleDescriptionFromValue(fontStyleDescriptionValue, partyPK); 166 } 167 } 168 } 169 } 170 171}