mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 16:07:15 +02:00
Add TldSpecificLogicEngine to open source release
It's now being depended on by other parts of the codebase. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=126415327
This commit is contained in:
parent
273fc0014d
commit
38bd9d7b4d
1 changed files with 143 additions and 0 deletions
143
java/google/registry/pricing/TldSpecificLogicEngine.java
Normal file
143
java/google/registry/pricing/TldSpecificLogicEngine.java
Normal file
|
@ -0,0 +1,143 @@
|
|||
// Copyright 2016 The Domain Registry Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package google.registry.pricing;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkArgument;
|
||||
import static com.google.common.base.Preconditions.checkState;
|
||||
import static google.registry.pricing.PricingEngineProxy.getPricesForDomainName;
|
||||
import static google.registry.util.PreconditionsUtils.checkArgumentNotNull;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
import google.registry.model.ImmutableObject;
|
||||
import google.registry.model.domain.fee.EapFee;
|
||||
import google.registry.model.domain.fee.Fee;
|
||||
import google.registry.model.pricing.PremiumPricingEngine.DomainPrices;
|
||||
import google.registry.model.registry.Registry;
|
||||
|
||||
import org.joda.money.CurrencyUnit;
|
||||
import org.joda.money.Money;
|
||||
import org.joda.time.DateTime;
|
||||
|
||||
/**
|
||||
* Provides specialized pricing, billing and update logic per TLD. TODO: consider making these
|
||||
* methods of Registry.
|
||||
*/
|
||||
public final class TldSpecificLogicEngine {
|
||||
|
||||
private static final String EAP_DESCRIPTION_FORMAT = "Early Access Period, fee expires: %s";
|
||||
|
||||
/**
|
||||
* A collection of fees for a specific event.
|
||||
*/
|
||||
public static final class EppCommandOperations extends ImmutableObject {
|
||||
private final CurrencyUnit currency;
|
||||
private final ImmutableList<Fee> fees;
|
||||
|
||||
EppCommandOperations(CurrencyUnit currency, ImmutableList<Fee> fees) {
|
||||
this.currency = checkArgumentNotNull(
|
||||
currency, "Currency may not be null in EppCommandOperations.");
|
||||
checkArgument(!fees.isEmpty(), "You must specify one or more fees.");
|
||||
this.fees = checkArgumentNotNull(fees, "Fees may not be null in EppCommandOperations.");
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the total cost of all fees for the event.
|
||||
*/
|
||||
public Money getTotalCost() {
|
||||
Money result = Money.of(currency, 0);
|
||||
for (Fee fee : fees) {
|
||||
result = result.plus(fee.getCost());
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all costs for the event as a list of fees.
|
||||
*/
|
||||
public ImmutableList<Fee> getFees() {
|
||||
return fees;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currency for all fees in the event.
|
||||
*/
|
||||
public final CurrencyUnit getCurrency() {
|
||||
return currency;
|
||||
}
|
||||
}
|
||||
|
||||
private TldSpecificLogicEngine() {}
|
||||
|
||||
/**
|
||||
* Returns a new "create" price for the Pricer.
|
||||
*/
|
||||
public static EppCommandOperations getCreatePrice(
|
||||
Registry registry, String domainName, DateTime date, int years) {
|
||||
DomainPrices prices = getPricesForDomainName(domainName, date);
|
||||
CurrencyUnit currency = registry.getCurrency();
|
||||
ImmutableList.Builder<Fee> feeBuilder = new ImmutableList.Builder<>();
|
||||
|
||||
// Add Create cost.
|
||||
feeBuilder.add(Fee.create(prices.getCreateCost().multipliedBy(years).getAmount(), "create"));
|
||||
|
||||
// Add EAP Fee.
|
||||
EapFee eapFee = registry.getEapFeeFor(date);
|
||||
Money eapFeeCost = eapFee.getCost();
|
||||
checkState(eapFeeCost.getCurrencyUnit().equals(currency));
|
||||
if (!eapFeeCost.getAmount().equals(Money.zero(currency).getAmount())) {
|
||||
feeBuilder.add(
|
||||
Fee.create(
|
||||
eapFeeCost.getAmount(),
|
||||
String.format(EAP_DESCRIPTION_FORMAT, eapFee.getPeriod().upperEndpoint())));
|
||||
}
|
||||
|
||||
return new EppCommandOperations(currency, feeBuilder.build());
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a new renew price for the pricer.
|
||||
*
|
||||
* <p>domain name, number of years and date must be defined before calling this.
|
||||
*/
|
||||
public static EppCommandOperations getRenewPrice(
|
||||
Registry registry, String domainName, DateTime date, int years) {
|
||||
// TODO(mmuller): add registration type.
|
||||
DomainPrices prices = getPricesForDomainName(domainName, date);
|
||||
return new EppCommandOperations(
|
||||
registry.getCurrency(),
|
||||
ImmutableList.of(
|
||||
Fee.create(prices.getRenewCost().multipliedBy(years).getAmount(), "renew")));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a new restore price for the pricer.
|
||||
*
|
||||
* <p>TODO: This probably needs to include the renew price.
|
||||
*
|
||||
* <p>domain name, number of years and date must be defined before calling this.
|
||||
*/
|
||||
public static EppCommandOperations getRestorePrice(
|
||||
Registry registry, String domainName, DateTime date, int years) {
|
||||
DomainPrices prices = getPricesForDomainName(domainName, date);
|
||||
return new EppCommandOperations(
|
||||
registry.getCurrency(),
|
||||
ImmutableList.of(
|
||||
Fee.create(prices.getRenewCost().multipliedBy(years).getAmount(), "renew"),
|
||||
Fee.create(registry.getStandardRestoreCost().getAmount(), "restore")));
|
||||
}
|
||||
|
||||
// TODO(b/29089413): Add support for transfer prices once this is plumbed through the flows.
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue