コード例 #1
0
ファイル: hook.py プロジェクト: nisbus/stripe-hooks
def receieve_hook():
    """
    Path:       /webhook/receive
    Method:     POST
    """
    # Abort if we're not sent JSON
    if not request.json:
        return jsonify_with_status(406, {'error': 'Requires application/json'})

    # If the event doesn't have a id, it's not an event
    # https://stripe.com/docs/api#events
    if not request.json.get("id"):
        return jsonify_with_status(406, {'error': 'Does not have an id'})

    try:
        parse_hook(request.json)
    except InvalidRequestError as e:
        # If the hook failed to parse, send back why to stripe
        # This will be visible in your dashboard
        return jsonify_with_status(406, {'error': str(e)})
    except CleanParseException as e:
        # If the hook failed to parse, but we don't want it
        # to try again, send back why and a 200 so Stripe stops trying.
        return jsonify_with_status(200, {'error': str(e)})

    return jsonify_with_status(200, {'success': True})
コード例 #2
0
def check_api_auth():
    """
    Check the request for an API token. If it doesn't match the token
    from our configuration, deny the request with an error message.
    """
    if _authenticate():
        return None
    else:
        return jsonify_with_status(401, {"error": "authorization is required"})
コード例 #3
0
def page_not_found(error):
    return jsonify_with_status(404, {"error": "resource not found"})
コード例 #4
0
ファイル: bootstrap.py プロジェクト: frankamp/stripe-hooks
def page_not_found(error):
    return jsonify_with_status(404, {"error": "resource not found"})