-
Notifications
You must be signed in to change notification settings - Fork 29
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
feat: added method to show correct RP organization_name in OP pages #305
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
82d6172
feat: added get_client_organisation_name method to retrieve the corre…
rglauco 4740ea5
chore: fix CIE organization_name
rglauco 6403674
fix: updated cryptography rsa import to 42.0.2
rglauco ab82391
chore: bump to 1.3.1
rglauco 2238184
fix: corrected proposed change
rglauco 0f1c63a
fix: scope issue
rglauco e4e61f6
Update spid_cie_oidc/provider/views/consent_page_view.py
rglauco d718b27
Update spid_cie_oidc/provider/views/__init__.py
rglauco b6e8a15
Update spid_cie_oidc/provider/views/authz_request_view.py
rglauco de5969c
fix: reinstated method name
rglauco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.3.0" | ||
__version__ = "1.3.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -32,6 +32,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||
OIDCFED_PROVIDER_PROFILES_ACR_4_REFRESH, | ||||||||||||||||||||||||||||||||||||||||||||||||
OIDCFED_PROVIDER_PROFILES_ID_TOKEN_CLAIMS | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
logger = logging.getLogger(__name__) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -40,7 +41,7 @@ class OpBase: | |||||||||||||||||||||||||||||||||||||||||||||||
Baseclass with common methods for OPs | ||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def redirect_response_data(self, redirect_uri:str, **kwargs) -> HttpResponseRedirect: | ||||||||||||||||||||||||||||||||||||||||||||||||
def redirect_response_data(self, redirect_uri: str, **kwargs) -> HttpResponseRedirect: | ||||||||||||||||||||||||||||||||||||||||||||||||
if "?" in redirect_uri: | ||||||||||||||||||||||||||||||||||||||||||||||||
qstring = "&" | ||||||||||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -114,7 +115,7 @@ def validate_authz_request_object(self, req) -> TrustChain: | |||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
jwks = get_jwks( | ||||||||||||||||||||||||||||||||||||||||||||||||
rp_trust_chain.metadata['openid_relying_party'], | ||||||||||||||||||||||||||||||||||||||||||||||||
federation_jwks = rp_trust_chain.jwks | ||||||||||||||||||||||||||||||||||||||||||||||||
federation_jwks=rp_trust_chain.jwks | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
jwk = self.find_jwk(header, jwks) | ||||||||||||||||||||||||||||||||||||||||||||||||
if not jwk: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -178,7 +179,7 @@ def check_session(self, request) -> OidcSession: | |||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
session_not_after = session.created + timezone.timedelta( | ||||||||||||||||||||||||||||||||||||||||||||||||
minutes = OIDCFED_PROVIDER_AUTH_CODE_MAX_AGE | ||||||||||||||||||||||||||||||||||||||||||||||||
minutes=OIDCFED_PROVIDER_AUTH_CODE_MAX_AGE | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
if session_not_after < timezone.localtime(): | ||||||||||||||||||||||||||||||||||||||||||||||||
raise ExpiredAuthCode( | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -199,12 +200,12 @@ def check_client_assertion(self, client_id: str, client_assertion: str) -> bool: | |||||||||||||||||||||||||||||||||||||||||||||||
_op = self.get_issuer() | ||||||||||||||||||||||||||||||||||||||||||||||||
_op_eid = _op.sub | ||||||||||||||||||||||||||||||||||||||||||||||||
_op_eid_authz_endpoint = [_op.metadata['openid_provider']['authorization_endpoint']] | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||||||||||||
ClientAssertion(**payload) | ||||||||||||||||||||||||||||||||||||||||||||||||
except Exception as e: | ||||||||||||||||||||||||||||||||||||||||||||||||
raise Exception(f"Client Assertion: json schema validation error: {e}") | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
if isinstance(_aud, str): | ||||||||||||||||||||||||||||||||||||||||||||||||
_aud = [_aud] | ||||||||||||||||||||||||||||||||||||||||||||||||
_allowed_auds = _aud + _op_eid_authz_endpoint | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -250,9 +251,9 @@ def get_jwt_common_data(self): | |||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_access_token( | ||||||||||||||||||||||||||||||||||||||||||||||||
self, iss_sub:str, sub:str, authz: OidcSession, commons:dict | ||||||||||||||||||||||||||||||||||||||||||||||||
self, iss_sub: str, sub: str, authz: OidcSession, commons: dict | ||||||||||||||||||||||||||||||||||||||||||||||||
) -> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
access_token = { | ||||||||||||||||||||||||||||||||||||||||||||||||
"iss": iss_sub, | ||||||||||||||||||||||||||||||||||||||||||||||||
"sub": sub, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -266,8 +267,8 @@ def get_access_token( | |||||||||||||||||||||||||||||||||||||||||||||||
return access_token | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_id_token_claims( | ||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz:OidcSession | ||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz: OidcSession | ||||||||||||||||||||||||||||||||||||||||||||||||
) -> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||
_provider_profile = getattr(settings, 'OIDCFED_DEFAULT_PROVIDER_PROFILE', OIDCFED_DEFAULT_PROVIDER_PROFILE) | ||||||||||||||||||||||||||||||||||||||||||||||||
claims = {} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -276,21 +277,21 @@ def get_id_token_claims( | |||||||||||||||||||||||||||||||||||||||||||||||
return claims | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
for claim in ( | ||||||||||||||||||||||||||||||||||||||||||||||||
authz.authz_request.get( | ||||||||||||||||||||||||||||||||||||||||||||||||
"claims", {} | ||||||||||||||||||||||||||||||||||||||||||||||||
).get("id_token", {}).keys() | ||||||||||||||||||||||||||||||||||||||||||||||||
authz.authz_request.get( | ||||||||||||||||||||||||||||||||||||||||||||||||
"claims", {} | ||||||||||||||||||||||||||||||||||||||||||||||||
).get("id_token", {}).keys() | ||||||||||||||||||||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||||||||||||||||||||
if claim in allowed_id_token_claims and authz.user.attributes.get(claim, None): | ||||||||||||||||||||||||||||||||||||||||||||||||
claims[claim] = authz.user.attributes[claim] | ||||||||||||||||||||||||||||||||||||||||||||||||
return claims | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_id_token( | ||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||
iss_sub:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
sub:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz:OidcSession, | ||||||||||||||||||||||||||||||||||||||||||||||||
jwt_at:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
commons:dict | ||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||
iss_sub: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
sub: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz: OidcSession, | ||||||||||||||||||||||||||||||||||||||||||||||||
jwt_at: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
commons: dict | ||||||||||||||||||||||||||||||||||||||||||||||||
) -> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
id_token = { | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -312,19 +313,19 @@ def get_id_token( | |||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_refresh_token( | ||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||
iss_sub:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
sub:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz:OidcSession, | ||||||||||||||||||||||||||||||||||||||||||||||||
jwt_at:str, | ||||||||||||||||||||||||||||||||||||||||||||||||
commons:dict | ||||||||||||||||||||||||||||||||||||||||||||||||
iss_sub: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
sub: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
authz: OidcSession, | ||||||||||||||||||||||||||||||||||||||||||||||||
jwt_at: str, | ||||||||||||||||||||||||||||||||||||||||||||||||
commons: dict | ||||||||||||||||||||||||||||||||||||||||||||||||
) -> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||
# refresh token is scope offline_access and prompt == consent | ||||||||||||||||||||||||||||||||||||||||||||||||
refresh_acrs = OIDCFED_PROVIDER_PROFILES_ACR_4_REFRESH[OIDCFED_DEFAULT_PROVIDER_PROFILE] | ||||||||||||||||||||||||||||||||||||||||||||||||
acrs = authz.authz_request.get('acr_values', []) | ||||||||||||||||||||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||||||||||||||||||||
"offline_access" in authz.authz_request['scope'] and | ||||||||||||||||||||||||||||||||||||||||||||||||
'consent' in authz.authz_request['prompt'] and | ||||||||||||||||||||||||||||||||||||||||||||||||
set(refresh_acrs).intersection(set(acrs)) | ||||||||||||||||||||||||||||||||||||||||||||||||
"offline_access" in authz.authz_request['scope'] and | ||||||||||||||||||||||||||||||||||||||||||||||||
'consent' in authz.authz_request['prompt'] and | ||||||||||||||||||||||||||||||||||||||||||||||||
set(refresh_acrs).intersection(set(acrs)) | ||||||||||||||||||||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||||||||||||||||||||
refresh_token = { | ||||||||||||||||||||||||||||||||||||||||||||||||
"sub": sub, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -337,8 +338,8 @@ def get_refresh_token( | |||||||||||||||||||||||||||||||||||||||||||||||
refresh_token.update(commons) | ||||||||||||||||||||||||||||||||||||||||||||||||
return refresh_token | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_iss_token_data(self, session : OidcSession, issuer: FederationEntityConfiguration): | ||||||||||||||||||||||||||||||||||||||||||||||||
_sub = session.pairwised_sub(provider_id = issuer.sub) | ||||||||||||||||||||||||||||||||||||||||||||||||
def get_iss_token_data(self, session: OidcSession, issuer: FederationEntityConfiguration): | ||||||||||||||||||||||||||||||||||||||||||||||||
_sub = session.pairwised_sub(provider_id=issuer.sub) | ||||||||||||||||||||||||||||||||||||||||||||||||
iss_sub = issuer.sub | ||||||||||||||||||||||||||||||||||||||||||||||||
commons = self.get_jwt_common_data() | ||||||||||||||||||||||||||||||||||||||||||||||||
jwk = issuer.jwks_core[0] | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -363,7 +364,7 @@ def get_iss_token_data(self, session : OidcSession, issuer: FederationEntityConf | |||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_expires_in(self, iat: int, exp: int): | ||||||||||||||||||||||||||||||||||||||||||||||||
return timezone.timedelta( | ||||||||||||||||||||||||||||||||||||||||||||||||
seconds = exp - iat | ||||||||||||||||||||||||||||||||||||||||||||||||
seconds=exp - iat | ||||||||||||||||||||||||||||||||||||||||||||||||
).seconds | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def attributes_names_to_release(self, request, session: OidcSession) -> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -391,6 +392,18 @@ def attributes_names_to_release(self, request, session: OidcSession) -> dict: | |||||||||||||||||||||||||||||||||||||||||||||||
for i in filtered_user_claims.keys() | ||||||||||||||||||||||||||||||||||||||||||||||||
] | ||||||||||||||||||||||||||||||||||||||||||||||||
return dict( | ||||||||||||||||||||||||||||||||||||||||||||||||
i18n_user_claims = i18n_user_claims, | ||||||||||||||||||||||||||||||||||||||||||||||||
filtered_user_claims = filtered_user_claims | ||||||||||||||||||||||||||||||||||||||||||||||||
i18n_user_claims=i18n_user_claims, | ||||||||||||||||||||||||||||||||||||||||||||||||
filtered_user_claims=filtered_user_claims | ||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
def get_client_organisation_name(self, tc): | ||||||||||||||||||||||||||||||||||||||||||||||||
rglauco marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||
fed_metadata = tc.metadata.get("federation_entity", {}) | ||||||||||||||||||||||||||||||||||||||||||||||||
name = fed_metadata.get("organization_name", "") | ||||||||||||||||||||||||||||||||||||||||||||||||
if not name: | ||||||||||||||||||||||||||||||||||||||||||||||||
op_metadata = tc.metadata.get("openid_relying_party", {}) | ||||||||||||||||||||||||||||||||||||||||||||||||
name = op_metadata.get("organization_name", "") | ||||||||||||||||||||||||||||||||||||||||||||||||
if not name: | ||||||||||||||||||||||||||||||||||||||||||||||||
name = op_metadata.get("client_name", "") | ||||||||||||||||||||||||||||||||||||||||||||||||
if not name: | ||||||||||||||||||||||||||||||||||||||||||||||||
name = op_metadata.get("client_id", "") | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. accepted change, corrected a typo: |
||||||||||||||||||||||||||||||||||||||||||||||||
return name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
organization