Skip to main content

vortex_sdk/
client.rs

1use base64::{engine::general_purpose::URL_SAFE_NO_PAD, Engine};
2use hmac::{Hmac, Mac};
3use reqwest::Client as HttpClient;
4use serde_json::json;
5use sha2::Sha256;
6use std::collections::HashMap;
7use std::time::{SystemTime, UNIX_EPOCH};
8use uuid::Uuid;
9
10use crate::error::VortexError;
11use crate::types::*;
12
13type HmacSha256 = Hmac<Sha256>;
14
15/// Vortex Rust SDK Client
16///
17/// Provides JWT generation and Vortex API integration for Rust applications.
18/// Compatible with React providers and follows the same paradigms as other Vortex SDKs.
19pub struct VortexClient {
20    api_key: String,
21    base_url: String,
22    http_client: HttpClient,
23}
24
25impl VortexClient {
26    /// Create a new Vortex client
27    ///
28    /// # Arguments
29    ///
30    /// * `api_key` - Your Vortex API key
31    ///
32    /// # Example
33    ///
34    /// ```
35    /// use vortex_sdk::VortexClient;
36    ///
37    /// let api_key = "VRTX.your_encoded_id.your_key".to_string();
38    /// let client = VortexClient::new(api_key);
39    /// ```
40    pub fn new(api_key: String) -> Self {
41        let base_url = std::env::var("VORTEX_API_BASE_URL")
42            .unwrap_or_else(|_| "https://api.vortexsoftware.com".to_string());
43
44        Self {
45            api_key,
46            base_url,
47            http_client: HttpClient::new(),
48        }
49    }
50
51    /// Create a new Vortex client with a custom base URL
52    ///
53    /// # Arguments
54    ///
55    /// * `api_key` - Your Vortex API key
56    /// * `base_url` - Custom base URL for the Vortex API
57    pub fn with_base_url(api_key: String, base_url: String) -> Self {
58        Self {
59            api_key,
60            base_url,
61            http_client: HttpClient::new(),
62        }
63    }
64
65    /// Generate a JWT token for a user
66    ///
67    /// # Arguments
68    ///
69    /// * `user` - User object with id, email, and optional fields:
70    ///   - name: user's display name (max 200 characters)
71    ///   - avatar_url: user's avatar URL (must be HTTPS, max 2000 characters)
72    ///   - admin_scopes: list of admin scopes (e.g., vec!["autojoin"])
73    /// * `extra` - Optional additional properties to include in the JWT payload
74    ///
75    /// # Example
76    ///
77    /// ```
78    /// use vortex_sdk::{VortexClient, User};
79    /// use std::collections::HashMap;
80    ///
81    /// let client = VortexClient::new("VRTX.AAAAAAAAAAAAAAAAAAAAAA.test_secret_key".to_string());
82    ///
83    /// // Simple usage
84    /// let user = User::new("user-123", "user@example.com")
85    ///     .with_user_name("Jane Doe")                                     // Optional: user's display name
86    ///     .with_user_avatar_url("https://example.com/avatars/jane.jpg")  // Optional: user's avatar URL
87    ///     .with_admin_scopes(vec!["autojoin".to_string()]);         // Optional: grants admin privileges
88    /// let jwt = client.generate_jwt(&user, None).unwrap();
89    ///
90    /// // With additional properties
91    /// let mut extra = HashMap::new();
92    /// extra.insert("role".to_string(), serde_json::json!("admin"));
93    /// let jwt = client.generate_jwt(&user, Some(extra)).unwrap();
94    /// ```
95    pub fn generate_jwt(
96        &self,
97        user: &User,
98        extra: Option<HashMap<String, serde_json::Value>>,
99    ) -> Result<String, VortexError> {
100        // Parse API key: format is VRTX.base64encodedId.key
101        let parts: Vec<&str> = self.api_key.split('.').collect();
102        if parts.len() != 3 {
103            return Err(VortexError::InvalidApiKey(
104                "Invalid API key format".to_string(),
105            ));
106        }
107
108        let prefix = parts[0];
109        let encoded_id = parts[1];
110        let key = parts[2];
111
112        if prefix != "VRTX" {
113            return Err(VortexError::InvalidApiKey(
114                "Invalid API key prefix".to_string(),
115            ));
116        }
117
118        // Decode the UUID from base64url
119        let id_bytes = URL_SAFE_NO_PAD
120            .decode(encoded_id)
121            .map_err(|e| VortexError::InvalidApiKey(format!("Failed to decode ID: {}", e)))?;
122
123        if id_bytes.len() != 16 {
124            return Err(VortexError::InvalidApiKey("ID must be 16 bytes".to_string()));
125        }
126
127        let uuid = Uuid::from_slice(&id_bytes)
128            .map_err(|e| VortexError::InvalidApiKey(format!("Invalid UUID: {}", e)))?;
129        let uuid_str = uuid.to_string();
130
131        let now = SystemTime::now()
132            .duration_since(UNIX_EPOCH)
133            .unwrap()
134            .as_secs();
135        let expires = now + 3600; // 1 hour from now
136
137        // Step 1: Derive signing key from API key + ID
138        let mut hmac = HmacSha256::new_from_slice(key.as_bytes())
139            .map_err(|e| VortexError::CryptoError(format!("HMAC error: {}", e)))?;
140        hmac.update(uuid_str.as_bytes());
141        let signing_key = hmac.finalize().into_bytes();
142
143        // Step 2: Build header + payload
144        let header = json!({
145            "iat": now,
146            "alg": "HS256",
147            "typ": "JWT",
148            "kid": uuid_str,
149        });
150
151        // Build payload with user data
152        let mut payload_json = json!({
153            "userId": user.id,
154            "userEmail": user.email,
155            "expires": expires,
156        });
157
158        // Add name if present
159        if let Some(ref user_name) = user.user_name {
160            payload_json["userName"] = json!(user_name);
161        }
162
163        // Add userAvatarUrl if present
164        if let Some(ref user_avatar_url) = user.user_avatar_url {
165            payload_json["userAvatarUrl"] = json!(user_avatar_url);
166        }
167
168        // Add adminScopes if present
169        if let Some(ref scopes) = user.admin_scopes {
170            payload_json["adminScopes"] = json!(scopes);
171        }
172
173        // Add any additional properties from extra parameter
174        if let Some(extra_props) = extra {
175            for (key, value) in extra_props {
176                payload_json[key] = value;
177            }
178        }
179
180        // Step 3: Base64URL encode header and payload
181        let header_b64 = URL_SAFE_NO_PAD.encode(serde_json::to_vec(&header).unwrap());
182        let payload_b64 = URL_SAFE_NO_PAD.encode(serde_json::to_vec(&payload_json).unwrap());
183
184        // Step 4: Sign with HMAC-SHA256
185        let to_sign = format!("{}.{}", header_b64, payload_b64);
186        let mut sig_hmac = HmacSha256::new_from_slice(&signing_key)
187            .map_err(|e| VortexError::CryptoError(format!("HMAC error: {}", e)))?;
188        sig_hmac.update(to_sign.as_bytes());
189        let signature = sig_hmac.finalize().into_bytes();
190        let sig_b64 = URL_SAFE_NO_PAD.encode(&signature);
191
192        Ok(format!("{}.{}.{}", header_b64, payload_b64, sig_b64))
193    }
194
195    /// Get invitations by target (email or sms)
196    pub async fn get_invitations_by_target(
197        &self,
198        target_type: &str,
199        target_value: &str,
200    ) -> Result<Vec<Invitation>, VortexError> {
201        let mut params = HashMap::new();
202        params.insert("targetType", target_type);
203        params.insert("targetValue", target_value);
204
205        let response: InvitationsResponse = self
206            .api_request("GET", "/api/v1/invitations", None::<&()>, Some(params))
207            .await?;
208
209        Ok(response.invitations.unwrap_or_default())
210    }
211
212    /// Get a specific invitation by ID
213    pub async fn get_invitation(&self, invitation_id: &str) -> Result<Invitation, VortexError> {
214        self.api_request(
215            "GET",
216            &format!("/api/v1/invitations/{}", invitation_id),
217            None::<&()>,
218            None,
219        )
220        .await
221    }
222
223    /// Revoke (delete) an invitation
224    pub async fn revoke_invitation(&self, invitation_id: &str) -> Result<(), VortexError> {
225        self.api_request::<(), ()>(
226            "DELETE",
227            &format!("/api/v1/invitations/{}", invitation_id),
228            None,
229            None,
230        )
231        .await?;
232        Ok(())
233    }
234
235    /// Accept multiple invitations
236    ///
237    /// # Arguments
238    ///
239    /// * `invitation_ids` - Vector of invitation IDs to accept
240    /// * `param` - User data (preferred) or legacy target format
241    ///
242    /// # New User Format (Preferred)
243    ///
244    /// ```
245    /// use vortex_sdk::{VortexClient, AcceptUser};
246    ///
247    /// # async fn example() {
248    /// let client = VortexClient::new("VRTX.key.secret".to_string());
249    /// let user = AcceptUser::new().with_email("user@example.com");
250    /// let result = client.accept_invitations(vec!["inv-123".to_string()], user).await;
251    /// # }
252    /// ```
253    ///
254    /// # Legacy Target Format (Deprecated)
255    ///
256    /// ```
257    /// use vortex_sdk::{VortexClient, InvitationTarget};
258    ///
259    /// # async fn example() {
260    /// let client = VortexClient::new("VRTX.key.secret".to_string());
261    /// let target = InvitationTarget::email("user@example.com");
262    /// let result = client.accept_invitations(vec!["inv-123".to_string()], target).await;
263    /// # }
264    /// ```
265    pub async fn accept_invitations(
266        &self,
267        invitation_ids: Vec<String>,
268        param: impl Into<crate::types::AcceptInvitationParam>,
269    ) -> Result<Invitation, VortexError> {
270        use crate::types::{AcceptInvitationParam, AcceptUser};
271
272        let param = param.into();
273
274        // Convert all parameter types to User format to avoid async recursion
275        let user = match param {
276            AcceptInvitationParam::Targets(targets) => {
277                eprintln!("[Vortex SDK] DEPRECATED: Passing a vector of targets is deprecated. Use the AcceptUser format and call once per user instead.");
278
279                if targets.is_empty() {
280                    return Err(VortexError::InvalidRequest("No targets provided".to_string()));
281                }
282
283                let mut last_result = None;
284                let mut last_error = None;
285
286                for target in targets {
287                    // Convert target to user
288                    let user = match target.target_type {
289                        InvitationTargetType::Email => AcceptUser::new().with_email(&target.value),
290                        InvitationTargetType::Phone => AcceptUser::new().with_phone(&target.value),
291                        _ => AcceptUser::new().with_email(&target.value),
292                    };
293
294                    match Box::pin(self.accept_invitations(invitation_ids.clone(), user)).await {
295                        Ok(result) => last_result = Some(result),
296                        Err(e) => last_error = Some(e),
297                    }
298                }
299
300                if let Some(err) = last_error {
301                    return Err(err);
302                }
303
304                return last_result.ok_or_else(|| VortexError::InvalidRequest("No results".to_string()));
305            }
306            AcceptInvitationParam::Target(target) => {
307                eprintln!("[Vortex SDK] DEPRECATED: Passing an InvitationTarget is deprecated. Use the AcceptUser format instead: AcceptUser::new().with_email(\"user@example.com\")");
308
309                // Convert target to User format
310                match target.target_type {
311                    InvitationTargetType::Email => AcceptUser::new().with_email(&target.value),
312                    InvitationTargetType::Phone => AcceptUser::new().with_phone(&target.value),
313                    _ => AcceptUser::new().with_email(&target.value), // Default to email
314                }
315            }
316            AcceptInvitationParam::User(user) => user,
317        };
318
319        // Validate that either email or phone is provided
320        if user.email.is_none() && user.phone.is_none() {
321            return Err(VortexError::InvalidRequest(
322                "User must have either email or phone".to_string(),
323            ));
324        }
325
326        let body = json!({
327            "invitationIds": invitation_ids,
328            "user": user,
329        });
330
331        self.api_request("POST", "/api/v1/invitations/accept", Some(&body), None)
332            .await
333    }
334
335    /// Delete all invitations for a specific group
336    pub async fn delete_invitations_by_group(
337        &self,
338        group_type: &str,
339        group_id: &str,
340    ) -> Result<(), VortexError> {
341        self.api_request::<(), ()>(
342            "DELETE",
343            &format!("/api/v1/invitations/by-group/{}/{}", group_type, group_id),
344            None,
345            None,
346        )
347        .await?;
348        Ok(())
349    }
350
351    /// Get all invitations for a specific group
352    pub async fn get_invitations_by_group(
353        &self,
354        group_type: &str,
355        group_id: &str,
356    ) -> Result<Vec<Invitation>, VortexError> {
357        let response: InvitationsResponse = self
358            .api_request(
359                "GET",
360                &format!("/api/v1/invitations/by-group/{}/{}", group_type, group_id),
361                None::<&()>,
362                None,
363            )
364            .await?;
365
366        Ok(response.invitations.unwrap_or_default())
367    }
368
369    /// Reinvite a user (send invitation again)
370    pub async fn reinvite(&self, invitation_id: &str) -> Result<Invitation, VortexError> {
371        self.api_request(
372            "POST",
373            &format!("/api/v1/invitations/{}/reinvite", invitation_id),
374            None::<&()>,
375            None,
376        )
377        .await
378    }
379
380    /// Create an invitation from your backend
381    ///
382    /// This method allows you to create invitations programmatically using your API key,
383    /// without requiring a user JWT token. Useful for server-side invitation creation,
384    /// such as "People You May Know" flows or admin-initiated invitations.
385    ///
386    /// # Target types
387    ///
388    /// - `email`: Send an email invitation
389    /// - `sms`: Create an SMS invitation (short link returned for you to send)
390    /// - `internal`: Create an internal invitation for PYMK flows (no email sent)
391    ///
392    /// # Example
393    ///
394    /// ```no_run
395    /// use vortex_sdk::{VortexClient, CreateInvitationRequest, CreateInvitationTarget, Inviter, CreateInvitationGroup};
396    ///
397    /// #[tokio::main]
398    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
399    ///     let client = VortexClient::new("VRTX.xxx.yyy".to_string());
400    ///
401    ///     // Create an email invitation
402    ///     let request = CreateInvitationRequest::new(
403    ///         "widget-config-123",
404    ///         CreateInvitationTarget::email("invitee@example.com"),
405    ///         Inviter::new("user-456")
406    ///             .with_email("inviter@example.com")
407    ///             .with_user_name("John Doe"),
408    ///     )
409    ///     .with_groups(vec![
410    ///         CreateInvitationGroup::new("team", "team-789", "Engineering"),
411    ///     ]);
412    ///
413    ///     let result = client.create_invitation(&request).await?;
414    ///
415    ///     // Create an internal invitation (PYMK flow - no email sent)
416    ///     let request = CreateInvitationRequest::new(
417    ///         "widget-config-123",
418    ///         CreateInvitationTarget::internal("internal-user-abc"),
419    ///         Inviter::new("user-456"),
420    ///     )
421    ///     .with_source("pymk");
422    ///
423    ///     let result = client.create_invitation(&request).await?;
424    ///     Ok(())
425    /// }
426    /// ```
427    pub async fn create_invitation(
428        &self,
429        request: &CreateInvitationRequest,
430    ) -> Result<CreateInvitationResponse, VortexError> {
431        self.api_request("POST", "/api/v1/invitations", Some(request), None)
432            .await
433    }
434
435    /// Get autojoin domains configured for a specific scope
436    ///
437    /// # Arguments
438    ///
439    /// * `scope_type` - The type of scope (e.g., "organization", "team", "project")
440    /// * `scope` - The scope identifier (customer's group ID)
441    ///
442    /// # Returns
443    ///
444    /// AutojoinDomainsResponse with autojoin domains and associated invitation
445    ///
446    /// # Example
447    ///
448    /// ```no_run
449    /// use vortex_sdk::VortexClient;
450    ///
451    /// #[tokio::main]
452    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
453    ///     let client = VortexClient::new("VRTX.your_key_here".to_string());
454    ///
455    ///     let result = client.get_autojoin_domains("organization", "acme-org").await?;
456    ///     for domain in &result.autojoin_domains {
457    ///         println!("Domain: {}", domain.domain);
458    ///     }
459    ///     Ok(())
460    /// }
461    /// ```
462    pub async fn get_autojoin_domains(
463        &self,
464        scope_type: &str,
465        scope: &str,
466    ) -> Result<AutojoinDomainsResponse, VortexError> {
467        let encoded_scope_type = urlencoding::encode(scope_type);
468        let encoded_scope = urlencoding::encode(scope);
469        let path = format!(
470            "/api/v1/invitations/by-scope/{}/{}/autojoin",
471            encoded_scope_type, encoded_scope
472        );
473        self.api_request::<AutojoinDomainsResponse, ()>("GET", &path, None, None)
474            .await
475    }
476
477    /// Configure autojoin domains for a specific scope
478    ///
479    /// This endpoint syncs autojoin domains - it will add new domains, remove domains
480    /// not in the provided list, and deactivate the autojoin invitation if all domains
481    /// are removed (empty array).
482    ///
483    /// # Arguments
484    ///
485    /// * `request` - The configure autojoin request
486    ///
487    /// # Returns
488    ///
489    /// AutojoinDomainsResponse with updated autojoin domains and associated invitation
490    ///
491    /// # Example
492    ///
493    /// ```no_run
494    /// use vortex_sdk::{VortexClient, ConfigureAutojoinRequest};
495    ///
496    /// #[tokio::main]
497    /// async fn main() -> Result<(), Box<dyn std::error::Error>> {
498    ///     let client = VortexClient::new("VRTX.your_key_here".to_string());
499    ///
500    ///     let request = ConfigureAutojoinRequest::new(
501    ///         "acme-org",
502    ///         "organization",
503    ///         vec!["acme.com".to_string(), "acme.org".to_string()],
504    ///         "widget-123",
505    ///     )
506    ///     .with_scope_name("Acme Corporation");
507    ///
508    ///     let result = client.configure_autojoin(&request).await?;
509    ///     Ok(())
510    /// }
511    /// ```
512    pub async fn configure_autojoin(
513        &self,
514        request: &ConfigureAutojoinRequest,
515    ) -> Result<AutojoinDomainsResponse, VortexError> {
516        self.api_request("POST", "/api/v1/invitations/autojoin", Some(request), None)
517            .await
518    }
519
520    async fn api_request<T, B>(
521        &self,
522        method: &str,
523        path: &str,
524        body: Option<&B>,
525        query_params: Option<HashMap<&str, &str>>,
526    ) -> Result<T, VortexError>
527    where
528        T: serde::de::DeserializeOwned,
529        B: serde::Serialize,
530    {
531        let url = format!("{}{}", self.base_url, path);
532
533        let mut request = match method {
534            "GET" => self.http_client.get(&url),
535            "POST" => self.http_client.post(&url),
536            "PUT" => self.http_client.put(&url),
537            "DELETE" => self.http_client.delete(&url),
538            _ => return Err(VortexError::InvalidRequest("Invalid HTTP method".to_string())),
539        };
540
541        // Add headers
542        request = request
543            .header("Content-Type", "application/json")
544            .header("x-api-key", &self.api_key)
545            .header("User-Agent", "vortex-rust-sdk/1.0.0");
546
547        // Add query parameters
548        if let Some(params) = query_params {
549            request = request.query(&params);
550        }
551
552        // Add body
553        if let Some(b) = body {
554            request = request.json(b);
555        }
556
557        let response = request
558            .send()
559            .await
560            .map_err(|e| VortexError::HttpError(e.to_string()))?;
561
562        if !response.status().is_success() {
563            let status = response.status();
564            let error_text = response
565                .text()
566                .await
567                .unwrap_or_else(|_| "Unknown error".to_string());
568            return Err(VortexError::ApiError(format!(
569                "API request failed: {} - {}",
570                status, error_text
571            )));
572        }
573
574        let text = response
575            .text()
576            .await
577            .map_err(|e| VortexError::HttpError(e.to_string()))?;
578
579        // Handle empty responses
580        if text.is_empty() {
581            return serde_json::from_str("{}")
582                .map_err(|e| VortexError::SerializationError(e.to_string()));
583        }
584
585        serde_json::from_str(&text)
586            .map_err(|e| VortexError::SerializationError(e.to_string()))
587    }
588}