Source code for mxcubeweb.routes.csp_report

import json
import logging

from flask import Blueprint, jsonify, request


[docs]def init_route(_mxcube_app, _server, url_prefix): """ Initialize CSP report routes url_prefix: URL prefix for the blueprint """ bp = Blueprint("csp", __name__, url_prefix=url_prefix) csp_logger = logging.getLogger("csp") @bp.route("/report", methods=["POST"]) def csp_report(): """Endpoint to collect CSP violation reports""" report = json.loads(request.get_data()) csp_logger.warning("CSP Violation: %s", report.get("csp-report", {})) return jsonify({"status": "report received"}), 204 return bp