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.model.control.search.server.logic; 018 019import com.echothree.control.user.search.common.spec.SearchKindUniversalSpec; 020import com.echothree.model.control.core.common.ComponentVendors; 021import com.echothree.model.control.core.common.EntityTypes; 022import com.echothree.model.control.core.common.exception.InvalidParameterCountException; 023import com.echothree.model.control.core.server.logic.EntityInstanceLogic; 024import com.echothree.model.control.search.common.exception.DuplicateSearchKindNameException; 025import com.echothree.model.control.search.common.exception.UnknownDefaultSearchKindException; 026import com.echothree.model.control.search.common.exception.UnknownSearchKindNameException; 027import com.echothree.model.control.search.server.control.SearchControl; 028import com.echothree.model.data.party.server.entity.Language; 029import com.echothree.model.data.search.server.entity.SearchKind; 030import com.echothree.util.common.message.ExecutionErrors; 031import com.echothree.util.common.persistence.BasePK; 032import com.echothree.util.server.control.BaseLogic; 033import com.echothree.util.server.message.ExecutionErrorAccumulator; 034import com.echothree.util.server.persistence.EntityPermission; 035import com.echothree.util.server.persistence.Session; 036import javax.enterprise.context.ApplicationScoped; 037import javax.enterprise.inject.spi.CDI; 038 039@ApplicationScoped 040public class SearchKindLogic 041 extends BaseLogic { 042 043 protected SearchKindLogic() { 044 super(); 045 } 046 047 public static SearchKindLogic getInstance() { 048 return CDI.current().select(SearchKindLogic.class).get(); 049 } 050 051 public SearchKind createSearchKind(final ExecutionErrorAccumulator eea, final String searchKindName, 052 final Boolean isDefault, final Integer sortOrder, final Language language, final String description, 053 final BasePK createdBy) { 054 var searchControl = Session.getModelController(SearchControl.class); 055 var searchKind = searchControl.getSearchKindByName(searchKindName); 056 057 if(searchKind == null) { 058 searchKind = searchControl.createSearchKind(searchKindName, isDefault, sortOrder, createdBy); 059 060 if(description != null) { 061 searchControl.createSearchKindDescription(searchKind, language, description, createdBy); 062 } 063 } else { 064 handleExecutionError(DuplicateSearchKindNameException.class, eea, ExecutionErrors.DuplicateSearchKindName.name(), searchKindName); 065 } 066 067 return searchKind; 068 } 069 070 public SearchKind getSearchKindByName(final ExecutionErrorAccumulator eea, final String searchKindName, 071 final EntityPermission entityPermission) { 072 var searchControl = Session.getModelController(SearchControl.class); 073 var searchKind = searchControl.getSearchKindByName(searchKindName, entityPermission); 074 075 if(searchKind == null) { 076 handleExecutionError(UnknownSearchKindNameException.class, eea, ExecutionErrors.UnknownSearchKindName.name(), searchKindName); 077 } 078 079 return searchKind; 080 } 081 082 public SearchKind getSearchKindByName(final ExecutionErrorAccumulator eea, final String searchKindName) { 083 return getSearchKindByName(eea, searchKindName, EntityPermission.READ_ONLY); 084 } 085 086 public SearchKind getSearchKindByNameForUpdate(final ExecutionErrorAccumulator eea, final String searchKindName) { 087 return getSearchKindByName(eea, searchKindName, EntityPermission.READ_WRITE); 088 } 089 090 public SearchKind getSearchKindByUniversalSpec(final ExecutionErrorAccumulator eea, 091 final SearchKindUniversalSpec universalSpec, boolean allowDefault, final EntityPermission entityPermission) { 092 SearchKind searchKind = null; 093 var searchControl = Session.getModelController(SearchControl.class); 094 var searchKindName = universalSpec.getSearchKindName(); 095 var parameterCount = (searchKindName == null ? 0 : 1) + EntityInstanceLogic.getInstance().countPossibleEntitySpecs(universalSpec); 096 097 switch(parameterCount) { 098 case 0 -> { 099 if(allowDefault) { 100 searchKind = searchControl.getDefaultSearchKind(entityPermission); 101 102 if(searchKind == null) { 103 handleExecutionError(UnknownDefaultSearchKindException.class, eea, ExecutionErrors.UnknownDefaultSearchKind.name()); 104 } 105 } else { 106 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 107 } 108 } 109 case 1 -> { 110 if(searchKindName == null) { 111 var entityInstance = EntityInstanceLogic.getInstance().getEntityInstance(eea, universalSpec, 112 ComponentVendors.ECHO_THREE.name(), EntityTypes.SearchKind.name()); 113 114 if(!eea.hasExecutionErrors()) { 115 searchKind = searchControl.getSearchKindByEntityInstance(entityInstance, entityPermission); 116 } 117 } else { 118 searchKind = getSearchKindByName(eea, searchKindName, entityPermission); 119 } 120 } 121 default -> 122 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 123 } 124 125 return searchKind; 126 } 127 128 public SearchKind getSearchKindByUniversalSpec(final ExecutionErrorAccumulator eea, 129 final SearchKindUniversalSpec universalSpec, boolean allowDefault) { 130 return getSearchKindByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_ONLY); 131 } 132 133 public SearchKind getSearchKindByUniversalSpecForUpdate(final ExecutionErrorAccumulator eea, 134 final SearchKindUniversalSpec universalSpec, boolean allowDefault) { 135 return getSearchKindByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_WRITE); 136 } 137 138 public void deleteSearchKind(final ExecutionErrorAccumulator eea, final SearchKind searchKind, 139 final BasePK deletedBy) { 140 var searchControl = Session.getModelController(SearchControl.class); 141 142 searchControl.deleteSearchKind(searchKind, deletedBy); 143 } 144 145}