2022-01-11 18:49:06 +00:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
from authlib.oauth2.rfc6749 import AuthorizationCodeMixin
|
|
|
|
from authlib.oauth2.rfc6749 import ClientMixin
|
|
|
|
from authlib.oauth2.rfc6749 import TokenMixin
|
|
|
|
from authlib.oauth2.rfc6749 import util
|
2023-04-08 18:09:52 +00:00
|
|
|
from canaille.backends.ldap.ldapobject import LDAPObject
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Client(LDAPObject, ClientMixin):
|
2023-03-11 18:46:12 +00:00
|
|
|
ldap_object_class = ["oauthClient"]
|
2022-01-11 18:49:06 +00:00
|
|
|
base = "ou=clients,ou=oauth"
|
2023-03-08 15:25:50 +00:00
|
|
|
rdn_attribute = "oauthClientID"
|
2022-10-24 15:18:46 +00:00
|
|
|
|
|
|
|
client_info_attributes = {
|
2022-01-11 16:57:58 +00:00
|
|
|
"client_id": "oauthClientID",
|
2022-10-24 15:18:46 +00:00
|
|
|
"client_secret": "oauthClientSecret",
|
|
|
|
"client_id_issued_at": "oauthIssueDate",
|
|
|
|
"client_secret_expires_at": "oauthClientSecretExpDate",
|
|
|
|
}
|
|
|
|
|
|
|
|
client_metadata_attributes = {
|
2022-10-17 15:49:52 +00:00
|
|
|
"client_name": "oauthClientName",
|
|
|
|
"contacts": "oauthClientContact",
|
|
|
|
"client_uri": "oauthClientURI",
|
2022-01-11 16:57:58 +00:00
|
|
|
"redirect_uris": "oauthRedirectURIs",
|
|
|
|
"logo_uri": "oauthLogoURI",
|
2022-10-17 15:49:52 +00:00
|
|
|
"grant_types": "oauthGrantType",
|
|
|
|
"response_types": "oauthResponseType",
|
2022-01-11 16:57:58 +00:00
|
|
|
"scope": "oauthScope",
|
|
|
|
"tos_uri": "oauthTermsOfServiceURI",
|
|
|
|
"policy_uri": "oauthPolicyURI",
|
2022-10-17 15:49:52 +00:00
|
|
|
"jwks_uri": "oauthJWKURI",
|
2022-01-11 16:57:58 +00:00
|
|
|
"jwk": "oauthJWK",
|
|
|
|
"token_endpoint_auth_method": "oauthTokenEndpointAuthMethod",
|
|
|
|
"software_id": "oauthSoftwareID",
|
|
|
|
"software_version": "oauthSoftwareVersion",
|
2022-10-24 15:18:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-11 14:55:33 +00:00
|
|
|
attributes = {
|
2023-02-05 18:08:25 +00:00
|
|
|
"id": "dn",
|
2022-10-24 15:18:46 +00:00
|
|
|
"description": "description",
|
2022-01-11 16:57:58 +00:00
|
|
|
"preconsent": "oauthPreconsent",
|
2022-10-24 15:18:46 +00:00
|
|
|
# post_logout_redirect_uris is not yet supported by authlib
|
|
|
|
"post_logout_redirect_uris": "oauthPostLogoutRedirectURI",
|
|
|
|
"audience": "oauthAudience",
|
|
|
|
**client_info_attributes,
|
|
|
|
**client_metadata_attributes,
|
2022-01-11 16:57:58 +00:00
|
|
|
}
|
2022-01-11 18:49:06 +00:00
|
|
|
|
2022-10-24 15:18:46 +00:00
|
|
|
def get_client_id(self):
|
|
|
|
return self.client_id
|
|
|
|
|
2022-01-11 18:49:06 +00:00
|
|
|
def get_default_redirect_uri(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return self.redirect_uris[0]
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_allowed_scope(self, scope):
|
2022-07-07 14:05:34 +00:00
|
|
|
return util.list_to_scope(
|
|
|
|
[scope_piece for scope_piece in self.scope if scope_piece in scope]
|
|
|
|
)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def check_redirect_uri(self, redirect_uri):
|
2022-01-11 16:57:58 +00:00
|
|
|
return redirect_uri in self.redirect_uris
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def check_client_secret(self, client_secret):
|
2022-10-17 15:49:52 +00:00
|
|
|
return client_secret == self.client_secret
|
2022-01-11 18:49:06 +00:00
|
|
|
|
2022-04-10 14:00:51 +00:00
|
|
|
def check_endpoint_auth_method(self, method, endpoint):
|
|
|
|
if endpoint == "token":
|
|
|
|
return method == self.token_endpoint_auth_method
|
|
|
|
return True
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def check_response_type(self, response_type):
|
2022-10-17 15:49:52 +00:00
|
|
|
return all(r in self.response_types for r in response_type.split(" "))
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def check_grant_type(self, grant_type):
|
2022-10-17 15:49:52 +00:00
|
|
|
return grant_type in self.grant_types
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def client_info(self):
|
2022-10-24 15:18:46 +00:00
|
|
|
result = {
|
|
|
|
attribute_name: getattr(self, attribute_name)
|
|
|
|
for attribute_name in self.client_info_attributes
|
|
|
|
}
|
|
|
|
result["client_id_issued_at"] = int(
|
|
|
|
datetime.datetime.timestamp(result["client_id_issued_at"])
|
2022-01-11 18:49:06 +00:00
|
|
|
)
|
2022-10-24 15:18:46 +00:00
|
|
|
return result
|
|
|
|
|
|
|
|
@property
|
|
|
|
def client_metadata(self):
|
2023-01-28 13:04:04 +00:00
|
|
|
metadata = {
|
2022-10-24 15:18:46 +00:00
|
|
|
attribute_name: getattr(self, attribute_name)
|
|
|
|
for attribute_name in self.client_metadata_attributes
|
|
|
|
}
|
2023-01-28 17:35:39 +00:00
|
|
|
metadata["scope"] = " ".join(metadata["scope"])
|
2023-01-28 13:04:04 +00:00
|
|
|
return metadata
|
2022-01-11 18:49:06 +00:00
|
|
|
|
2023-01-30 18:58:00 +00:00
|
|
|
def delete(self):
|
2023-03-08 22:53:53 +00:00
|
|
|
for consent in Consent.query(client=self):
|
2023-01-30 18:58:00 +00:00
|
|
|
consent.delete()
|
|
|
|
|
2023-03-08 22:53:53 +00:00
|
|
|
for code in AuthorizationCode.query(client=self):
|
2023-01-30 18:58:00 +00:00
|
|
|
code.delete()
|
|
|
|
|
2023-03-08 22:53:53 +00:00
|
|
|
for token in Token.query(client=self):
|
2023-01-30 18:58:00 +00:00
|
|
|
token.delete()
|
|
|
|
|
|
|
|
super().delete()
|
|
|
|
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
class AuthorizationCode(LDAPObject, AuthorizationCodeMixin):
|
2023-03-11 18:46:12 +00:00
|
|
|
ldap_object_class = ["oauthAuthorizationCode"]
|
2022-01-11 18:49:06 +00:00
|
|
|
base = "ou=authorizations,ou=oauth"
|
2023-03-08 15:25:50 +00:00
|
|
|
rdn_attribute = "oauthAuthorizationCodeID"
|
2023-05-11 14:55:33 +00:00
|
|
|
attributes = {
|
2023-02-05 18:08:25 +00:00
|
|
|
"id": "dn",
|
2022-02-16 17:00:30 +00:00
|
|
|
"authorization_code_id": "oauthAuthorizationCodeID",
|
2022-01-11 16:57:58 +00:00
|
|
|
"description": "description",
|
|
|
|
"code": "oauthCode",
|
|
|
|
"client": "oauthClient",
|
|
|
|
"subject": "oauthSubject",
|
|
|
|
"redirect_uri": "oauthRedirectURI",
|
|
|
|
"response_type": "oauthResponseType",
|
|
|
|
"scope": "oauthScope",
|
|
|
|
"nonce": "oauthNonce",
|
|
|
|
"issue_date": "oauthAuthorizationDate",
|
|
|
|
"lifetime": "oauthAuthorizationLifetime",
|
|
|
|
"challenge": "oauthCodeChallenge",
|
|
|
|
"challenge_method": "oauthCodeChallengeMethod",
|
|
|
|
"revokation_date": "oauthRevokationDate",
|
|
|
|
}
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_redirect_uri(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return self.redirect_uri
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_scope(self):
|
2022-07-07 14:05:34 +00:00
|
|
|
return self.scope[0].split(" ")
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_nonce(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return self.nonce
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def is_expired(self):
|
2023-03-17 23:38:56 +00:00
|
|
|
return self.issue_date + datetime.timedelta(
|
|
|
|
seconds=int(self.lifetime)
|
|
|
|
) < datetime.datetime.now(datetime.timezone.utc)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_auth_time(self):
|
2023-03-17 23:38:56 +00:00
|
|
|
return int(
|
|
|
|
(
|
|
|
|
self.issue_date
|
|
|
|
- datetime.datetime(1970, 1, 1, tzinfo=datetime.timezone.utc)
|
|
|
|
).total_seconds()
|
|
|
|
)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Token(LDAPObject, TokenMixin):
|
2023-03-11 18:46:12 +00:00
|
|
|
ldap_object_class = ["oauthToken"]
|
2022-01-11 18:49:06 +00:00
|
|
|
base = "ou=tokens,ou=oauth"
|
2023-03-08 15:25:50 +00:00
|
|
|
rdn_attribute = "oauthTokenID"
|
2023-05-11 14:55:33 +00:00
|
|
|
attributes = {
|
2023-02-05 18:08:25 +00:00
|
|
|
"id": "dn",
|
2022-02-16 17:00:30 +00:00
|
|
|
"token_id": "oauthTokenID",
|
2022-01-11 16:57:58 +00:00
|
|
|
"access_token": "oauthAccessToken",
|
|
|
|
"description": "description",
|
|
|
|
"client": "oauthClient",
|
|
|
|
"subject": "oauthSubject",
|
|
|
|
"type": "oauthTokenType",
|
|
|
|
"refresh_token": "oauthRefreshToken",
|
|
|
|
"scope": "oauthScope",
|
|
|
|
"issue_date": "oauthIssueDate",
|
|
|
|
"lifetime": "oauthTokenLifetime",
|
|
|
|
"revokation_date": "oauthRevokationDate",
|
|
|
|
"audience": "oauthAudience",
|
|
|
|
}
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def expire_date(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return self.issue_date + datetime.timedelta(seconds=int(self.lifetime))
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def revoked(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return bool(self.revokation_date)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_scope(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return " ".join(self.scope)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_expires_in(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
return int(self.lifetime)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_issued_at(self):
|
2023-03-17 23:38:56 +00:00
|
|
|
return int(
|
|
|
|
(
|
|
|
|
self.issue_date
|
|
|
|
- datetime.datetime(1970, 1, 1, tzinfo=datetime.timezone.utc)
|
|
|
|
).total_seconds()
|
|
|
|
)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def get_expires_at(self):
|
|
|
|
issue_timestamp = (
|
2023-03-17 23:38:56 +00:00
|
|
|
self.issue_date
|
|
|
|
- datetime.datetime(1970, 1, 1, tzinfo=datetime.timezone.utc)
|
2022-01-11 18:49:06 +00:00
|
|
|
).total_seconds()
|
2022-01-11 16:57:58 +00:00
|
|
|
return int(issue_timestamp) + int(self.lifetime)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def is_refresh_token_active(self):
|
2022-01-11 16:57:58 +00:00
|
|
|
if self.revokation_date:
|
2022-01-11 18:49:06 +00:00
|
|
|
return False
|
|
|
|
|
2023-03-17 23:38:56 +00:00
|
|
|
return self.expire_date >= datetime.datetime.now(datetime.timezone.utc)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
def is_expired(self):
|
2023-03-17 23:38:56 +00:00
|
|
|
return self.issue_date + datetime.timedelta(
|
|
|
|
seconds=int(self.lifetime)
|
|
|
|
) < datetime.datetime.now(datetime.timezone.utc)
|
2022-01-11 18:49:06 +00:00
|
|
|
|
2022-04-10 14:00:51 +00:00
|
|
|
def is_revoked(self):
|
|
|
|
return bool(self.revokation_date)
|
|
|
|
|
|
|
|
def check_client(self, client):
|
2023-03-08 22:53:53 +00:00
|
|
|
return client.client_id == self.client.client_id
|
2022-04-10 14:00:51 +00:00
|
|
|
|
2022-01-11 18:49:06 +00:00
|
|
|
|
|
|
|
class Consent(LDAPObject):
|
2023-03-11 18:46:12 +00:00
|
|
|
ldap_object_class = ["oauthConsent"]
|
2022-01-11 18:49:06 +00:00
|
|
|
base = "ou=consents,ou=oauth"
|
2023-03-08 15:25:50 +00:00
|
|
|
rdn_attribute = "cn"
|
2023-05-11 14:55:33 +00:00
|
|
|
attributes = {
|
2023-02-05 18:08:25 +00:00
|
|
|
"id": "dn",
|
2023-03-09 23:38:16 +00:00
|
|
|
"consent_id": "cn",
|
2022-01-11 16:57:58 +00:00
|
|
|
"subject": "oauthSubject",
|
|
|
|
"client": "oauthClient",
|
|
|
|
"scope": "oauthScope",
|
|
|
|
"issue_date": "oauthIssueDate",
|
|
|
|
"revokation_date": "oauthRevokationDate",
|
|
|
|
}
|
2022-01-11 18:49:06 +00:00
|
|
|
|
2023-02-14 17:43:43 +00:00
|
|
|
@property
|
|
|
|
def revoked(self):
|
|
|
|
return bool(self.revokation_date)
|
|
|
|
|
2022-01-11 18:49:06 +00:00
|
|
|
def revoke(self):
|
2023-03-17 23:38:56 +00:00
|
|
|
self.revokation_date = datetime.datetime.now(datetime.timezone.utc)
|
2022-01-11 18:49:06 +00:00
|
|
|
self.save()
|
|
|
|
|
2023-03-07 13:49:44 +00:00
|
|
|
tokens = Token.query(
|
2023-05-17 10:07:52 +00:00
|
|
|
client=self.client,
|
|
|
|
subject=self.subject,
|
2022-01-11 18:49:06 +00:00
|
|
|
)
|
2023-02-14 17:43:43 +00:00
|
|
|
tokens = [token for token in tokens if not token.revoked]
|
2022-01-11 18:49:06 +00:00
|
|
|
for t in tokens:
|
2022-01-11 16:57:58 +00:00
|
|
|
t.revokation_date = self.revokation_date
|
2022-01-11 18:49:06 +00:00
|
|
|
t.save()
|
2023-02-14 17:43:43 +00:00
|
|
|
|
|
|
|
def restore(self):
|
|
|
|
self.revokation_date = None
|
|
|
|
self.save()
|