mirror of
https://github.com/google/nomulus.git
synced 2025-05-13 07:57:13 +02:00
Deny non-active registrars access to non-free EPP commands
Registrars that are PENDING or SUSPENDED should not have access to EPP commands that cost money, as in either case it's not likely we'd actually be able to get payment from said registrar. For this reason we already prevented access to the domain create flow for non-active registrars. This commit extends that to other commands that cost money, including renewals, restores, and transfer requests. Note that implicit autorenews will still occur for suspended registrars, as in our point-in-time data model there's no good way to prevent them. So when a registrar is suspended for non-payment, the game plan is to get all of their domains transferred out to a registrar that will pay as soon as possible. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=223173677
This commit is contained in:
parent
dbdc69916a
commit
11da64bee2
13 changed files with 172 additions and 15 deletions
|
@ -231,6 +231,8 @@ An EPP flow that updates a contact.
|
|||
|
||||
An EPP flow that allocates a new domain resource from a domain application.
|
||||
|
||||
Note that this flow is only run by superusers.
|
||||
|
||||
|
||||
### Errors
|
||||
|
||||
|
@ -295,7 +297,7 @@ An EPP flow that creates a new application for a domain resource.
|
|||
* Specified extension is not implemented.
|
||||
* 2201
|
||||
* Registrar is not authorized to access this TLD.
|
||||
* Registrar must be active in order to create domains or applications.
|
||||
* Registrar must be active in order to perform this operation.
|
||||
* 2302
|
||||
* Resource with this id already exists.
|
||||
* This name has already been claimed by a sunrise applicant.
|
||||
|
@ -556,7 +558,7 @@ An EPP flow that creates a new domain resource.
|
|||
* 2201
|
||||
* Only a tool can pass a metadata extension.
|
||||
* Registrar is not authorized to access this TLD.
|
||||
* Registrar must be active in order to create domains or applications.
|
||||
* Registrar must be active in order to perform this operation.
|
||||
* 2302
|
||||
* Resource with this id already exists.
|
||||
* 2303
|
||||
|
@ -689,6 +691,7 @@ comes in at the exact millisecond that the domain would have expired.
|
|||
* 2201
|
||||
* The specified resource belongs to another client.
|
||||
* Registrar is not authorized to access this TLD.
|
||||
* Registrar must be active in order to perform this operation.
|
||||
* 2303
|
||||
* Resource with this id does not exist.
|
||||
* 2304
|
||||
|
@ -745,6 +748,7 @@ regardless of what the original expiration time was.
|
|||
* 2201
|
||||
* The specified resource belongs to another client.
|
||||
* Registrar is not authorized to access this TLD.
|
||||
* Registrar must be active in order to perform this operation.
|
||||
* 2303
|
||||
* Resource with this id does not exist.
|
||||
* 2304
|
||||
|
@ -907,6 +911,7 @@ new ones with the correct approval time).
|
|||
* 2201
|
||||
* Authorization info is required to request a transfer.
|
||||
* Registrar is not authorized to access this TLD.
|
||||
* Registrar must be active in order to perform this operation.
|
||||
* 2202
|
||||
* Authorization information for accessing resource is invalid.
|
||||
* 2300
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue