This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-11-07 16:02:56 +00:00
|
|
|
"""Functions for creating XML output."""
|
|
|
|
from structlog import get_logger
|
|
|
|
|
|
|
|
from passbook.lib.utils.template import render_to_string
|
|
|
|
from passbook.providers.saml.xml_signing import get_signature_xml
|
|
|
|
|
|
|
|
LOGGER = get_logger()
|
|
|
|
|
|
|
|
|
|
|
|
def get_authnrequest_xml(parameters, signed=False):
|
|
|
|
"""Get AuthN Request XML"""
|
|
|
|
# Reset signature.
|
|
|
|
params = {}
|
|
|
|
params.update(parameters)
|
2019-12-31 11:51:16 +00:00
|
|
|
params["AUTHN_REQUEST_SIGNATURE"] = ""
|
2019-11-07 16:02:56 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
unsigned = render_to_string("saml/sp/xml/authn_request.xml", params)
|
|
|
|
LOGGER.debug("AuthN Request", unsigned=unsigned)
|
2019-11-07 16:02:56 +00:00
|
|
|
if not signed:
|
|
|
|
return unsigned
|
|
|
|
|
|
|
|
# Sign it.
|
|
|
|
signature_xml = get_signature_xml()
|
2019-12-31 11:51:16 +00:00
|
|
|
params["AUTHN_REQUEST_SIGNATURE"] = signature_xml
|
|
|
|
signed = render_to_string("saml/sp/xml/authn_request.xml", params)
|
2019-11-07 16:02:56 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
LOGGER.debug("AuthN Request", signed=signed)
|
2019-11-07 16:02:56 +00:00
|
|
|
return signed
|