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.content.server.command; 018 019import com.echothree.control.user.content.common.edit.ContentCategoryDescriptionEdit; 020import com.echothree.control.user.content.common.edit.ContentEditFactory; 021import com.echothree.control.user.content.common.form.EditContentCategoryDescriptionForm; 022import com.echothree.control.user.content.common.result.ContentResultFactory; 023import com.echothree.control.user.content.common.result.EditContentCategoryDescriptionResult; 024import com.echothree.control.user.content.common.spec.ContentCategoryDescriptionSpec; 025import com.echothree.model.control.content.server.control.ContentControl; 026import com.echothree.model.control.party.common.PartyTypes; 027import com.echothree.model.control.party.server.control.PartyControl; 028import com.echothree.model.control.security.common.SecurityRoleGroups; 029import com.echothree.model.control.security.common.SecurityRoles; 030import com.echothree.model.data.content.server.entity.ContentCategory; 031import com.echothree.model.data.content.server.entity.ContentCategoryDescription; 032import com.echothree.model.data.user.common.pk.UserVisitPK; 033import com.echothree.util.common.message.ExecutionErrors; 034import com.echothree.util.common.validation.FieldDefinition; 035import com.echothree.util.common.validation.FieldType; 036import com.echothree.util.common.command.EditMode; 037import com.echothree.util.server.control.BaseAbstractEditCommand; 038import com.echothree.util.server.control.CommandSecurityDefinition; 039import com.echothree.util.server.control.PartyTypeDefinition; 040import com.echothree.util.server.control.SecurityRoleDefinition; 041import com.echothree.util.server.persistence.Session; 042import java.util.Arrays; 043import java.util.Collections; 044import java.util.List; 045import javax.enterprise.context.RequestScoped; 046 047@RequestScoped 048public class EditContentCategoryDescriptionCommand 049 extends BaseAbstractEditCommand<ContentCategoryDescriptionSpec, ContentCategoryDescriptionEdit, EditContentCategoryDescriptionResult, ContentCategoryDescription, ContentCategory> { 050 051 private final static CommandSecurityDefinition COMMAND_SECURITY_DEFINITION; 052 private final static List<FieldDefinition> SPEC_FIELD_DEFINITIONS; 053 private final static List<FieldDefinition> EDIT_FIELD_DEFINITIONS; 054 055 static { 056 COMMAND_SECURITY_DEFINITION = new CommandSecurityDefinition(Collections.unmodifiableList(Arrays.asList( 057 new PartyTypeDefinition(PartyTypes.UTILITY.name(), null), 058 new PartyTypeDefinition(PartyTypes.EMPLOYEE.name(), Collections.unmodifiableList(Arrays.asList( 059 new SecurityRoleDefinition(SecurityRoleGroups.ContentCategory.name(), SecurityRoles.Description.name()) 060 ))) 061 ))); 062 063 SPEC_FIELD_DEFINITIONS = Collections.unmodifiableList(Arrays.asList( 064 new FieldDefinition("ContentCollectionName", FieldType.ENTITY_NAME, true, null, null), 065 new FieldDefinition("ContentCatalogName", FieldType.ENTITY_NAME, true, null, null), 066 new FieldDefinition("ContentCategoryName", FieldType.ENTITY_NAME, true, null, null), 067 new FieldDefinition("LanguageIsoName", FieldType.ENTITY_NAME, true, null, null) 068 )); 069 070 EDIT_FIELD_DEFINITIONS = Collections.unmodifiableList(Arrays.asList( 071 new FieldDefinition("Description", FieldType.STRING, true, 1L, 132L) 072 )); 073 } 074 075 /** Creates a new instance of EditContentCategoryDescriptionCommand */ 076 public EditContentCategoryDescriptionCommand() { 077 super(COMMAND_SECURITY_DEFINITION, SPEC_FIELD_DEFINITIONS, EDIT_FIELD_DEFINITIONS); 078 } 079 080 @Override 081 public EditContentCategoryDescriptionResult getResult() { 082 return ContentResultFactory.getEditContentCategoryDescriptionResult(); 083 } 084 085 @Override 086 public ContentCategoryDescriptionEdit getEdit() { 087 return ContentEditFactory.getContentCategoryDescriptionEdit(); 088 } 089 090 @Override 091 public ContentCategoryDescription getEntity(EditContentCategoryDescriptionResult result) { 092 var contentControl = Session.getModelController(ContentControl.class); 093 ContentCategoryDescription contentCategoryDescription = null; 094 var contentCollectionName = spec.getContentCollectionName(); 095 var contentCollection = contentControl.getContentCollectionByName(contentCollectionName); 096 097 if(contentCollection != null) { 098 var contentCatalogName = spec.getContentCatalogName(); 099 var contentCatalog = contentControl.getContentCatalogByName(contentCollection, contentCatalogName); 100 101 if(contentCatalog != null) { 102 var contentCategoryName = spec.getContentCategoryName(); 103 var contentCategory = contentControl.getContentCategoryByName(contentCatalog, contentCategoryName); 104 105 if(contentCategory != null) { 106 var partyControl = Session.getModelController(PartyControl.class); 107 var languageIsoName = spec.getLanguageIsoName(); 108 var language = partyControl.getLanguageByIsoName(languageIsoName); 109 110 result.setContentCategory(contentControl.getContentCategoryTransfer(getUserVisit(), contentCategory)); 111 112 if(language != null) { 113 if(editMode.equals(EditMode.LOCK) || editMode.equals(EditMode.ABANDON)) { 114 contentCategoryDescription = contentControl.getContentCategoryDescription(contentCategory, language); 115 } else { // EditMode.UPDATE 116 contentCategoryDescription = contentControl.getContentCategoryDescriptionForUpdate(contentCategory, language); 117 } 118 119 if(contentCategoryDescription == null) { 120 addExecutionError(ExecutionErrors.UnknownContentCategoryDescription.name()); 121 } 122 } else { 123 addExecutionError(ExecutionErrors.UnknownLanguageIsoName.name(), languageIsoName); 124 } 125 } else { 126 addExecutionError(ExecutionErrors.UnknownContentCategoryName.name(), contentCategoryName); 127 } 128 } else { 129 addExecutionError(ExecutionErrors.UnknownContentCatalogName.name(), contentCatalogName); 130 } 131 } else { 132 addExecutionError(ExecutionErrors.UnknownContentCollectionName.name(), contentCollectionName); 133 } 134 135 return contentCategoryDescription; 136 } 137 138 @Override 139 public ContentCategory getLockEntity(ContentCategoryDescription contentCategoryDescription) { 140 return contentCategoryDescription.getContentCategory(); 141 } 142 143 @Override 144 public void fillInResult(EditContentCategoryDescriptionResult result, ContentCategoryDescription contentCategoryDescription) { 145 var contentControl = Session.getModelController(ContentControl.class); 146 147 result.setContentCategoryDescription(contentControl.getContentCategoryDescriptionTransfer(getUserVisit(), contentCategoryDescription)); 148 } 149 150 @Override 151 public void doLock(ContentCategoryDescriptionEdit edit, ContentCategoryDescription contentCategoryDescription) { 152 edit.setDescription(contentCategoryDescription.getDescription()); 153 } 154 155 @Override 156 public void doUpdate(ContentCategoryDescription contentCategoryDescription) { 157 var contentControl = Session.getModelController(ContentControl.class); 158 var contentCategoryDescriptionValue = contentControl.getContentCategoryDescriptionValue(contentCategoryDescription); 159 contentCategoryDescriptionValue.setDescription(edit.getDescription()); 160 161 contentControl.updateContentCategoryDescriptionFromValue(contentCategoryDescriptionValue, getPartyPK()); 162 } 163 164}