Source code for pyeudiw.satosa.frontends.openid4vci.endpoints.oauth_authorization_server_metadata_endpoint


from satosa.context import Context
from pyeudiw.satosa.utils.response import JsonResponse

from pyeudiw.satosa.frontends.openid4vci.endpoints.vci_base_endpoint import VCIBaseEndpoint


[docs] class OauthAuthorizationServerMetadataHandler(VCIBaseEndpoint): def __init__(self, config: dict, internal_attributes: dict[str, dict[str, str | list[str]]], base_url: str, name: str, *args): """ Initialize the OpenID4VCI metadata endpoint class. Args: config (dict): The configuration dictionary. internal_attributes (dict): The internal attributes config. base_url (str): The base URL of the service. name (str): The name of the SATOSA module to append to the URL. """ super().__init__(config, internal_attributes, base_url, name) if not self.config.get("metadata", {}).get("oauth_authorization_server"): raise ValueError("Missing 'oauth_authorization_server' in metadata configuration.") @property def oauth_authorization_server_metadata_as_dict(self) -> dict: """Returns the OAuth authorization server metadata as a dictionary.""" ec_payload = self.config.get("metadata", {}).get("oauth_authorization_server", {}) return ec_payload
[docs] def endpoint(self, context: Context) -> JsonResponse: """ Handle request to the metadata endpoint. Args: context (Context): The SATOSA context. Returns: A Response object. """ return JsonResponse( message=self.oauth_authorization_server_metadata_as_dict, status="200", )