Java tutorial
/** * This file is part of alf.io. * * alf.io is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * alf.io is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with alf.io. If not, see <http://www.gnu.org/licenses/>. */ package alfio.manager.support; import alfio.manager.system.ConfigurationManager; import alfio.model.Event; import alfio.model.system.Configuration; import alfio.util.MonetaryUtil; import java.math.BigDecimal; import java.util.Optional; import java.util.function.BiFunction; import static alfio.model.system.ConfigurationKeys.*; import static org.apache.commons.lang3.StringUtils.*; public class FeeCalculator { private final BigDecimal fee; private final BigDecimal minimumFee; private final boolean percentage; private final int numTickets; private FeeCalculator(String feeAsString, String minimumFeeAsString, int numTickets) { this.percentage = feeAsString.endsWith("%"); this.fee = new BigDecimal(defaultIfEmpty(substringBefore(feeAsString, "%"), "0")); this.minimumFee = new BigDecimal(defaultIfEmpty(trimToNull(minimumFeeAsString), "0")); this.numTickets = numTickets; } private long calculate(long price) { long result = percentage ? MonetaryUtil.calcPercentage(price, fee, BigDecimal::longValueExact) : MonetaryUtil.unitToCents(fee); long minFee = MonetaryUtil.unitToCents(minimumFee, BigDecimal::longValueExact) * numTickets; return Math.max(result, minFee); } public static BiFunction<Integer, Long, Optional<Long>> getCalculator(Event event, ConfigurationManager configurationManager) { return (numTickets, amountInCent) -> { if (isPlatformModeEnabled(event, configurationManager)) { String feeAsString = configurationManager.getStringConfigValue( Configuration.from(event.getOrganizationId(), event.getId(), PLATFORM_FEE), "0"); String minimumFee = configurationManager.getStringConfigValue( Configuration.from(event.getOrganizationId(), event.getId(), PLATFORM_MINIMUM_FEE), "0"); return Optional.of(new FeeCalculator(feeAsString, minimumFee, numTickets).calculate(amountInCent)); } return Optional.empty(); }; } private static boolean isPlatformModeEnabled(Event event, ConfigurationManager configurationManager) { return configurationManager.getBooleanConfigValue( Configuration.from(event.getOrganizationId(), event.getId(), PLATFORM_MODE_ENABLED), false); } }