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.club.server.logic; 018 019import com.echothree.model.control.club.common.exception.UnknownClubNameException; 020import com.echothree.model.control.club.server.control.ClubControl; 021import com.echothree.model.data.club.server.entity.Club; 022import com.echothree.util.common.message.ExecutionErrors; 023import com.echothree.util.server.control.BaseLogic; 024import com.echothree.util.server.message.ExecutionErrorAccumulator; 025import com.echothree.util.server.persistence.EntityPermission; 026import javax.enterprise.context.ApplicationScoped; 027import javax.enterprise.inject.spi.CDI; 028import javax.inject.Inject; 029 030@ApplicationScoped 031public class ClubLogic 032 extends BaseLogic { 033 034 protected ClubLogic() { 035 super(); 036 } 037 038 public static ClubLogic getInstance() { 039 return CDI.current().select(ClubLogic.class).get(); 040 } 041 042 @Inject 043 ClubControl clubControl; 044 045 public Club getClubByName(final ExecutionErrorAccumulator eea, final String clubName, 046 final EntityPermission entityPermission) { 047 var club = clubControl.getClubByName(clubName, entityPermission); 048 049 if(club == null) { 050 handleExecutionError(UnknownClubNameException.class, eea, ExecutionErrors.UnknownClubName.name(), clubName); 051 } 052 053 return club; 054 } 055 056 public Club getClubByName(final ExecutionErrorAccumulator eea, final String clubName) { 057 return getClubByName(eea, clubName, EntityPermission.READ_ONLY); 058 } 059 060 public Club getClubByNameForUpdate(final ExecutionErrorAccumulator eea, final String clubName) { 061 return getClubByName(eea, clubName, EntityPermission.READ_WRITE); 062 } 063 064}