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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
from typing import Any, Optional
from uuid import UUID
from shared.api.models import (
WrappedAPIKeyResponse,
WrappedAPIKeysResponse,
WrappedBooleanResponse,
WrappedCollectionsResponse,
WrappedGenericMessageResponse,
WrappedLimitsResponse,
WrappedLoginResponse,
WrappedTokenResponse,
WrappedUserResponse,
WrappedUsersResponse,
)
class UsersSDK:
def __init__(self, client):
self.client = client
async def create(
self,
email: str,
password: str,
name: Optional[str] = None,
bio: Optional[str] = None,
profile_picture: Optional[str] = None,
) -> WrappedUserResponse:
"""Register a new user.
Args:
email (str): User's email address
password (str): User's password
name (Optional[str]): The name for the new user
bio (Optional[str]): The bio for the new user
profile_picture (Optional[str]): New user profile picture
Returns:
UserResponse: New user information
"""
data: dict = {"email": email, "password": password}
if name is not None:
data["name"] = name
if bio is not None:
data["bio"] = bio
if profile_picture is not None:
data["profile_picture"] = profile_picture
response_dict = await self.client._make_request(
"POST",
"users",
json=data,
version="v3",
)
return WrappedUserResponse(**response_dict)
async def send_verification_email(
self, email: str
) -> WrappedGenericMessageResponse:
"""Request that a verification email to a user."""
response_dict = await self.client._make_request(
"POST",
"users/send-verification-email",
json=email,
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def delete(
self, id: str | UUID, password: str
) -> WrappedBooleanResponse:
"""Delete a specific user. Users can only delete their own account
unless they are superusers.
Args:
id (str | UUID): User ID to delete
password (str): User's password
Returns:
dict: Deletion result
"""
data: dict[str, Any] = {"password": password}
response_dict = await self.client._make_request(
"DELETE",
f"users/{str(id)}",
json=data,
version="v3",
)
self.client.access_token = None
self.client._refresh_token = None
return WrappedBooleanResponse(**response_dict)
async def verify_email(
self, email: str, verification_code: str
) -> WrappedGenericMessageResponse:
"""Verify a user's email address.
Args:
email (str): User's email address
verification_code (str): Verification code sent to the user's email
Returns:
dict: Verification result
"""
data: dict[str, Any] = {
"email": email,
"verification_code": verification_code,
}
response_dict = await self.client._make_request(
"POST",
"users/verify-email",
json=data,
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def login(self, email: str, password: str) -> WrappedLoginResponse:
"""Log in a user.
Args:
email (str): User's email address
password (str): User's password
Returns:
WrappedLoginResponse
"""
if self.client.api_key:
raise ValueError(
"Cannot log in after setting an API key, please unset your R2R_API_KEY variable or call client.set_api_key(None)"
)
data: dict[str, Any] = {"username": email, "password": password}
response_dict = await self.client._make_request(
"POST",
"users/login",
data=data,
version="v3",
)
login_response = WrappedLoginResponse(**response_dict)
self.client.access_token = login_response.results.access_token.token
self.client._refresh_token = login_response.results.refresh_token.token
user = await self.client._make_request(
"GET",
"users/me",
version="v3",
)
user_response = WrappedUserResponse(**user)
self.client._user_id = user_response.results.id
return login_response
async def logout(self) -> WrappedGenericMessageResponse | None:
"""Log out the current user."""
if self.client.access_token:
response_dict = await self.client._make_request(
"POST",
"users/logout",
version="v3",
)
self.client.access_token = None
self.client._refresh_token = None
return WrappedGenericMessageResponse(**response_dict)
self.client.access_token = None
self.client._refresh_token = None
return None
async def refresh_token(self) -> WrappedTokenResponse:
"""Refresh the access token using the refresh token."""
if self.client._refresh_token:
response_dict = await self.client._make_request(
"POST",
"users/refresh-token",
json=self.client._refresh_token,
version="v3",
)
self.client.access_token = response_dict["results"]["access_token"][
"token"
]
self.client._refresh_token = response_dict["results"]["refresh_token"][
"token"
]
return WrappedTokenResponse(**response_dict)
async def change_password(
self, current_password: str, new_password: str
) -> WrappedGenericMessageResponse:
"""Change the user's password.
Args:
current_password (str): User's current password
new_password (str): User's new password
Returns:
dict: Change password result
"""
data: dict[str, Any] = {
"current_password": current_password,
"new_password": new_password,
}
response_dict = await self.client._make_request(
"POST",
"users/change-password",
json=data,
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def request_password_reset(
self, email: str
) -> WrappedGenericMessageResponse:
"""Request a password reset.
Args:
email (str): User's email address
Returns:
dict: Password reset request result
"""
response_dict = await self.client._make_request(
"POST",
"users/request-password-reset",
json=email,
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def reset_password(
self, reset_token: str, new_password: str
) -> WrappedGenericMessageResponse:
"""Reset password using a reset token.
Args:
reset_token (str): Password reset token
new_password (str): New password
Returns:
dict: Password reset result
"""
data: dict[str, Any] = {
"reset_token": reset_token,
"new_password": new_password,
}
response_dict = await self.client._make_request(
"POST",
"users/reset-password",
json=data,
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def list(
self,
ids: Optional[list[str | UUID]] = None,
offset: Optional[int] = 0,
limit: Optional[int] = 100,
) -> WrappedUsersResponse:
"""List users with pagination and filtering options.
Args:
offset (int, optional): Specifies the number of objects to skip. Defaults to 0.
limit (int, optional): Specifies a limit on the number of objects to return, ranging between 1 and 100. Defaults to 100.
Returns:
dict: List of users and pagination information
"""
params = {
"offset": offset,
"limit": limit,
}
if ids:
params["ids"] = [str(user_id) for user_id in ids] # type: ignore
response_dict = await self.client._make_request(
"GET",
"users",
params=params,
version="v3",
)
return WrappedUsersResponse(**response_dict)
async def retrieve(
self,
id: str | UUID,
) -> WrappedUserResponse:
"""Get a specific user.
Args:
id (str | UUID): User ID to retrieve
Returns:
dict: Detailed user information
"""
response_dict = await self.client._make_request(
"GET",
f"users/{str(id)}",
version="v3",
)
return WrappedUserResponse(**response_dict)
async def me(
self,
) -> WrappedUserResponse:
"""Get detailed information about the currently authenticated user.
Returns:
dict: Detailed user information
"""
response_dict = await self.client._make_request(
"GET",
"users/me",
version="v3",
)
return WrappedUserResponse(**response_dict)
async def update(
self,
id: str | UUID,
email: Optional[str] = None,
is_superuser: Optional[bool] = None,
name: Optional[str] = None,
bio: Optional[str] = None,
profile_picture: Optional[str] = None,
limits_overrides: dict | None = None,
metadata: dict[str, str | None] | None = None,
) -> WrappedUserResponse:
"""Update user information.
Args:
id (str | UUID): User ID to update
username (Optional[str]): New username
is_superuser (Optional[bool]): Update superuser status
name (Optional[str]): New name
bio (Optional[str]): New bio
profile_picture (Optional[str]): New profile picture
Returns:
dict: Updated user information
"""
data: dict = {}
if email is not None:
data["email"] = email
if is_superuser is not None:
data["is_superuser"] = is_superuser
if name is not None:
data["name"] = name
if bio is not None:
data["bio"] = bio
if profile_picture is not None:
data["profile_picture"] = profile_picture
if limits_overrides is not None:
data["limits_overrides"] = limits_overrides
if metadata is not None:
data["metadata"] = metadata
response_dict = await self.client._make_request(
"POST",
f"users/{str(id)}",
json=data,
version="v3",
)
return WrappedUserResponse(**response_dict)
async def list_collections(
self,
id: str | UUID,
offset: Optional[int] = 0,
limit: Optional[int] = 100,
) -> WrappedCollectionsResponse:
"""Get all collections associated with a specific user.
Args:
id (str | UUID): User ID to get collections for
offset (int, optional): Specifies the number of objects to skip. Defaults to 0.
limit (int, optional): Specifies a limit on the number of objects to return, ranging between 1 and 100. Defaults to 100.
Returns:
dict: List of collections and pagination information
"""
params = {
"offset": offset,
"limit": limit,
}
response_dict = await self.client._make_request(
"GET",
f"users/{str(id)}/collections",
params=params,
version="v3",
)
return WrappedCollectionsResponse(**response_dict)
async def add_to_collection(
self,
id: str | UUID,
collection_id: str | UUID,
) -> WrappedBooleanResponse:
"""Add a user to a collection.
Args:
id (str | UUID): User ID to add
collection_id (str | UUID): Collection ID to add user to
"""
response_dict = await self.client._make_request(
"POST",
f"users/{str(id)}/collections/{str(collection_id)}",
version="v3",
)
return WrappedBooleanResponse(**response_dict)
async def remove_from_collection(
self,
id: str | UUID,
collection_id: str | UUID,
) -> WrappedBooleanResponse:
"""Remove a user from a collection.
Args:
id (str | UUID): User ID to remove
collection_id (str | UUID): Collection ID to remove user from
Returns:
bool: True if successful
"""
response_dict = await self.client._make_request(
"DELETE",
f"users/{str(id)}/collections/{str(collection_id)}",
version="v3",
)
return WrappedBooleanResponse(**response_dict)
async def create_api_key(
self,
id: str | UUID,
name: Optional[str] = None,
description: Optional[str] = None,
) -> WrappedAPIKeyResponse:
"""Create a new API key for the specified user.
Args:
id (str | UUID): User ID to create API key for
name (Optional[str]): Name of the API key
description (Optional[str]): Description of the API key
Returns:
dict: { "message": "API key created successfully", "api_key": "key_id.raw_api_key" }
"""
data: dict[str, Any] = {}
if name:
data["name"] = name
if description:
data["description"] = description
response_dict = await self.client._make_request(
"POST",
f"users/{str(id)}/api-keys",
json=data,
version="v3",
)
return WrappedAPIKeyResponse(**response_dict)
async def list_api_keys(
self,
id: str | UUID,
) -> WrappedAPIKeysResponse:
"""List all API keys for the specified user.
Args:
id (str | UUID): User ID to list API keys for
Returns:
WrappedAPIKeysResponse
"""
resp_dict = await self.client._make_request(
"GET",
f"users/{str(id)}/api-keys",
version="v3",
)
return WrappedAPIKeysResponse(**resp_dict)
async def delete_api_key(
self,
id: str | UUID,
key_id: str | UUID,
) -> WrappedBooleanResponse:
"""Delete a specific API key for the specified user.
Args:
id (str | UUID): User ID
key_id (str | UUID): API key ID to delete
Returns:
dict: { "message": "API key deleted successfully" }
"""
response_dict = await self.client._make_request(
"DELETE",
f"users/{str(id)}/api-keys/{str(key_id)}",
version="v3",
)
return WrappedBooleanResponse(**response_dict)
async def get_limits(self) -> WrappedLimitsResponse:
response_dict = await self.client._make_request(
"GET",
f"users/{str(self.client._user_id)}/limits",
version="v3",
)
return WrappedLimitsResponse(**response_dict)
async def oauth_google_authorize(self) -> WrappedGenericMessageResponse:
"""Get Google OAuth 2.0 authorization URL from the server.
Returns:
WrappedGenericMessageResponse
"""
response_dict = await self.client._make_request(
"GET",
"users/oauth/google/authorize",
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def oauth_github_authorize(self) -> WrappedGenericMessageResponse:
"""Get GitHub OAuth 2.0 authorization URL from the server.
Returns:
WrappedGenericMessageResponse
"""
response_dict = await self.client._make_request(
"GET",
"users/oauth/github/authorize",
version="v3",
)
return WrappedGenericMessageResponse(**response_dict)
async def oauth_google_callback(
self, code: str, state: str
) -> WrappedLoginResponse:
"""Exchange `code` and `state` with the Google OAuth 2.0 callback
route."""
response_dict = await self.client._make_request(
"GET",
"users/oauth/google/callback",
params={"code": code, "state": state},
version="v3",
)
return WrappedLoginResponse(**response_dict)
async def oauth_github_callback(
self, code: str, state: str
) -> WrappedLoginResponse:
"""Exchange `code` and `state` with the GitHub OAuth 2.0 callback
route."""
response_dict = await self.client._make_request(
"GET",
"users/oauth/github/callback",
params={"code": code, "state": state},
version="v3",
)
return WrappedLoginResponse(**response_dict)
|