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.item.server.logic.checksum;
018
019import com.echothree.util.common.message.ExecutionErrors;
020import com.echothree.util.server.message.ExecutionErrorAccumulator;
021import javax.enterprise.context.ApplicationScoped;
022import javax.enterprise.inject.spi.CDI;
023
024@ApplicationScoped
025public class BooklandEanChecksumLogic
026        extends BaseChecksumLogic
027        implements ItemAliasChecksumInterface {
028
029    protected BooklandEanChecksumLogic() {
030        super();
031    }
032
033    public static BooklandEanChecksumLogic getInstance() {
034        return CDI.current().select(BooklandEanChecksumLogic.class).get();
035    }
036
037    @Override
038    public void checkChecksum(final ExecutionErrorAccumulator eea, final String alias) {
039        if(alias.length() == 13) {
040            if(alias.matches("\\d{13}")) {
041                switch(Integer.parseInt(alias.substring(0, 3))) {
042                    case 978, 979 -> Ean13ChecksumLogic.getInstance().checkChecksum(eea, alias);
043                    default -> eea.addExecutionError(ExecutionErrors.IncorrectBooklandEanPrefix.name(), alias);
044                }
045            } else {
046                eea.addExecutionError(ExecutionErrors.IncorrectBooklandEanCharacter.name(), alias);
047            }
048        } else {
049            eea.addExecutionError(ExecutionErrors.IncorrectBooklandEanLength.name(), alias);
050        }
051    }
052
053}