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

BREAKING: VCHolder multitenant binding #3391

Merged
merged 4 commits into from
Dec 10, 2024

Conversation

jamshale
Copy link
Contributor

@jamshale jamshale commented Dec 9, 2024

I know this "soft binding" was done for a reason, but it appears the multitenant storage issue is happening because of it. It was causing credentials to be stored in the base wallet. It's the only class with the soft binding.

Also for some reason the tenant authentication method was missing on this endpoint for some reason and had no openapi examples :/

@dbluhm Do you have insight into the soft_binding? I can't really remember what it's for.

@jamshale jamshale linked an issue Dec 9, 2024 that may be closed by this pull request
@jamshale jamshale requested review from dbluhm and PatStLouis December 9, 2024 21:58
@PatStLouis
Copy link
Contributor

@jamshale the missing tenant auth would be on me as I added this route. As for the soft binding I'm not aware of it's concept and seems to be at another layer in the code. Great find

PatStLouis
PatStLouis previously approved these changes Dec 10, 2024
@dbluhm
Copy link
Contributor

dbluhm commented Dec 10, 2024

The goal of the "soft binding" was to enable binding a separate vc holder implementation to, for example, delegate storage of credentials to an external service. This was a need that we had but it would seem I didn't consider implications on multi-tenancy deeply enough.

@dbluhm
Copy link
Contributor

dbluhm commented Dec 10, 2024

I'd like to take just a bit of time to understand how the soft binding caused this behavior. I'll report back very soon or else we can go ahead and merge with Patrick's approval.

@jamshale
Copy link
Contributor Author

No problem, let's wait a bit then.

@dbluhm
Copy link
Contributor

dbluhm commented Dec 10, 2024

Discussed in discord but for posterity's sake recording the discussion here.

I pulled down Jamie's changes and dug around a bit and came up with a solution that enable us to retain the soft binding while making sure the correct profile was being used with the VC Holder interface.

I also did a bit of tuning on the VC routes open api, building off of the updates Jamie had already made, correcting a few more things that were causing the OpenAPI to not accurately reflect what the endpoints expected. One of those changes included making the return value of GET /vc/credentials an object with a results attribute rather than a flat list. This is mostly a quirk of the Marshmallow + OpenAPI generation framework we use but it doesn't support expressing a flat list (to my knowledge). Additionally, this aligns with conventions used elsewhere in ACA-Py.

This does technically constitute a breaking change and also means that this endpoint no longer perfectly aligns with https://w3c-ccg.github.io/vc-api/#get-credentials. @PatStLouis recommended we go ahead with this change regardless.

@dbluhm dbluhm requested a review from PatStLouis December 10, 2024 18:50
Copy link

sonarcloud bot commented Dec 10, 2024

Quality Gate Failed Quality Gate failed

Failed conditions
0.0% Coverage on New Code (required ≥ 80%)

See analysis details on SonarQube Cloud

@PatStLouis
Copy link
Contributor

I will suggest the same change to the vc-api group so we maintain alignment.

@@ -153,7 +160,7 @@ async def store_credential_route(request: web.BaseRequest):
options = LDProofVCOptions.deserialize(options)

await manager.verify_credential(vc)
await manager.store_credential(vc, options, cred_id)
Copy link
Contributor

Choose a reason for hiding this comment

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

The intention here was to enable the controller to set tags and pass them through options if they want to build a custom tag querying integration. This can be revisited at a later time, and we would likely provide the tags directly to the store_credential function instead of the options object.

@swcurran
Copy link
Contributor

Can someone please put into a comment a paragraph about the breaking change.

PR 3391 impacts those using…

@jamshale
Copy link
Contributor Author

I'm going to squash and merge this soon. I can look into the backports after.

@dbluhm
Copy link
Contributor

dbluhm commented Dec 10, 2024

@swcurran

PR #3391 impacts those using the GET /vc/credentials endpoint; the response is now an object with a single results attribute where it was previously just a flat list.

@swcurran swcurran changed the title VCHolder multitenant binding BREAKING: VCHolder multitenant binding Dec 10, 2024
@dbluhm
Copy link
Contributor

dbluhm commented Dec 10, 2024

We can safely ignore Sonar Cloud's complaint; most of the lines it's complaining about are just OpenAPI schemas and the remainder are covered by the scenario testing.

@jamshale jamshale merged commit a2a6dd2 into openwallet-foundation:main Dec 10, 2024
10 of 11 checks passed
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.

Multitenancy credential storage
4 participants