Source code for pyeudiw.federation.utils

from pyeudiw.federation.schemas.entity_configuration import (
    EntityStatementPayload,
)

from .exceptions import InvalidEntityStatement


[docs] def is_es(payload: dict) -> None: """ Determines if payload dict is a Subordinate Entity Statement :param payload: the object to determine if is a Subordinate Entity Statement :type payload: dict """ try: EntityStatementPayload(**payload) if payload["iss"] == payload["sub"]: _msg = "Invalid Entity Statement: iss and sub cannot be the same" raise InvalidEntityStatement(_msg) except ValueError as e: _msg = f"Invalid Entity Statement: {e}" raise InvalidEntityStatement(_msg)