cipherstash-client 0.34.1-alpha.1

The official CipherStash SDK
Documentation
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
//! Module for the CipherStash Token Service client library
use crate::{management::Membership, user_agent::get_user_agent};
use cts_common::claims::Role;
use cts_common::{protocol::CreateWorkspaceResponse, Region, Workspace, WorkspaceId};
use miette::Diagnostic;
use reqwest::header;
use serde::{Deserialize, Serialize};
use stack_auth::{AuthError, AuthStrategy, ServiceToken};
use std::{
    borrow::Cow,
    fmt::{Display, Formatter},
};
use thiserror::Error;
use url::Url;
use uuid::Uuid;

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct CreateWorkspaceRequest {
    region: Region,
    name: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AccessKey {
    pub key_id: String,
    pub workspace_id: WorkspaceId,
    pub key_name: String,
    pub created_at: String,
    pub last_used_at: Option<String>,
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct CreateAccessKeyInput {
    workspace_id: WorkspaceId,
    key_name: String,
    role: Role,
}

#[derive(Deserialize)]
#[serde(rename_all = "camelCase")]
struct CreateAccessKeyResponse {
    access_key: String,
}

#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct OidcProvider {
    pub id: Uuid,
    pub issuer: Url,
    pub vendor: OidcVendor,
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct CreateOidcProviderRequest<'u> {
    issuer: Cow<'u, Url>,
    vendor: OidcVendor,
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct CreateMembershipRequest {
    user_id: String,
    workspace_id: String,
}

// FIXME: Note that this is a copy of the OidcVendor from cts-domain but we can't depend on that crate here
#[derive(Debug, Serialize, Deserialize, Eq, PartialEq, Copy, Clone)]
#[serde(rename_all = "lowercase")]
pub enum OidcVendor {
    Auth0,
    Okta,
    Clerk,
}

impl OidcVendor {
    pub fn as_str(&self) -> &'static str {
        match self {
            OidcVendor::Auth0 => "auth0",
            OidcVendor::Okta => "okta",
            OidcVendor::Clerk => "clerk",
        }
    }
}

impl Display for OidcVendor {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.as_str())
    }
}

#[derive(Diagnostic, Error, Debug)]
pub enum CtsClientError {
    #[error(transparent)]
    Auth(#[from] AuthError),
    #[error(transparent)]
    Reqwest(#[from] reqwest::Error),
    #[error("Request failed: {body}")]
    ErrorResponse {
        body: String,
        #[source]
        error: reqwest::Error,
    },
    #[error("Unauthorized")]
    Unauthorized(Option<String>),
}

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct RevokeAccessKeyInput {
    workspace_id: WorkspaceId,
    key_name: String,
}

#[derive(Debug, Deserialize)]
struct RevokeAccessKeyResponse {
    message: String,
}

/// Type alias for backwards compatibility.
pub type CTSClient<C> = CtsClient<C>;

pub struct CtsClient<C>
where
    C: Send + Sync + 'static,
    for<'a> &'a C: AuthStrategy,
{
    // Use the client without retry strategy since these commands are used from the CLI
    client: reqwest::Client,
    auth_strategy: C,
    #[cfg(any(test, feature = "test-utils"))]
    base_url_override: Option<Url>,
}

impl<C> CtsClient<C>
where
    C: Send + Sync + 'static,
    for<'a> &'a C: AuthStrategy,
{
    /// Create a new [`CtsClient`] that resolves its base URL from the JWT
    /// `iss` claim on each request.
    ///
    /// ```rust,no_run
    /// # use cipherstash_client::CtsClient;
    /// # use stack_auth::OAuthStrategy;
    /// # fn run(strategy: OAuthStrategy) {
    /// let client = CtsClient::new(strategy);
    /// # }
    /// ```
    pub fn new(credentials: C) -> Self {
        Self {
            client: reqwest::Client::new(),
            auth_strategy: credentials,
            #[cfg(any(test, feature = "test-utils"))]
            base_url_override: None,
        }
    }

    /// Set an explicit base URL override, bypassing the JWT `iss` claim.
    ///
    /// This is useful in tests where the token's `iss` claim does not point
    /// to the CTS server (e.g. mock-auth-server-signed tokens).
    #[cfg(any(test, feature = "test-utils"))]
    pub fn with_base_url(mut self, base_url: Url) -> Self {
        self.base_url_override = Some(base_url);
        self
    }

    /// Resolve the base URL from the token's `iss` claim (or the test override).
    fn base_url(&self, token: &ServiceToken) -> Result<Url, CtsClientError> {
        #[cfg(any(test, feature = "test-utils"))]
        if let Some(url) = &self.base_url_override {
            return Ok(url.clone());
        }
        token.issuer().cloned().map_err(CtsClientError::Auth)
    }

    async fn send_reqwest(
        &self,
        callback: impl FnOnce(&reqwest::Client, &Url) -> reqwest::RequestBuilder,
    ) -> Result<reqwest::Response, CtsClientError> {
        let token = (&self.auth_strategy).get_token().await?;
        let base_url = self.base_url(&token)?;

        let response = callback(&self.client, &base_url)
            .bearer_auth(token.as_str())
            .header(header::USER_AGENT, get_user_agent())
            .send()
            .await?;

        if let Err(error) = response.error_for_status_ref() {
            let body: Option<String> = response.text().await.ok();

            return if error.status() == Some(reqwest::StatusCode::UNAUTHORIZED) {
                Err(CtsClientError::Unauthorized(body))
            } else {
                Err(CtsClientError::ErrorResponse {
                    body: body.unwrap_or_default(),
                    error,
                })
            };
        }

        Ok(response)
    }

    pub async fn create_workspace(
        &self,
        name: &str,
        region: Region,
    ) -> Result<CreateWorkspaceResponse, CtsClientError> {
        let body = CreateWorkspaceRequest {
            region,
            name: name.into(),
        };

        self.send_reqwest(|client, base_url| {
            let url = base_url.join("/api/workspaces").expect("Invalid url");
            client.post(url).json(&body)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    pub async fn list_workspaces(&self) -> Result<Vec<Workspace>, CtsClientError> {
        self.send_reqwest(|client, base_url| {
            let url = base_url.join("/api/workspaces").expect("Invalid url");
            client.get(url)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    /// Create a new access key used to access ZeroKMS
    pub async fn create_access_key(
        &self,
        name: &str,
        workspace_id: WorkspaceId,
        role: Role,
    ) -> Result<String, CtsClientError> {
        let body = CreateAccessKeyInput {
            workspace_id,
            key_name: name.into(),
            role,
        };

        let response = self
            .send_reqwest(|client, base_url| {
                let url = base_url.join("/api/access-keys").expect("Invalid url");
                client
                    .post(url)
                    .header("x-cs-workspace-id", workspace_id.as_str())
                    .json(&body)
            })
            .await?;

        let CreateAccessKeyResponse { access_key } = response.json().await?;

        Ok(access_key)
    }

    /// List all the access keys visible to the current user.
    /// User must have the `access_key:list` permission in that workspace.
    pub async fn list_access_keys(&self) -> Result<Vec<AccessKey>, CtsClientError> {
        self.send_reqwest(|client, base_url| {
            let url = base_url.join("/api/access-keys").expect("Invalid url");
            client.get(url)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    /// Revoke a certain access key by name in the specified workspace
    pub async fn revoke_access_key(
        &self,
        name: &str,
        workspace_id: WorkspaceId,
    ) -> Result<String, CtsClientError> {
        let body = RevokeAccessKeyInput {
            workspace_id,
            key_name: name.into(),
        };

        let response = self
            .send_reqwest(|client, base_url| {
                let url = base_url.join("/api/access-key").expect("Invalid url");
                client.delete(url).json(&body)
            })
            .await?;

        let revoke_ak_response: RevokeAccessKeyResponse = response.json().await?;

        Ok(revoke_ak_response.message)
    }

    /// List all OIDC providers visible to the current user.
    pub async fn list_oidc_providers(&self) -> Result<Vec<OidcProvider>, CtsClientError> {
        self.send_reqwest(|client, base_url| {
            let mut url = base_url.clone();
            url.set_path("api/oidc/providers");
            client.get(url)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    pub async fn create_oidc_provider(
        &self,
        issuer: &Url,
        vendor: OidcVendor,
    ) -> Result<OidcProvider, CtsClientError> {
        let body = CreateOidcProviderRequest {
            issuer: Cow::Borrowed(issuer),
            vendor,
        };

        self.send_reqwest(|client, base_url| {
            let url = base_url.join("/api/oidc/providers").expect("Invalid url");
            client.post(url).json(&body)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    pub async fn delete_oidc_provider(&self, provider_id: Uuid) -> Result<(), CtsClientError> {
        self.send_reqwest(|client, base_url| {
            let url = base_url
                .join(&format!("/api/oidc/providers/{provider_id}"))
                .expect("Invalid url");
            client.delete(url)
        })
        .await?;

        Ok(())
    }

    pub async fn create_membership(
        &self,
        user_id: &str,
        workspace_id: &str,
    ) -> Result<Membership, CtsClientError> {
        let body = CreateMembershipRequest {
            user_id: user_id.into(),
            workspace_id: workspace_id.into(),
        };

        let membership = self
            .send_reqwest(|client, base_url| {
                let url = base_url.join("/api/memberships").expect("Invalid url");
                client.post(url).json(&body)
            })
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)?;

        Ok(membership)
    }

    pub async fn list_memberships(&self) -> Result<Vec<Membership>, CtsClientError> {
        let memberships = self
            .send_reqwest(|client, base_url| {
                let url = base_url.join("/api/memberships").expect("Invalid url");
                client.get(url)
            })
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)?;

        Ok(memberships)
    }

    pub async fn list_memberships_for_workspace(
        &self,
        ws_id: WorkspaceId,
    ) -> Result<Vec<Membership>, CtsClientError> {
        let memberships = self
            .send_reqwest(|client, base_url| {
                let url = base_url
                    .join(&format!("/api/workspaces/{ws_id}/memberships"))
                    .expect("Invalid url");
                client.get(url)
            })
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)?;

        Ok(memberships)
    }

    pub async fn delete_membership(
        &self,
        membership_id: Uuid,
    ) -> Result<Membership, CtsClientError> {
        let membership = self
            .send_reqwest(|client, base_url| {
                let url = base_url
                    .join(&format!("/api/memberships/{membership_id}"))
                    .expect("Invalid url");
                client.delete(url)
            })
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)?;

        Ok(membership)
    }
}