diff --git a/src/registrar/models/utility/generic_helper.py b/src/registrar/models/utility/generic_helper.py index 6137b4c4b..8319416df 100644 --- a/src/registrar/models/utility/generic_helper.py +++ b/src/registrar/models/utility/generic_helper.py @@ -5,6 +5,7 @@ import logging from typing import Any from urllib.parse import urlparse, urlunparse, urlencode + logger = logging.getLogger(__name__) @@ -269,19 +270,25 @@ class CreateOrUpdateOrganizationTypeHelper: return True -def replace_url_queryparams(url_to_modify: str, query_params: dict[Any, list]): +def replace_url_queryparams(url_to_modify: str, query_params, convert_list_to_csv=False): """ Replaces the query parameters of a given URL. Because this replaces them, this can be used to either add, delete, or modify. - Args: url_to_modify (str): The URL whose query parameters need to be modified. query_params (dict): Dictionary of query parameters to use. - + convert_list_to_csv (bool): If the queryparam contains a list of items, + convert it to a csv representation instead. Returns: str: The modified URL with the updated query parameters. """ + # Ensure each key in query_params maps to a single value, not a list + if convert_list_to_csv: + for key, value in query_params.items(): + if isinstance(value, list): + query_params[key] = ",".join(value) + # Split the URL into parts url_parts = list(urlparse(url_to_modify)) diff --git a/src/registrar/templates/domain_request_intro.html b/src/registrar/templates/domain_request_intro.html index d6d3b3b7f..285777a80 100644 --- a/src/registrar/templates/domain_request_intro.html +++ b/src/registrar/templates/domain_request_intro.html @@ -13,12 +13,12 @@

We’ll use the information you provide to verify your organization’s eligibility for a .gov domain. We’ll also verify that the domain you request meets our guidelines.

Time to complete the form

If you have all the information you need, - completing your domain request might take around 15 minutes.

- {% if has_profile_feature_flag %} -

How we’ll reach you

-

While reviewing your domain request, we may need to reach out with questions. We’ll also email you when we complete our review If the contact information below is not correct, visit your profile to make updates.

- {% include "includes/profile_information.html" with user=user%} - {% endif %} + completing your domain request might take around 15 minutes.

+ {% if has_profile_feature_flag %} +

How we’ll reach you

+

While reviewing your domain request, we may need to reach out with questions. We’ll also email you when we complete our review If the contact information below is not correct, visit your profile to make updates.

+ {% include "includes/profile_information.html" with user=user%} + {% endif %} {% block form_buttons %} diff --git a/src/registrar/tests/test_views.py b/src/registrar/tests/test_views.py index 7c4cb1334..f5b055a2b 100644 --- a/src/registrar/tests/test_views.py +++ b/src/registrar/tests/test_views.py @@ -704,6 +704,16 @@ class UserProfileTests(TestWithUser, WebTest): response = self.client.get("/user-profile", follow=True) self.assertEqual(response.status_code, 404) + @less_console_noise_decorator + def test_user_profile_back_button_when_coming_from_domain_request(self): + """tests user profile when profile_feature is on, + and when they are redirected from the domain request page""" + with override_flag("profile_feature", active=True): + response = self.client.get("/user-profile?return_to_request=True") + self.assertContains(response, "Your profile") + self.assertContains(response, "Go back to your domain request") + self.assertNotContains(response, "Back to manage your domains") + @less_console_noise_decorator def test_domain_detail_profile_feature_on(self): """test that domain detail view when profile_feature is on""" diff --git a/src/registrar/views/user_profile.py b/src/registrar/views/user_profile.py index e7e50baec..41a462f49 100644 --- a/src/registrar/views/user_profile.py +++ b/src/registrar/views/user_profile.py @@ -4,6 +4,7 @@ from enum import Enum import logging +from urllib.parse import parse_qs, unquote from urllib.parse import quote @@ -14,6 +15,7 @@ from django.urls import NoReverseMatch, reverse from registrar.models import ( Contact, ) +from registrar.models.utility.generic_helper import replace_url_queryparams from registrar.views.utility.permission_views import UserProfilePermissionView from waffle.decorators import flag_is_active, waffle_flag @@ -39,6 +41,11 @@ class UserProfileView(UserProfilePermissionView, FormMixin): self._refresh_session_and_object(request) form = self.form_class(instance=self.object) context = self.get_context_data(object=self.object, form=form) + + return_to_request = request.GET.get("return_to_request") + if return_to_request: + context["return_to_request"] = True + return self.render_to_response(context) def _refresh_session_and_object(self, request): @@ -48,6 +55,9 @@ class UserProfileView(UserProfilePermissionView, FormMixin): @waffle_flag("profile_feature") # type: ignore def dispatch(self, request, *args, **kwargs): # type: ignore + # Store the original queryparams to persist them + query_params = request.META["QUERY_STRING"] + request.session["query_params"] = query_params return super().dispatch(request, *args, **kwargs) def get_context_data(self, **kwargs): @@ -64,7 +74,16 @@ class UserProfileView(UserProfilePermissionView, FormMixin): def get_success_url(self): """Redirect to the user's profile page.""" - return reverse("user-profile") + + query_params = {} + if "query_params" in self.session: + params = unquote(self.session["query_params"]) + query_params = parse_qs(params) + + # Preserve queryparams and add them back to the url + base_url = reverse("user-profile") + new_redirect = replace_url_queryparams(base_url, query_params, convert_list_to_csv=True) + return new_redirect def post(self, request, *args, **kwargs): """Handle post requests (form submissions)"""