Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deleted domains block a domain application with the same name from being approved #1264

Open
3 tasks
Tracked by #3597
allly-b opened this issue Nov 6, 2023 · 6 comments · May be fixed by #3718
Open
3 tasks
Tracked by #3597

Deleted domains block a domain application with the same name from being approved #1264

allly-b opened this issue Nov 6, 2023 · 6 comments · May be fixed by #3718
Labels
bug Something that isn't working as intended dev issue is for the dev team Feature: ❔ Request a Domain

Comments

@allly-b
Copy link
Contributor

allly-b commented Nov 6, 2023

Current Behavior

If you have a domain in the status of deleted, then have a domain application with the domain name as the same name, you cannot approve that application because it looks like that domain already exists.

Expected Behavior

An analyst should be able to approve a domain application that just happens to have the same name as a different domain that has already been deleted

Steps to Reproduce

1.create a domain in the status of deleted
2. make a domain application have that domain name
3. approve the domain application
4. see error

AC

  • If a domain is deleted then a domain request of the same name can be approved and another domain of that same name created.
  • the above can be repeated such that there are multiple deleted domains with the same name, yet only one domain request of that name exists in a non-deleted state at any given moment.
  • go through the code and audit any instance where we are getting a domain/domain info based on the name, assuming only one value will be returned. If found, update the code where needed to account for 2+ domains existing with the same name (only one in a non-deleted state)
    • if you don't find any changes are needed just mention that on your PR for a reviewer to double check

Environment

No response

Additional Context

The following are notes for implementation based on previous instructions, use your best judgment as these aren't AC, you may find you want to make different changes when evaluating this ticket:

  • change domain.py model such that the name field has unique set to false
  • change the domain request approve function so that the when it checks if a domain already exists it ignores a domain in the deleted
  • change the Domain so that it uses the uniqueConstraint setting see below.

 class Meta:
        constraints = [
            models.UniqueConstraint(
                fields=["name"], #field to check
                condition=~models.Q(state=State.DELETED),  # state!= deleted
                name="unique_name_except_deleted"
            )
        ]

You need to go through the whole codebase to find any time we are getting the domain (or domain info) object by domain name because we want to avoid an error occurring where our code expected only one domain returned but 2 are returned. There may not be any case of this, as we should be using pks, but definitely take the time to double check this.

Issue Links

Related to: #804

@allly-b allly-b added dev issue is for the dev team bug Something that isn't working as intended labels Nov 6, 2023
@PaulKuykendall PaulKuykendall added next later Not MVP and removed next labels Nov 9, 2023
@PaulKuykendall PaulKuykendall moved this from 👶 New to 🍦 Backlog in .gov Product Board Nov 9, 2023
@vickyszuchin vickyszuchin removed the later Not MVP label Mar 12, 2024
@vickyszuchin
Copy link

This ticket has been story pointed and meets DoR criteria. Moving to "Ready".

@vickyszuchin vickyszuchin moved this from 🍦 Backlog to 🎯 Ready in .gov Product Board Apr 30, 2024
@allly-b
Copy link
Contributor Author

allly-b commented Jun 10, 2024

This shouldn't have been marked as ready. There is an open question on, if we do this, do we want to do anything else to show how these two domains are different. This is alluded to in the additional context. Priority wise, is this really a medium? (do within the next few sprints)?

@vickyszuchin vickyszuchin moved this from 🎯 Ready to 🍦 Backlog in .gov Product Board Jun 11, 2024
@h-m-f-t
Copy link
Member

h-m-f-t commented Aug 5, 2024

During refinement, we talked about how we want to resolve this. We could rename the older name or have a new state, a delete-archive-tombstone thing. @abroddrick will think about and update. 🧠

@vickyszuchin
Copy link

Per refinement meeting, this ticket needs @abroddrick to update (scope and ACs) and re-story point.

@allly-b allly-b moved this from 🍦 Backlog to ⚙ Dev Parking Lot in .gov Product Board Jan 17, 2025
@h-m-f-t
Copy link
Member

h-m-f-t commented Jan 22, 2025

We approved a domain name that was previously deleted, and "solved" it by renaming the deleted domain. See Slack thread.

When we complete this issue, an A/C should likely be to rename the deleted domain back to what it was.

@allly-b allly-b added this to the End of PoP handoff milestone Jan 29, 2025
@allly-b allly-b removed their assignment Jan 29, 2025
@lizpearl
Copy link
Contributor

lizpearl commented Feb 3, 2025

Discussed in eng huddle and the proposed solution is to use a Unique Constraint with condition.

@allly-b allly-b self-assigned this Feb 10, 2025
@allly-b allly-b moved this from ⚙ Dev Parking Lot to 🍦 Backlog in .gov Product Board Feb 10, 2025
@allly-b allly-b moved this from 🍦 Backlog to 🎯 Ready in .gov Product Board Feb 11, 2025
@allly-b allly-b removed their assignment Feb 11, 2025
@allly-b allly-b added the bundled Parent ticket will be sprinted and this ticket is included in the parent label Feb 28, 2025
@therealslimhsiehdy therealslimhsiehdy linked a pull request Mar 28, 2025 that will close this issue
32 tasks
@katypies katypies removed the bundled Parent ticket will be sprinted and this ticket is included in the parent label Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something that isn't working as intended dev issue is for the dev team Feature: ❔ Request a Domain
Projects
Status: 🎯 Ready
Development

Successfully merging a pull request may close this issue.

6 participants