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.SearchDefaultOperatorUniversalSpec; 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.DuplicateSearchDefaultOperatorNameException; 025import com.echothree.model.control.search.common.exception.UnknownDefaultSearchDefaultOperatorException; 026import com.echothree.model.control.search.common.exception.UnknownSearchDefaultOperatorNameException; 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.SearchDefaultOperator; 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 SearchDefaultOperatorLogic 041 extends BaseLogic { 042 043 protected SearchDefaultOperatorLogic() { 044 super(); 045 } 046 047 public static SearchDefaultOperatorLogic getInstance() { 048 return CDI.current().select(SearchDefaultOperatorLogic.class).get(); 049 } 050 051 public SearchDefaultOperator createSearchDefaultOperator(final ExecutionErrorAccumulator eea, final String searchDefaultOperatorName, 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 searchDefaultOperator = searchControl.getSearchDefaultOperatorByName(searchDefaultOperatorName); 056 057 if(searchDefaultOperator == null) { 058 searchDefaultOperator = searchControl.createSearchDefaultOperator(searchDefaultOperatorName, isDefault, sortOrder, createdBy); 059 060 if(description != null) { 061 searchControl.createSearchDefaultOperatorDescription(searchDefaultOperator, language, description, createdBy); 062 } 063 } else { 064 handleExecutionError(DuplicateSearchDefaultOperatorNameException.class, eea, ExecutionErrors.DuplicateSearchDefaultOperatorName.name(), searchDefaultOperatorName); 065 } 066 067 return searchDefaultOperator; 068 } 069 070 public SearchDefaultOperator getSearchDefaultOperatorByName(final ExecutionErrorAccumulator eea, final String searchDefaultOperatorName, 071 final EntityPermission entityPermission) { 072 var searchControl = Session.getModelController(SearchControl.class); 073 var searchDefaultOperator = searchControl.getSearchDefaultOperatorByName(searchDefaultOperatorName, entityPermission); 074 075 if(searchDefaultOperator == null) { 076 handleExecutionError(UnknownSearchDefaultOperatorNameException.class, eea, ExecutionErrors.UnknownSearchDefaultOperatorName.name(), searchDefaultOperatorName); 077 } 078 079 return searchDefaultOperator; 080 } 081 082 public SearchDefaultOperator getSearchDefaultOperatorByName(final ExecutionErrorAccumulator eea, final String searchDefaultOperatorName) { 083 return getSearchDefaultOperatorByName(eea, searchDefaultOperatorName, EntityPermission.READ_ONLY); 084 } 085 086 public SearchDefaultOperator getSearchDefaultOperatorByNameForUpdate(final ExecutionErrorAccumulator eea, final String searchDefaultOperatorName) { 087 return getSearchDefaultOperatorByName(eea, searchDefaultOperatorName, EntityPermission.READ_WRITE); 088 } 089 090 public SearchDefaultOperator getSearchDefaultOperatorByUniversalSpec(final ExecutionErrorAccumulator eea, 091 final SearchDefaultOperatorUniversalSpec universalSpec, boolean allowDefault, final EntityPermission entityPermission) { 092 SearchDefaultOperator searchDefaultOperator = null; 093 var searchControl = Session.getModelController(SearchControl.class); 094 var searchDefaultOperatorName = universalSpec.getSearchDefaultOperatorName(); 095 var parameterCount = (searchDefaultOperatorName == null ? 0 : 1) + EntityInstanceLogic.getInstance().countPossibleEntitySpecs(universalSpec); 096 097 switch(parameterCount) { 098 case 0 -> { 099 if(allowDefault) { 100 searchDefaultOperator = searchControl.getDefaultSearchDefaultOperator(entityPermission); 101 102 if(searchDefaultOperator == null) { 103 handleExecutionError(UnknownDefaultSearchDefaultOperatorException.class, eea, ExecutionErrors.UnknownDefaultSearchDefaultOperator.name()); 104 } 105 } else { 106 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 107 } 108 } 109 case 1 -> { 110 if(searchDefaultOperatorName == null) { 111 var entityInstance = EntityInstanceLogic.getInstance().getEntityInstance(eea, universalSpec, 112 ComponentVendors.ECHO_THREE.name(), EntityTypes.SearchDefaultOperator.name()); 113 114 if(!eea.hasExecutionErrors()) { 115 searchDefaultOperator = searchControl.getSearchDefaultOperatorByEntityInstance(entityInstance, entityPermission); 116 } 117 } else { 118 searchDefaultOperator = getSearchDefaultOperatorByName(eea, searchDefaultOperatorName, entityPermission); 119 } 120 } 121 default -> 122 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 123 } 124 125 return searchDefaultOperator; 126 } 127 128 public SearchDefaultOperator getSearchDefaultOperatorByUniversalSpec(final ExecutionErrorAccumulator eea, 129 final SearchDefaultOperatorUniversalSpec universalSpec, boolean allowDefault) { 130 return getSearchDefaultOperatorByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_ONLY); 131 } 132 133 public SearchDefaultOperator getSearchDefaultOperatorByUniversalSpecForUpdate(final ExecutionErrorAccumulator eea, 134 final SearchDefaultOperatorUniversalSpec universalSpec, boolean allowDefault) { 135 return getSearchDefaultOperatorByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_WRITE); 136 } 137 138 public void deleteSearchDefaultOperator(final ExecutionErrorAccumulator eea, final SearchDefaultOperator searchDefaultOperator, 139 final BasePK deletedBy) { 140 var searchControl = Session.getModelController(SearchControl.class); 141 142 searchControl.deleteSearchDefaultOperator(searchDefaultOperator, deletedBy); 143 } 144 145}