38 lines
1.4 KiB
Python
38 lines
1.4 KiB
Python
# Copyright (c) Microsoft. All rights reserved.
|
|
|
|
import logging
|
|
|
|
from azure.core.credentials import TokenCredential
|
|
from azure.core.exceptions import ClientAuthenticationError
|
|
|
|
from semantic_kernel.exceptions.service_exceptions import ServiceInvalidAuthError
|
|
|
|
logger: logging.Logger = logging.getLogger(__name__)
|
|
|
|
|
|
def get_entra_auth_token(credential: "TokenCredential", token_endpoint: str) -> str | None:
|
|
"""Retrieve a Microsoft Entra Auth Token for a given token endpoint.
|
|
|
|
The token endpoint may be specified as an environment variable, via the .env
|
|
file or as an argument. If the token endpoint is not provided, the default is None.
|
|
|
|
Args:
|
|
credential: The credential to use to retrieve the authentication token.
|
|
token_endpoint: The token endpoint to use to retrieve the authentication token.
|
|
|
|
Returns:
|
|
The Azure token or None if the token could not be retrieved.
|
|
"""
|
|
if not token_endpoint:
|
|
raise ServiceInvalidAuthError(
|
|
"A token endpoint must be provided either in settings, as an environment variable, or as an argument."
|
|
)
|
|
|
|
try:
|
|
auth_token = credential.get_token(token_endpoint)
|
|
except ClientAuthenticationError:
|
|
logger.error(f"Failed to retrieve Azure token for the specified endpoint: `{token_endpoint}`.")
|
|
return None
|
|
|
|
return auth_token.token if auth_token else None
|