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
//! Users API
//!
//! This module provides functionality to manage users.
use crate::client::RainClient;
use crate::error::Result;
use crate::models::charges::*;
use crate::models::users::*;
use uuid::Uuid;
impl RainClient {
/// Get all users
///
/// # Arguments
///
/// * `params` - Query parameters for filtering users
///
/// # Returns
///
/// Returns a [`Vec<User>`] containing the list of users.
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::users::ListUsersParams;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let params = ListUsersParams {
/// company_id: None,
/// cursor: None,
/// limit: Some(20),
/// };
/// let users = client.list_users(¶ms).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn list_users(&self, params: &ListUsersParams) -> Result<Vec<User>> {
let mut path = "/users".to_string();
let mut query_parts = Vec::new();
if let Some(ref company_id) = params.company_id {
query_parts.push(format!("companyId={company_id}"));
}
if let Some(ref cursor) = params.cursor {
query_parts.push(format!("cursor={cursor}"));
}
if let Some(limit) = params.limit {
query_parts.push(format!("limit={limit}"));
}
if !query_parts.is_empty() {
path.push('?');
path.push_str(&query_parts.join("&"));
}
self.get(&path).await
}
/// Create an authorized user
///
/// # Arguments
///
/// * `request` - The user creation request
///
/// # Returns
///
/// Returns a [`User`] containing the created user information.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::users::CreateUserRequest;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let request = CreateUserRequest {
/// first_name: "John".to_string(),
/// last_name: "Doe".to_string(),
/// email: "john@example.com".to_string(),
/// wallet_address: None,
/// solana_address: None,
/// address: None,
/// phone_country_code: None,
/// phone_number: None,
/// };
/// let user = client.create_user(&request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn create_user(&self, request: &CreateUserRequest) -> Result<User> {
let path = "/users";
self.post(path, request).await
}
/// Get a user by its ID
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user
///
/// # Returns
///
/// Returns a [`User`] containing the user information.
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// let user = client.get_user(&user_id).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn get_user(&self, user_id: &Uuid) -> Result<User> {
let path = format!("/users/{user_id}");
self.get(&path).await
}
/// Delete a user
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user
///
/// # Returns
///
/// Returns success (204 No Content).
///
/// # Errors
///
/// This method can return the following errors:
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// client.delete_user(&user_id).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn delete_user(&self, user_id: &Uuid) -> Result<()> {
let path = format!("/users/{user_id}");
self.delete(&path).await
}
/// Update a user
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user
/// * `request` - The update request
///
/// # Returns
///
/// Returns a [`User`] containing the updated user information.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `423` - User address is locked
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::users::UpdateUserRequest;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// let request = UpdateUserRequest {
/// first_name: Some("Jane".to_string()),
/// last_name: None,
/// email: None,
/// is_active: None,
/// is_terms_of_service_accepted: None,
/// address: None,
/// phone_country_code: None,
/// phone_number: None,
/// wallet_address: None,
/// solana_address: None,
/// tron_address: None,
/// stellar_address: None,
/// };
/// let user = client.update_user(&user_id, &request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn update_user(&self, user_id: &Uuid, request: &UpdateUserRequest) -> Result<User> {
let path = format!("/users/{user_id}");
self.patch(&path, request).await
}
/// Charge a user a custom fee
///
/// # Arguments
///
/// * `user_id` - The unique identifier of the user
/// * `request` - The charge request
///
/// # Returns
///
/// Returns a [`Charge`] containing the created charge information.
///
/// # Errors
///
/// This method can return the following errors:
/// - `400` - Invalid request
/// - `401` - Invalid authorization
/// - `404` - User not found
/// - `500` - Internal server error
///
/// # Examples
///
/// ```no_run
/// use rain_sdk::{RainClient, Config, Environment, AuthConfig};
/// use rain_sdk::models::charges::CreateChargeRequest;
/// use uuid::Uuid;
///
/// # #[cfg(feature = "async")]
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let config = Config::new(Environment::Dev);
/// let auth = AuthConfig::with_api_key("your-api-key".to_string());
/// let client = RainClient::new(config, auth)?;
///
/// let user_id = Uuid::new_v4();
/// let request = CreateChargeRequest {
/// amount: 500, // $5.00 in cents
/// description: "Custom fee".to_string(),
/// };
/// let charge = client.charge_user(&user_id, &request).await?;
/// # Ok(())
/// # }
/// ```
#[cfg(feature = "async")]
pub async fn charge_user(
&self,
user_id: &Uuid,
request: &CreateChargeRequest,
) -> Result<Charge> {
let path = format!("/users/{user_id}/charges");
self.post(&path, request).await
}
// ============================================================================
// Blocking Methods
// ============================================================================
/// Get all users (blocking)
#[cfg(feature = "sync")]
pub fn list_users_blocking(&self, params: &ListUsersParams) -> Result<Vec<User>> {
let mut path = "/users".to_string();
let mut query_parts = Vec::new();
if let Some(ref company_id) = params.company_id {
query_parts.push(format!("companyId={company_id}"));
}
if let Some(ref cursor) = params.cursor {
query_parts.push(format!("cursor={cursor}"));
}
if let Some(limit) = params.limit {
query_parts.push(format!("limit={limit}"));
}
if !query_parts.is_empty() {
path.push('?');
path.push_str(&query_parts.join("&"));
}
self.get_blocking(&path)
}
/// Create an authorized user (blocking)
#[cfg(feature = "sync")]
pub fn create_user_blocking(&self, request: &CreateUserRequest) -> Result<User> {
let path = "/users";
self.post_blocking(path, request)
}
/// Get a user by its ID (blocking)
#[cfg(feature = "sync")]
pub fn get_user_blocking(&self, user_id: &Uuid) -> Result<User> {
let path = format!("/users/{user_id}");
self.get_blocking(&path)
}
/// Delete a user (blocking)
#[cfg(feature = "sync")]
pub fn delete_user_blocking(&self, user_id: &Uuid) -> Result<()> {
let path = format!("/users/{user_id}");
self.delete_blocking(&path)
}
/// Update a user (blocking)
#[cfg(feature = "sync")]
pub fn update_user_blocking(
&self,
user_id: &Uuid,
request: &UpdateUserRequest,
) -> Result<User> {
let path = format!("/users/{user_id}");
self.patch_blocking(&path, request)
}
/// Charge a user a custom fee (blocking)
#[cfg(feature = "sync")]
pub fn charge_user_blocking(
&self,
user_id: &Uuid,
request: &CreateChargeRequest,
) -> Result<Charge> {
let path = format!("/users/{user_id}/charges");
self.post_blocking(&path, request)
}
}