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.payment.server.logic; 018 019import com.echothree.control.user.payment.common.spec.PaymentProcessorResultCodeUniversalSpec; 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.payment.common.exception.DuplicatePaymentProcessorResultCodeNameException; 025import com.echothree.model.control.payment.common.exception.UnknownDefaultPaymentProcessorResultCodeException; 026import com.echothree.model.control.payment.common.exception.UnknownPaymentProcessorResultCodeNameException; 027import com.echothree.model.control.payment.server.control.PaymentProcessorResultCodeControl; 028import com.echothree.model.data.party.server.entity.Language; 029import com.echothree.model.data.payment.server.entity.PaymentProcessorResultCode; 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 PaymentProcessorResultCodeLogic 041 extends BaseLogic { 042 043 protected PaymentProcessorResultCodeLogic() { 044 super(); 045 } 046 047 public static PaymentProcessorResultCodeLogic getInstance() { 048 return CDI.current().select(PaymentProcessorResultCodeLogic.class).get(); 049 } 050 051 public PaymentProcessorResultCode createPaymentProcessorResultCode(final ExecutionErrorAccumulator eea, final String paymentProcessorResultCodeName, 052 final Boolean isDefault, final Integer sortOrder, final Language language, final String description, 053 final BasePK createdBy) { 054 var paymentProcessorResultCodeControl = Session.getModelController(PaymentProcessorResultCodeControl.class); 055 var paymentProcessorResultCode = paymentProcessorResultCodeControl.getPaymentProcessorResultCodeByName(paymentProcessorResultCodeName); 056 057 if(paymentProcessorResultCode == null) { 058 paymentProcessorResultCode = paymentProcessorResultCodeControl.createPaymentProcessorResultCode(paymentProcessorResultCodeName, isDefault, sortOrder, createdBy); 059 060 if(description != null) { 061 paymentProcessorResultCodeControl.createPaymentProcessorResultCodeDescription(paymentProcessorResultCode, language, description, createdBy); 062 } 063 } else { 064 handleExecutionError(DuplicatePaymentProcessorResultCodeNameException.class, eea, ExecutionErrors.DuplicatePaymentProcessorResultCodeName.name(), paymentProcessorResultCodeName); 065 } 066 067 return paymentProcessorResultCode; 068 } 069 070 public PaymentProcessorResultCode getPaymentProcessorResultCodeByName(final ExecutionErrorAccumulator eea, final String paymentProcessorResultCodeName, 071 final EntityPermission entityPermission) { 072 var paymentProcessorResultCodeControl = Session.getModelController(PaymentProcessorResultCodeControl.class); 073 var paymentProcessorResultCode = paymentProcessorResultCodeControl.getPaymentProcessorResultCodeByName(paymentProcessorResultCodeName, entityPermission); 074 075 if(paymentProcessorResultCode == null) { 076 handleExecutionError(UnknownPaymentProcessorResultCodeNameException.class, eea, ExecutionErrors.UnknownPaymentProcessorResultCodeName.name(), paymentProcessorResultCodeName); 077 } 078 079 return paymentProcessorResultCode; 080 } 081 082 public PaymentProcessorResultCode getPaymentProcessorResultCodeByName(final ExecutionErrorAccumulator eea, final String paymentProcessorResultCodeName) { 083 return getPaymentProcessorResultCodeByName(eea, paymentProcessorResultCodeName, EntityPermission.READ_ONLY); 084 } 085 086 public PaymentProcessorResultCode getPaymentProcessorResultCodeByNameForUpdate(final ExecutionErrorAccumulator eea, final String paymentProcessorResultCodeName) { 087 return getPaymentProcessorResultCodeByName(eea, paymentProcessorResultCodeName, EntityPermission.READ_WRITE); 088 } 089 090 public PaymentProcessorResultCode getPaymentProcessorResultCodeByUniversalSpec(final ExecutionErrorAccumulator eea, 091 final PaymentProcessorResultCodeUniversalSpec universalSpec, boolean allowDefault, final EntityPermission entityPermission) { 092 PaymentProcessorResultCode paymentProcessorResultCode = null; 093 var paymentProcessorResultCodeControl = Session.getModelController(PaymentProcessorResultCodeControl.class); 094 var paymentProcessorResultCodeName = universalSpec.getPaymentProcessorResultCodeName(); 095 var parameterCount = (paymentProcessorResultCodeName == null ? 0 : 1) + EntityInstanceLogic.getInstance().countPossibleEntitySpecs(universalSpec); 096 097 switch(parameterCount) { 098 case 0 -> { 099 if(allowDefault) { 100 paymentProcessorResultCode = paymentProcessorResultCodeControl.getDefaultPaymentProcessorResultCode(entityPermission); 101 102 if(paymentProcessorResultCode == null) { 103 handleExecutionError(UnknownDefaultPaymentProcessorResultCodeException.class, eea, ExecutionErrors.UnknownDefaultPaymentProcessorResultCode.name()); 104 } 105 } else { 106 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 107 } 108 } 109 case 1 -> { 110 if(paymentProcessorResultCodeName == null) { 111 var entityInstance = EntityInstanceLogic.getInstance().getEntityInstance(eea, universalSpec, 112 ComponentVendors.ECHO_THREE.name(), EntityTypes.PaymentProcessorResultCode.name()); 113 114 if(!eea.hasExecutionErrors()) { 115 paymentProcessorResultCode = paymentProcessorResultCodeControl.getPaymentProcessorResultCodeByEntityInstance(entityInstance, entityPermission); 116 } 117 } else { 118 paymentProcessorResultCode = getPaymentProcessorResultCodeByName(eea, paymentProcessorResultCodeName, entityPermission); 119 } 120 } 121 default -> 122 handleExecutionError(InvalidParameterCountException.class, eea, ExecutionErrors.InvalidParameterCount.name()); 123 } 124 125 return paymentProcessorResultCode; 126 } 127 128 public PaymentProcessorResultCode getPaymentProcessorResultCodeByUniversalSpec(final ExecutionErrorAccumulator eea, 129 final PaymentProcessorResultCodeUniversalSpec universalSpec, boolean allowDefault) { 130 return getPaymentProcessorResultCodeByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_ONLY); 131 } 132 133 public PaymentProcessorResultCode getPaymentProcessorResultCodeByUniversalSpecForUpdate(final ExecutionErrorAccumulator eea, 134 final PaymentProcessorResultCodeUniversalSpec universalSpec, boolean allowDefault) { 135 return getPaymentProcessorResultCodeByUniversalSpec(eea, universalSpec, allowDefault, EntityPermission.READ_WRITE); 136 } 137 138 public void deletePaymentProcessorResultCode(final ExecutionErrorAccumulator eea, final PaymentProcessorResultCode paymentProcessorResultCode, 139 final BasePK deletedBy) { 140 var paymentProcessorResultCodeControl = Session.getModelController(PaymentProcessorResultCodeControl.class); 141 142 paymentProcessorResultCodeControl.deletePaymentProcessorResultCode(paymentProcessorResultCode, deletedBy); 143 } 144}