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.model.control.printer.server.logic; 018 019import com.echothree.model.control.printer.server.control.PrinterControl; 020import com.echothree.model.data.party.server.entity.Party; 021import com.echothree.model.data.printer.server.entity.PartyPrinterGroupUse; 022import com.echothree.model.data.printer.server.entity.PrinterGroupUseType; 023import com.echothree.util.common.message.ExecutionErrors; 024import com.echothree.util.common.persistence.BasePK; 025import com.echothree.util.server.control.BaseLogic; 026import com.echothree.util.server.message.ExecutionErrorAccumulator; 027import javax.enterprise.context.ApplicationScoped; 028import javax.enterprise.inject.spi.CDI; 029import javax.inject.Inject; 030 031@ApplicationScoped 032public class PartyPrinterGroupUseLogic 033 extends BaseLogic { 034 035 @Inject 036 PrinterControl printerControl; 037 038 protected PartyPrinterGroupUseLogic() { 039 super(); 040 } 041 042 public static PartyPrinterGroupUseLogic getInstance() { 043 return CDI.current().select(PartyPrinterGroupUseLogic.class).get(); 044 } 045 046 public PartyPrinterGroupUse getPartyPrinterGroupUse(final ExecutionErrorAccumulator ema, final Party party, final PrinterGroupUseType printerGroupUseType, 047 final BasePK createdBy) { 048 var partyPrinterGroupUse = printerControl.getPartyPrinterGroupUse(party, printerGroupUseType); 049 050 if(partyPrinterGroupUse == null) { 051 var printerGroup = printerControl.getDefaultPrinterGroup(); 052 053 if(printerGroup == null) { 054 addExecutionError(ema, ExecutionErrors.MissingDefaultPartyPrinterGroup.name()); 055 } else { 056 partyPrinterGroupUse = printerControl.createPartyPrinterGroupUse(party, printerGroupUseType, printerGroup, createdBy); 057 } 058 } 059 060 return partyPrinterGroupUse; 061 } 062 063 public PartyPrinterGroupUse getPartyPrinterGroupUseUsingNames(final ExecutionErrorAccumulator ema, final Party party, final String printerGroupUseTypeName, 064 final BasePK createdBy) { 065 var printerGroupUseType = printerControl.getPrinterGroupUseTypeByName(printerGroupUseTypeName); 066 PartyPrinterGroupUse partyPrinterGroupUse = null; 067 068 if(printerGroupUseType == null) { 069 addExecutionError(ema, ExecutionErrors.UnknownPrinterGroupUseTypeName.name(), printerGroupUseTypeName); 070 } else { 071 partyPrinterGroupUse = getPartyPrinterGroupUse(ema, party, printerGroupUseType, createdBy); 072 } 073 074 return partyPrinterGroupUse; 075 } 076 077}