mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
208 lines
9.4 KiB
Java
208 lines
9.4 KiB
Java
// 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 com.google.domain.registry.flows.domain;
|
|
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.checkAllowedAccessToTld;
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.newAutorenewBillingEvent;
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.newAutorenewPollMessage;
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.validateFeeChallenge;
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.verifyNotReserved;
|
|
import static com.google.domain.registry.flows.domain.DomainFlowUtils.verifyPremiumNameIsNotBlocked;
|
|
import static com.google.domain.registry.model.eppoutput.Result.Code.Success;
|
|
import static com.google.domain.registry.model.ofy.ObjectifyService.ofy;
|
|
import static com.google.domain.registry.util.DateTimeUtils.END_OF_TIME;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
import com.google.common.net.InternetDomainName;
|
|
import com.google.domain.registry.dns.DnsQueue;
|
|
import com.google.domain.registry.flows.EppException;
|
|
import com.google.domain.registry.flows.EppException.CommandUseErrorException;
|
|
import com.google.domain.registry.flows.EppException.StatusProhibitsOperationException;
|
|
import com.google.domain.registry.flows.OwnedResourceMutateFlow;
|
|
import com.google.domain.registry.model.billing.BillingEvent;
|
|
import com.google.domain.registry.model.billing.BillingEvent.Reason;
|
|
import com.google.domain.registry.model.domain.DomainCommand.Update;
|
|
import com.google.domain.registry.model.domain.DomainResource;
|
|
import com.google.domain.registry.model.domain.fee.Fee;
|
|
import com.google.domain.registry.model.domain.fee.FeeUpdateExtension;
|
|
import com.google.domain.registry.model.domain.fee.FeeUpdateResponseExtension;
|
|
import com.google.domain.registry.model.domain.rgp.GracePeriodStatus;
|
|
import com.google.domain.registry.model.domain.rgp.RgpUpdateExtension;
|
|
import com.google.domain.registry.model.eppcommon.StatusValue;
|
|
import com.google.domain.registry.model.eppoutput.EppOutput;
|
|
import com.google.domain.registry.model.index.ForeignKeyIndex;
|
|
import com.google.domain.registry.model.poll.PollMessage;
|
|
import com.google.domain.registry.model.registry.Registry;
|
|
import com.google.domain.registry.model.reporting.HistoryEntry;
|
|
|
|
import com.googlecode.objectify.Ref;
|
|
|
|
import org.joda.money.Money;
|
|
import org.joda.time.DateTime;
|
|
|
|
/**
|
|
* An EPP flow that requests that a deleted domain be restored.
|
|
*
|
|
* @error {@link com.google.domain.registry.flows.EppException.UnimplementedExtensionException}
|
|
* @error {@link com.google.domain.registry.flows.domain.DomainFlowUtils.NotAuthorizedForTldException}
|
|
* @error {@link com.google.domain.registry.flows.ResourceFlowUtils.ResourceNotOwnedException}
|
|
* @error {@link com.google.domain.registry.flows.ResourceMutateFlow.ResourceToMutateDoesNotExistException}
|
|
* @error {@link DomainFlowUtils.CurrencyUnitMismatchException}
|
|
* @error {@link DomainFlowUtils.CurrencyValueScaleException}
|
|
* @error {@link DomainFlowUtils.DomainReservedException}
|
|
* @error {@link DomainFlowUtils.FeesMismatchException}
|
|
* @error {@link DomainFlowUtils.FeesRequiredForPremiumNameException}
|
|
* @error {@link DomainFlowUtils.PremiumNameBlockedException}
|
|
* @error {@link DomainFlowUtils.UnsupportedFeeAttributeException}
|
|
* @error {@link DomainRestoreRequestFlow.DomainNotEligibleForRestoreException}
|
|
* @error {@link DomainRestoreRequestFlow.RestoreCommandIncludesChangesException}
|
|
*/
|
|
public class DomainRestoreRequestFlow extends OwnedResourceMutateFlow<DomainResource, Update> {
|
|
|
|
protected FeeUpdateExtension feeUpdate;
|
|
protected Money restoreCost;
|
|
protected Money renewCost;
|
|
|
|
@Override
|
|
protected final void initResourceCreateOrMutateFlow() throws EppException {
|
|
registerExtensions(FeeUpdateExtension.class, RgpUpdateExtension.class);
|
|
}
|
|
|
|
@Override
|
|
protected final void verifyMutationOnOwnedResourceAllowed() throws EppException {
|
|
// No other changes can be specified on a restore request.
|
|
if (!command.noChangesPresent()) {
|
|
throw new RestoreCommandIncludesChangesException();
|
|
}
|
|
|
|
// Domain must be in pendingDelete and within the redemptionPeriod to be eligible for restore.
|
|
if (!existingResource.getStatusValues().contains(StatusValue.PENDING_DELETE)
|
|
|| !existingResource.getGracePeriodStatuses().contains(GracePeriodStatus.REDEMPTION)) {
|
|
throw new DomainNotEligibleForRestoreException();
|
|
}
|
|
|
|
String tld = existingResource.getTld();
|
|
checkAllowedAccessToTld(getAllowedTlds(), tld);
|
|
if (!superuser) {
|
|
verifyNotReserved(InternetDomainName.from(targetId), false);
|
|
verifyPremiumNameIsNotBlocked(targetId, tld, getClientId());
|
|
}
|
|
feeUpdate = eppInput.getSingleExtension(FeeUpdateExtension.class);
|
|
restoreCost = Registry.get(tld).getStandardRestoreCost();
|
|
renewCost = Registry.get(tld).getDomainRenewCost(targetId, 1, now);
|
|
validateFeeChallenge(targetId, tld, feeUpdate, restoreCost, renewCost);
|
|
}
|
|
|
|
@Override
|
|
protected final DomainResource createOrMutateResource() throws EppException {
|
|
// We don't preserve the original expiration time of the domain when we restore, since doing so
|
|
// would require us to know if they received a grace period refund when they deleted the domain,
|
|
// and to charge them for that again. Instead, we just say that all restores get a fresh year of
|
|
// registration and bill them for that accordingly.
|
|
DateTime newExpirationTime = now.plusYears(1);
|
|
|
|
// Bill for the restore.
|
|
BillingEvent.OneTime restoreEvent = new BillingEvent.OneTime.Builder()
|
|
.setReason(Reason.RESTORE)
|
|
.setTargetId(targetId)
|
|
.setClientId(getClientId())
|
|
.setCost(restoreCost)
|
|
.setEventTime(now)
|
|
.setBillingTime(now)
|
|
.setParent(historyEntry)
|
|
.build();
|
|
// Create a new autorenew billing event and poll message starting at the new expiration time.
|
|
BillingEvent.Recurring autorenewEvent = newAutorenewBillingEvent(existingResource)
|
|
.setEventTime(newExpirationTime)
|
|
.setRecurrenceEndTime(END_OF_TIME)
|
|
.setParent(historyEntry)
|
|
.build();
|
|
PollMessage.Autorenew autorenewPollMessage = newAutorenewPollMessage(existingResource)
|
|
.setEventTime(newExpirationTime)
|
|
.setAutorenewEndTime(END_OF_TIME)
|
|
.setParent(historyEntry)
|
|
.build();
|
|
|
|
// Also bill for the 1 year cost of a domain renew. This is to avoid registrants being able to
|
|
// game the system for premium names by renewing, deleting, and then restoring to get a free
|
|
// year. Note that this billing event has no grace period; it is effective immediately.
|
|
BillingEvent.OneTime renewEvent = new BillingEvent.OneTime.Builder()
|
|
.setReason(Reason.RENEW)
|
|
.setTargetId(targetId)
|
|
.setClientId(getClientId())
|
|
.setPeriodYears(1)
|
|
.setCost(renewCost)
|
|
.setEventTime(now)
|
|
.setBillingTime(now)
|
|
.setParent(historyEntry)
|
|
.build();
|
|
|
|
ofy().save().<Object>entities(restoreEvent, autorenewEvent, autorenewPollMessage, renewEvent);
|
|
return existingResource.asBuilder()
|
|
.setRegistrationExpirationTime(newExpirationTime)
|
|
.setDeletionTime(END_OF_TIME)
|
|
.setStatusValues(null)
|
|
.setGracePeriods(null)
|
|
.setDeletePollMessage(null)
|
|
.setAutorenewBillingEvent(Ref.create(autorenewEvent))
|
|
.setAutorenewPollMessage(Ref.create(autorenewPollMessage))
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
protected void modifyRelatedResources() {
|
|
// Update the relevant {@link ForeignKey} to cache the new deletion time.
|
|
ofy().save().entity(ForeignKeyIndex.create(newResource, newResource.getDeletionTime()));
|
|
ofy().delete().key(existingResource.getDeletePollMessage());
|
|
}
|
|
|
|
@Override
|
|
protected void enqueueTasks() {
|
|
DnsQueue.create().addDomainRefreshTask(existingResource.getFullyQualifiedDomainName());
|
|
}
|
|
|
|
@Override
|
|
protected final HistoryEntry.Type getHistoryEntryType() {
|
|
return HistoryEntry.Type.DOMAIN_RESTORE;
|
|
}
|
|
|
|
@Override
|
|
protected final EppOutput getOutput() {
|
|
return createOutput(
|
|
Success,
|
|
null,
|
|
(feeUpdate == null) ? null : ImmutableList.of(
|
|
new FeeUpdateResponseExtension.Builder()
|
|
.setCurrency(restoreCost.getCurrencyUnit())
|
|
.setFee(ImmutableList.of(
|
|
Fee.create(restoreCost.getAmount(), "restore"),
|
|
Fee.create(renewCost.getAmount(), "renew")))
|
|
.build()));
|
|
}
|
|
|
|
/** Restore command cannot have other changes specified. */
|
|
static class RestoreCommandIncludesChangesException extends CommandUseErrorException {
|
|
public RestoreCommandIncludesChangesException() {
|
|
super("Restore command cannot have other changes specified");
|
|
}
|
|
}
|
|
|
|
/** Domain is not eligible for restore. */
|
|
static class DomainNotEligibleForRestoreException extends StatusProhibitsOperationException {
|
|
public DomainNotEligibleForRestoreException() {
|
|
super("Domain is not eligible for restore");
|
|
}
|
|
}
|
|
}
|