-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhooks.py
186 lines (144 loc) · 6.28 KB
/
webhooks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File generated from our OpenAPI spec by Stainless.
from __future__ import annotations
import hmac
import json
import hashlib
from datetime import datetime, timezone, timedelta
from .._types import (
HeadersLike,
)
from .._utils import (
get_required_header,
)
from .._resource import SyncAPIResource, AsyncAPIResource
__all__ = ["Webhooks", "AsyncWebhooks"]
class Webhooks(SyncAPIResource):
def unwrap(
self,
payload: str | bytes,
headers: HeadersLike,
*,
secret: str | None = None,
) -> object:
"""Validates that the given payload was sent by Orb and parses the payload."""
self.verify_signature(payload=payload, headers=headers, secret=secret)
return json.loads(payload)
def verify_signature(
self,
payload: str | bytes,
headers: HeadersLike,
*,
secret: str | None = None,
) -> None:
"""Validates whether or not the webhook payload was sent by Orb.
An error will be raised if the webhook payload was not sent by Orb.
"""
if secret is None:
secret = self._client.webhook_secret
if secret is None:
raise ValueError(
"The webhook secret must either be set using the env var, ORB_WEBHOOK_SECRET, on the client class, Orb(webhook_secret='123'), or passed to this function"
)
msg_timestamp = get_required_header(headers, "X-Orb-Timestamp")
# validate the timestamp
webhook_tolerance = timedelta(minutes=5)
now = datetime.now(tz=timezone.utc)
try:
timestamp = datetime.fromisoformat(msg_timestamp).astimezone()
except Exception as err:
raise ValueError("Invalid signature headers. Could not convert to timestamp") from err
# too old
if timestamp < (now - webhook_tolerance):
raise ValueError("Webhook timestamp is too old")
# too new
if timestamp > (now + webhook_tolerance):
raise ValueError("Webhook timestamp is too new")
# create the signature
body = payload.decode("utf-8") if isinstance(payload, bytes) else payload
if not isinstance(body, str): # pyright: ignore[reportUnnecessaryIsInstance]
raise ValueError(
"Webhook body should be a string of JSON (or bytes which can be decoded to a utf-8 string), not a parsed dictionary."
)
to_sign = f"v1:{msg_timestamp}:{body}".encode("utf-8")
expected_signature = hmac.new(secret.encode("utf-8"), to_sign, hashlib.sha256).hexdigest()
msg_signature = get_required_header(headers, "X-Orb-Signature")
# Signature header can contain multiple signatures delimited by spaces
passed_sigs = msg_signature.split(" ")
for versioned_sig in passed_sigs:
values = versioned_sig.split("=")
if len(values) != 2:
# signature is not formatted like {version},{signature}
continue
(version, signature) = values
# Only verify prefix v1
if version != "v1":
continue
if hmac.compare_digest(expected_signature, signature):
# valid!
return None
raise ValueError("None of the given webhook signatures match the expected signature")
class AsyncWebhooks(AsyncAPIResource):
def unwrap(
self,
payload: str | bytes,
headers: HeadersLike,
*,
secret: str | None = None,
) -> object:
"""Validates that the given payload was sent by Orb and parses the payload."""
self.verify_signature(payload=payload, headers=headers, secret=secret)
return json.loads(payload)
def verify_signature(
self,
payload: str | bytes,
headers: HeadersLike,
*,
secret: str | None = None,
) -> None:
"""Validates whether or not the webhook payload was sent by Orb.
An error will be raised if the webhook payload was not sent by Orb.
"""
if secret is None:
secret = self._client.webhook_secret
if secret is None:
raise ValueError(
"The webhook secret must either be set using the env var, ORB_WEBHOOK_SECRET, on the client class, Orb(webhook_secret='123'), or passed to this function"
)
msg_timestamp = get_required_header(headers, "X-Orb-Timestamp")
# validate the timestamp
webhook_tolerance = timedelta(minutes=5)
now = datetime.now(tz=timezone.utc)
try:
timestamp = datetime.fromisoformat(msg_timestamp).astimezone()
except Exception as err:
raise ValueError("Invalid signature headers. Could not convert to timestamp") from err
# too old
if timestamp < (now - webhook_tolerance):
raise ValueError("Webhook timestamp is too old")
# too new
if timestamp > (now + webhook_tolerance):
raise ValueError("Webhook timestamp is too new")
# create the signature
body = payload.decode("utf-8") if isinstance(payload, bytes) else payload
if not isinstance(body, str): # pyright: ignore[reportUnnecessaryIsInstance]
raise ValueError(
"Webhook body should be a string of JSON (or bytes which can be decoded to a utf-8 string), not a parsed dictionary."
)
to_sign = f"v1:{msg_timestamp}:{body}".encode("utf-8")
expected_signature = hmac.new(secret.encode("utf-8"), to_sign, hashlib.sha256).hexdigest()
msg_signature = get_required_header(headers, "X-Orb-Signature")
# Signature header can contain multiple signatures delimited by spaces
passed_sigs = msg_signature.split(" ")
for versioned_sig in passed_sigs:
values = versioned_sig.split("=")
if len(values) != 2:
# signature is not formatted like {version},{signature}
continue
(version, signature) = values
# Only verify prefix v1
if version != "v1":
continue
if hmac.compare_digest(expected_signature, signature):
# valid!
return None
raise ValueError("None of the given webhook signatures match the expected signature")