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

Fix mutable reference headers #1095 #1096

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

AsahiSoftWareEngineer
Copy link

What kind of change does this PR introduce?

Bug fix Isses #1095

What is the current behavior?

Isses No. #1095

What is the new behavior?

Prevent unintended header changes when sharing the same ClientOptions.

@AsahiSoftWareEngineer AsahiSoftWareEngineer marked this pull request as draft April 2, 2025 17:15
@AsahiSoftWareEngineer AsahiSoftWareEngineer marked this pull request as ready for review April 2, 2025 17:18
@AsahiSoftWareEngineer
Copy link
Author

AsahiSoftWareEngineer commented Apr 2, 2025

@olirice Sorry, I can not set reviewer. That's why , I request a review here.
Please review my pull request.

@olirice olirice requested a review from grdsdev April 3, 2025 15:01
@coveralls
Copy link

coveralls commented Apr 3, 2025

Pull Request Test Coverage Report for Build 14248085953

Details

  • 12 of 12 (100.0%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.2%) to 86.07%

Totals Coverage Status
Change from base Build 14094370943: 0.2%
Covered Lines: 346
Relevant Lines: 402

💛 - Coveralls

Copy link
Contributor

@grdsdev grdsdev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fix @AsahiSoftWareEngineer just some clarifications before merging.

Comment on lines 293 to 298
header = copy.deepcopy(self._create_auth_header(access_token))
self.options.headers["Authorization"] = header
self.auth._headers["Authorization"] = header
self.postgrest.session.headers["Authorization"] = header
self.storage.session.headers["Authorization"] = header

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure the issue this is solving, could you elaborate?

Copy link
Author

@AsahiSoftWareEngineer AsahiSoftWareEngineer Apr 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, Below source code is not necessary.

  self.postgrest.session.headers["Authorization"] = header
  self.storage.session.headers["Authorization"] = header

Caused by using deep-copy, before source code was not working. (auth._headers is not refreshed).
That's why, I changed to reassign deep-copied self._create_auth_header(access_token)methods

@AsahiSoftWareEngineer
Copy link
Author

AsahiSoftWareEngineer commented Apr 3, 2025

@grdsdev Sorry, I fixed it. Please re-review pull request.

@@ -69,7 +70,7 @@ def __init__(

self.supabase_url = supabase_url
self.supabase_key = supabase_key
self.options = options
self.options = copy.deepcopy(options)
options.headers.update(self._get_auth_headers())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just noticed this line updates the passed param, not the instance options variable.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rewrite options.headers.update(self._get_auth_headers()) to self.options.headers.update(self._get_auth_headers()).

@silentworks
Copy link
Contributor

I think this would be better addressed by using the .replace method on the ClientOptions class. This should probably be added to the docs as the go to way of updating anything inside of the ClientOptions.

I wrote your test below using the .replace method and it all passes.

def test_mutable_headers_issue():
    url = os.environ.get("SUPABASE_TEST_URL")
    key = os.environ.get("SUPABASE_TEST_KEY")

    shared_options = ClientOptions(
        headers={"Authorization": "Bearer initial-token", "x-site": "supanew.site"}
    )

    client1 = create_client(url, key, shared_options)
    client2 = create_client(url, key, shared_options)
    client1.options.replace({"headers": {"Authorization": "Bearer modified-token"}})

    assert client2.options.headers["Authorization"] == "Bearer initial-token"
    assert client2.options.headers["x-site"] == "supanew.site"
    assert client1.options.headers["x-site"] == "supanew.site"

@AsahiSoftWareEngineer
Copy link
Author

AsahiSoftWareEngineer commented Apr 5, 2025

@silentworks Sure. I think of trying, but I do not know Can I rewrite docs.(Have I permissions??)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants