14
14
from typing import Any , Mapping
15
15
16
16
class StreamingHttpContext (HttpContext ):
17
- """HTTP Context class for Real-time Streaming APIs"""
17
+ """HTTP Context class for Dolby Millicast APIs"""
18
18
19
19
def __init__ (self ):
20
20
super ().__init__ ()
21
21
22
22
self ._logger = logging .getLogger (StreamingHttpContext .__name__ )
23
23
24
- async def _requests_post_put (
24
+ async def _requests_with_payload (
25
25
self ,
26
26
api_secret : str ,
27
27
url : str ,
@@ -30,12 +30,12 @@ async def _requests_post_put(
30
30
params : Mapping [str , str ]= None ,
31
31
) -> dict :
32
32
r"""
33
- Sends a POST or PUT request .
33
+ Sends a request with a payload .
34
34
35
35
Args:
36
36
api_secret: API secret to use for authentication.
37
37
url: Where to send the request to.
38
- method: HTTP method, POST or PUT .
38
+ method: HTTP method, POST, PUT or PATCH .
39
39
payload: (Optional) Content of the request.
40
40
params: (Optional) URL query parameters.
41
41
@@ -64,8 +64,7 @@ async def _requests_post_put(
64
64
data = payload ,
65
65
)
66
66
67
- base = BaseResponse (json_response )
68
- return base .data
67
+ return BaseResponse .from_dict (json_response ).data
69
68
70
69
async def requests_post (
71
70
self ,
@@ -91,7 +90,7 @@ async def requests_post(
91
90
HTTPError: If one occurred.
92
91
"""
93
92
94
- return await self ._requests_post_put (
93
+ return await self ._requests_with_payload (
95
94
api_secret = api_secret ,
96
95
url = url ,
97
96
method = 'POST' ,
@@ -123,14 +122,46 @@ async def requests_put(
123
122
HTTPError: If one occurred.
124
123
"""
125
124
126
- return await self ._requests_post_put (
125
+ return await self ._requests_with_payload (
127
126
api_secret = api_secret ,
128
127
url = url ,
129
128
method = 'PUT' ,
130
129
payload = payload ,
131
130
params = params ,
132
131
)
133
132
133
+ async def requests_patch (
134
+ self ,
135
+ api_secret : str ,
136
+ url : str ,
137
+ payload : Any = None ,
138
+ params : Mapping [str , str ]= None ,
139
+ ) -> dict :
140
+ r"""
141
+ Sends a PATCH request.
142
+
143
+ Args:
144
+ api_secret: API secret to use for authentication.
145
+ url: Where to send the request to.
146
+ payload: (Optional) Content of the request.
147
+ params: (Optional) URL query parameters.
148
+
149
+ Returns:
150
+ The JSON response.
151
+
152
+ Raises:
153
+ HttpRequestError: If a client error one occurred.
154
+ HTTPError: If one occurred.
155
+ """
156
+
157
+ return await self ._requests_with_payload (
158
+ api_secret = api_secret ,
159
+ url = url ,
160
+ method = 'PATCH' ,
161
+ payload = payload ,
162
+ params = params ,
163
+ )
164
+
134
165
async def requests_get (
135
166
self ,
136
167
api_secret : str ,
@@ -165,15 +196,14 @@ async def requests_get(
165
196
headers = headers ,
166
197
)
167
198
168
- base = BaseResponse (json_response )
169
- return base .data
199
+ return BaseResponse .from_dict (json_response ).data
170
200
171
201
async def requests_delete (
172
202
self ,
173
- access_token : str ,
203
+ api_secret : str ,
174
204
url : str ,
175
205
params : Mapping [str , str ]= None ,
176
- ) -> None :
206
+ ) -> dict :
177
207
r"""
178
208
Sends a DELETE request.
179
209
@@ -189,16 +219,18 @@ async def requests_delete(
189
219
190
220
headers = {
191
221
'Accept' : 'application/json' ,
192
- 'Authorization' : f'Bearer { access_token } ' ,
222
+ 'Authorization' : f'Bearer { api_secret } ' ,
193
223
}
194
224
195
- return await self ._send_request (
225
+ json_response = await self ._send_request (
196
226
method = 'DELETE' ,
197
227
url = url ,
198
228
params = params ,
199
229
headers = headers ,
200
230
)
201
231
232
+ return BaseResponse .from_dict (json_response ).data
233
+
202
234
async def _raise_for_status (self , http_response : ClientResponse ):
203
235
r"""Raises :class:`HttpRequestError` or :class:`ClientResponseError`, if one occurred."""
204
236
@@ -212,8 +244,8 @@ async def _raise_for_status(self, http_response: ClientResponse):
212
244
213
245
try :
214
246
json_response = await http_response .json ()
215
- base_response = BaseResponse (json_response )
216
- err = Error (base_response .data )
247
+ base_response = BaseResponse . from_dict (json_response )
248
+ err = Error . from_dict (base_response .data )
217
249
218
250
raise HttpRequestError (http_response , '' , http_response .status , base_response .status , err .message )
219
251
except (ValueError , ContentTypeError ): # If the response body does not contain valid json.
0 commit comments