wacht 0.1.0-beta.5

Official Rust SDK for the Wacht platform, providing type-safe API client and authentication middleware
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
//! Organization Management Module
//!
//! This module contains all organization-related functionality including core operations,
//! member management, and role management.

pub mod members;
pub mod roles;

use crate::{
    client::WachtClient,
    error::{Error, Result},
    models::{
        CreateOrganizationRequest, ListOptions, Organization, PaginatedResponse,
        UpdateOrganizationRequest,
    },
};

pub type OrganizationListResponse = PaginatedResponse<Organization>;

#[derive(Debug, Clone)]
pub struct OrganizationsApi {
    client: WachtClient,
}

impl OrganizationsApi {
    pub(crate) fn new(client: WachtClient) -> Self {
        Self { client }
    }

    pub fn fetch_organizations(&self) -> FetchOrganizationsBuilder {
        FetchOrganizationsBuilder::new(self.client.clone())
    }

    pub fn create_organization(
        &self,
        request: CreateOrganizationRequest,
    ) -> CreateOrganizationBuilder {
        CreateOrganizationBuilder::new(self.client.clone(), request)
    }

    pub fn fetch_organization(&self, organization_id: &str) -> FetchOrganizationBuilder {
        FetchOrganizationBuilder::new(self.client.clone(), organization_id)
    }

    pub fn update_organization(
        &self,
        organization_id: &str,
        request: UpdateOrganizationRequest,
    ) -> UpdateOrganizationBuilder {
        UpdateOrganizationBuilder::new(self.client.clone(), organization_id, request)
    }

    pub fn delete_organization(&self, organization_id: &str) -> DeleteOrganizationBuilder {
        DeleteOrganizationBuilder::new(self.client.clone(), organization_id)
    }

    pub fn create_organization_workspace(
        &self,
        organization_id: &str,
        request: crate::models::CreateWorkspaceRequest,
    ) -> CreateOrganizationWorkspaceBuilder {
        CreateOrganizationWorkspaceBuilder::new(self.client.clone(), organization_id, request)
    }

    pub fn members(&self) -> members::OrganizationMembersApi {
        members::OrganizationMembersApi::new(self.client.clone())
    }

    pub fn roles(&self) -> roles::OrganizationRolesApi {
        roles::OrganizationRolesApi::new(self.client.clone())
    }
}

/// Builder for fetching organizations
pub struct FetchOrganizationsBuilder {
    client: WachtClient,
    options: ListOptions,
}

impl FetchOrganizationsBuilder {
    pub fn new(client: WachtClient) -> Self {
        Self {
            client,
            options: ListOptions::default(),
        }
    }

    pub fn limit(mut self, limit: i32) -> Self {
        self.options.limit = Some(limit);
        self
    }

    pub fn offset(mut self, offset: i32) -> Self {
        self.options.offset = Some(offset);
        self
    }

    pub fn search(mut self, search: impl Into<String>) -> Self {
        self.options.search = Some(search.into());
        self
    }

    pub fn sort_key(mut self, sort_key: impl Into<String>) -> Self {
        self.options.sort_key = Some(sort_key.into());
        self
    }

    pub fn sort_order(mut self, sort_order: impl Into<String>) -> Self {
        self.options.sort_order = Some(sort_order.into());
        self
    }

    pub async fn send(self) -> Result<OrganizationListResponse> {
        let client = self.client.http_client();
        let url = format!("{}/organizations", self.client.config().base_url);

        let mut request = client.get(&url);
        request = request.query(&self.options);

        let response = request.send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(response.json().await?)
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to fetch organizations",
                &error_body,
            ))
        }
    }
}

/// Builder for creating an organization
pub struct CreateOrganizationBuilder {
    client: WachtClient,
    request: CreateOrganizationRequest,
}

impl CreateOrganizationBuilder {
    pub fn new(client: WachtClient, request: CreateOrganizationRequest) -> Self {
        Self { client, request }
    }

    pub async fn send(self) -> Result<Organization> {
        let client = self.client.http_client();
        let url = format!("{}/organizations", self.client.config().base_url);

        let mut form = reqwest::multipart::Form::new();
        form = form.text("name", self.request.name.clone());
        if let Some(description) = &self.request.description {
            form = form.text("description", description.clone());
        }
        if let Some(public_metadata) = &self.request.public_metadata {
            form = form.text(
                "public_metadata",
                serde_json::to_string(public_metadata).unwrap_or_default(),
            );
        }
        if let Some(private_metadata) = &self.request.private_metadata {
            form = form.text(
                "private_metadata",
                serde_json::to_string(private_metadata).unwrap_or_default(),
            );
        }
        if let Some(image_bytes) = &self.request.organization_image {
            let part = reqwest::multipart::Part::bytes(image_bytes.clone())
                .file_name("organization_image.jpg")
                .mime_str("image/jpeg")
                .map_err(|e| {
                    Error::InvalidRequest(format!("Failed to create multipart payload: {e}"))
                })?;
            form = form.part("organization_image", part);
        }

        let response = client.post(&url).multipart(form).send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(response.json().await?)
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to create organization",
                &error_body,
            ))
        }
    }
}

/// Builder for fetching an organization
pub struct FetchOrganizationBuilder {
    client: WachtClient,
    organization_id: String,
}

impl FetchOrganizationBuilder {
    pub fn new(client: WachtClient, organization_id: &str) -> Self {
        Self {
            client,
            organization_id: organization_id.to_string(),
        }
    }

    pub async fn send(self) -> Result<Organization> {
        let client = self.client.http_client();
        let url = format!(
            "{}/organizations/{}",
            self.client.config().base_url,
            self.organization_id
        );

        let response = client.get(&url).send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(response.json().await?)
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to fetch organization",
                &error_body,
            ))
        }
    }
}

/// Builder for updating an organization
pub struct UpdateOrganizationBuilder {
    client: WachtClient,
    organization_id: String,
    request: UpdateOrganizationRequest,
}

impl UpdateOrganizationBuilder {
    pub fn new(
        client: WachtClient,
        organization_id: &str,
        request: UpdateOrganizationRequest,
    ) -> Self {
        Self {
            client,
            organization_id: organization_id.to_string(),
            request,
        }
    }

    pub async fn send(self) -> Result<Organization> {
        let client = self.client.http_client();
        let url = format!(
            "{}/organizations/{}",
            self.client.config().base_url,
            self.organization_id
        );

        let mut form = reqwest::multipart::Form::new();
        if let Some(name) = &self.request.name {
            form = form.text("name", name.clone());
        }
        if let Some(description) = &self.request.description {
            form = form.text("description", description.clone());
        }
        if let Some(public_metadata) = &self.request.public_metadata {
            form = form.text(
                "public_metadata",
                serde_json::to_string(public_metadata).unwrap_or_default(),
            );
        }
        if let Some(private_metadata) = &self.request.private_metadata {
            form = form.text(
                "private_metadata",
                serde_json::to_string(private_metadata).unwrap_or_default(),
            );
        }
        if let Some(remove_image) = self.request.remove_image {
            form = form.text("remove_image", remove_image.to_string());
        }
        if let Some(image_bytes) = &self.request.organization_image {
            let part = reqwest::multipart::Part::bytes(image_bytes.clone())
                .file_name("organization_image.jpg")
                .mime_str("image/jpeg")
                .map_err(|e| {
                    Error::InvalidRequest(format!("Failed to create multipart payload: {e}"))
                })?;
            form = form.part("organization_image", part);
        }

        let response = client.patch(&url).multipart(form).send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(response.json().await?)
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to update organization",
                &error_body,
            ))
        }
    }
}

/// Builder for deleting an organization
pub struct DeleteOrganizationBuilder {
    client: WachtClient,
    organization_id: String,
}

impl DeleteOrganizationBuilder {
    pub fn new(client: WachtClient, organization_id: &str) -> Self {
        Self {
            client,
            organization_id: organization_id.to_string(),
        }
    }

    pub async fn send(self) -> Result<()> {
        let client = self.client.http_client();
        let url = format!(
            "{}/organizations/{}",
            self.client.config().base_url,
            self.organization_id
        );

        let response = client.delete(&url).send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(())
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to delete organization",
                &error_body,
            ))
        }
    }
}

/// Builder for creating a workspace under an organization
pub struct CreateOrganizationWorkspaceBuilder {
    client: WachtClient,
    organization_id: String,
    request: crate::models::CreateWorkspaceRequest,
}

impl CreateOrganizationWorkspaceBuilder {
    pub fn new(
        client: WachtClient,
        organization_id: &str,
        request: crate::models::CreateWorkspaceRequest,
    ) -> Self {
        Self {
            client,
            organization_id: organization_id.to_string(),
            request,
        }
    }

    pub async fn send(self) -> Result<crate::models::Workspace> {
        let client = self.client.http_client();
        let url = format!(
            "{}/organizations/{}/workspaces",
            self.client.config().base_url,
            self.organization_id
        );

        let mut form = reqwest::multipart::Form::new();
        form = form.text("name", self.request.name.clone());
        if let Some(description) = &self.request.description {
            form = form.text("description", description.clone());
        }
        if let Some(public_metadata) = &self.request.public_metadata {
            form = form.text(
                "public_metadata",
                serde_json::to_string(public_metadata).unwrap_or_default(),
            );
        }
        if let Some(private_metadata) = &self.request.private_metadata {
            form = form.text(
                "private_metadata",
                serde_json::to_string(private_metadata).unwrap_or_default(),
            );
        }
        if let Some(image_bytes) = &self.request.workspace_image {
            let part = reqwest::multipart::Part::bytes(image_bytes.clone())
                .file_name("workspace_image.jpg")
                .mime_str("image/jpeg")
                .map_err(|e| {
                    Error::InvalidRequest(format!("Failed to create multipart payload: {e}"))
                })?;
            form = form.part("workspace_image", part);
        }

        let response = client.post(&url).multipart(form).send().await?;
        let status = response.status();

        if status.is_success() {
            Ok(response.json().await?)
        } else {
            let error_body = response.text().await?;
            Err(Error::api_from_text(
                status,
                "Failed to create workspace under organization",
                &error_body,
            ))
        }
    }
}