Delete end-date sunrise, landrush, and sunrush phases

This also deletes the associated commands and domain application specific
entities.

We haven't used any of these TLD phases since early 2015 and have no
intent to do so in the future, so it makes sense to delete them now so we
don't have to carry them through the Registry 3.0 migration.

Note that, while there are data model changes, there should be no required
data migrations. The fields and entities being removed will simply remain
as orphans. I confirmed that the removed types (such as the SUNRUSH_ADD
GracePeriodType) are no longer used in production data, and left types
that are still used, e.g. BillingEvent.Flag.LANDRUSH or
HistoryEntry.Type.ALLOCATE.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=228752843
This commit is contained in:
mcilwain 2019-01-10 12:09:14 -08:00 committed by Ben McIlwain
parent c74ffd7559
commit 580302898d
282 changed files with 344 additions and 17634 deletions

View file

@ -21,7 +21,6 @@ import static com.google.common.base.Strings.nullToEmpty;
import com.google.common.collect.ImmutableSet;
import google.registry.model.EppResource;
import google.registry.model.contact.ContactResource;
import google.registry.model.domain.DomainApplication;
import google.registry.model.domain.DomainResource;
import google.registry.model.host.HostResource;
import google.registry.model.translators.EnumToAttributeAdapter.EppEnum;
@ -77,9 +76,9 @@ public enum StatusValue implements EppEnum {
/**
* A status for a resource undergoing asynchronous creation.
*
* <p>We only use this for unallocated applications.
* <p>This status is here for completeness, but it is not used by our system.
*/
PENDING_CREATE(AllowedOn.APPLICATIONS),
PENDING_CREATE(AllowedOn.NONE),
/**
* A status for a resource indicating that deletion has been requested but has not yet happened.
@ -92,18 +91,16 @@ public enum StatusValue implements EppEnum {
* Otherwise, domains go through an extended deletion process, consisting of a 30-day redemption
* grace period followed by a 5-day "pending delete" period before they are actually 100% deleted.
* These domains have the PENDING_DELETE status throughout that 35-day window.
*
* <p>Applications are deleted synchronously and never have this status.
*/
PENDING_DELETE(AllowedOn.ALL_BUT_APPLICATIONS),
PENDING_DELETE(AllowedOn.ALL),
/**
* A status for a resource with an unresolved transfer request.
*
* <p>Applications can't be transferred. Hosts transfer indirectly via superordinate domain.
* <p>Hosts transfer indirectly via superordinate domain.
*/
// TODO(b/34844887): Remove PENDING_TRANSFER from all host resources and forbid it here.
PENDING_TRANSFER(AllowedOn.ALL_BUT_APPLICATIONS),
PENDING_TRANSFER(AllowedOn.ALL),
/**
* A status for a resource undergoing an asynchronous update.
@ -130,11 +127,9 @@ public enum StatusValue implements EppEnum {
/** Enum to help clearly list which resource types a status value is allowed to be present on. */
private enum AllowedOn {
ALL(ContactResource.class, DomainApplication.class, DomainResource.class, HostResource.class),
ALL(ContactResource.class, DomainResource.class, HostResource.class),
NONE,
DOMAINS(DomainResource.class),
APPLICATIONS(DomainApplication.class),
ALL_BUT_APPLICATIONS(ContactResource.class, DomainResource.class, HostResource.class);
DOMAINS(DomainResource.class);
private final ImmutableSet<Class<? extends EppResource>> classes;