cipherstash-client 0.28.0

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
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
//! Module for the CipherStash Token Service client library
use std::{
    borrow::Cow,
    fmt::{Display, Formatter},
};

use crate::{
    credentials::{user_credentials::UserToken, Credentials, GetTokenError},
    management::Membership,
    user_agent::get_user_agent,
};
use cts_common::{
    protocol::CreateWorkspaceResponse, CtsServiceDiscovery, Region, RegionError, ServiceDiscovery,
    Workspace, WorkspaceId,
};
use miette::Diagnostic;
use reqwest::{header, Method};
use serde::{Deserialize, Serialize};
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,
}

#[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)]
    GetToken(#[from] GetTokenError),
    #[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: Credentials<Token = UserToken>> {
    // Use the client without retry strategy since these commands are used from the CLI
    client: reqwest::Client,
    base_url: Url,
    credentials: C,
}

impl<C> CtsClient<C>
where
    C: Credentials<Token = UserToken>,
{
    /// Create a new instance of the [`CtsClient`].
    ///
    /// ```rust
    /// # use cipherstash_client::{ ConsoleConfig, CtsConfig, CtsClient };
    /// let console_config = ConsoleConfig::builder()
    ///   .with_env()
    ///   .build()
    ///   .expect("failed to build config");
    ///
    /// let cts_config = CtsConfig::builder()
    ///   .with_env()
    ///   .build()
    ///   .expect("failed to build config");
    ///
    /// let client = CtsClient::new(cts_config.base_url(), console_config.credentials());
    /// ```
    pub fn new(base_url: Url, credentials: C) -> Self {
        Self {
            client: reqwest::Client::new(),
            base_url,
            credentials,
        }
    }

    pub fn for_region(region: Region, credentials: C) -> Result<Self, RegionError> {
        CtsServiceDiscovery::endpoint(region).map(|base_url| Self::new(base_url, credentials))
    }

    async fn build_request(
        &self,
        method: Method,
        path: &str,
    ) -> Result<reqwest::RequestBuilder, CtsClientError> {
        let url = {
            let mut url = self.base_url.clone();
            url.set_path(path);
            url
        };
        let token = self.credentials.get_token().await?;

        let builder = self
            .client
            .request(method, url)
            .bearer_auth(token.access_token())
            .header(header::USER_AGENT, get_user_agent());

        Ok(builder)
    }

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

        let response = callback(&self.client)
            .header("authorization", token.as_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 url = self.base_url.join("/api/workspaces").expect("Invalid url");

        let body = CreateWorkspaceRequest {
            region,
            name: name.into(),
        };

        self.send_reqwest(|client| client.post(url).json(&body))
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)
    }

    pub async fn list_workspaces(&self) -> Result<Vec<Workspace>, CtsClientError> {
        self.build_request(Method::GET, "/api/workspaces")
            .await?
            .send()
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)
    }

    #[deprecated(
        since = "0.22.2",
        note = "Use `list_workspaces` instead, which returns all workspaces the user has access to."
    )]
    pub async fn list_all_workspaces(&self) -> Result<Vec<Workspace>, CtsClientError> {
        self.build_request(Method::GET, "/api/meta/admin/workspaces")
            .await?
            .send()
            .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,
    ) -> Result<String, CtsClientError> {
        let url = self.base_url.join("/api/access-key").expect("Invalid url");

        let body = CreateAccessKeyInput {
            workspace_id,
            key_name: name.into(),
        };

        let response = self
            .send_reqwest(|client| client.post(url).json(&body))
            .await?;

        let access_key: String = response.text().await?;

        Ok(access_key)
    }

    /// List all the access keys in the provided workspace created by the current user
    pub async fn list_access_keys(
        &self,
        workspace_id: WorkspaceId,
    ) -> Result<Vec<AccessKey>, CtsClientError> {
        // TODO: Update the API to take the workspace_id as a header
        let endpoint = format!("/api/access-keys/{workspace_id}");

        let url = self.base_url.join(&endpoint).expect("Invalid url");
        let response = self.send_reqwest(|client| client.get(url)).await?;
        let access_keys: Vec<AccessKey> = response.json().await?;

        Ok(access_keys)
    }

    /// 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 url = self.base_url.join("/api/access-key").expect("Invalid url");

        let body = RevokeAccessKeyInput {
            workspace_id,
            key_name: name.into(),
        };

        let response = self
            .send_reqwest(|client| client.delete(url).json(&body))
            .await?;

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

        Ok(revoke_ak_response.message)
    }

    /// List all the access keys in the provided workspace created by the current user
    pub async fn list_oidc_providers(
        &self,
        workspace_id: WorkspaceId,
    ) -> Result<Vec<OidcProvider>, CtsClientError> {
        let mut url = self.base_url.clone();
        url.set_path("api/oidc/providers");
        self.send_reqwest(|client| {
            client
                .get(url)
                .header("x-cs-workspace-id", workspace_id.as_str())
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

    pub async fn create_oidc_provider(
        &self,
        workspace_id: WorkspaceId,
        issuer: &Url,
        vendor: OidcVendor,
    ) -> Result<OidcProvider, CtsClientError> {
        let url = self
            .base_url
            .join("/api/oidc/providers")
            .expect("Invalid url");

        let body = CreateOidcProviderRequest {
            issuer: Cow::Borrowed(issuer),
            vendor,
        };

        self.send_reqwest(|client| {
            client
                .post(url)
                .header("x-cs-workspace-id", workspace_id.as_str())
                .json(&body)
        })
        .await?
        .json()
        .await
        .map_err(CtsClientError::from)
    }

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

        self.send_reqwest(|client| {
            client
                .delete(url)
                .header("x-cs-workspace-id", workspace_id.as_str())
        })
        .await?;

        Ok(())
    }

    pub async fn create_membership(
        &self,
        user_id: &str,
        workspace_id: &str,
    ) -> Result<Membership, CtsClientError> {
        let url = self
            .base_url
            .join("/api/meta/admin/memberships")
            .expect("Invalid url");

        let body = CreateMembershipRequest {
            user_id: user_id.into(),
            workspace_id: workspace_id.into(),
        };

        let membership = self
            .send_reqwest(|client| 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 url = self
            .base_url
            .join("/api/meta/admin/memberships")
            .expect("Invalid url");

        let memberships = self
            .send_reqwest(|client| 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 url = self
            .base_url
            .join(&format!("/api/meta/admin/workspaces/{ws_id}/memberships"))
            .expect("Invalid url");

        let memberships = self
            .send_reqwest(|client| 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 url = self
            .base_url
            .join(&format!("/api/meta/admin/memberships/{membership_id}"))
            .expect("Invalid url");

        let membership = self
            .send_reqwest(|client| client.delete(url))
            .await?
            .json()
            .await
            .map_err(CtsClientError::from)?;

        Ok(membership)
    }
}