twc-rs 0.3.6

Fast single-binary CLI and interactive TUI dashboard for Timeweb Cloud
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
// SPDX-FileCopyrightText: 2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT

use std::fmt;

use rust_i18n::t;
use tabled::Tabled;
use timeweb_rs::{
    apis::s3_api, models as s3_models, models::create_storage_request::Type as StorageType
};

use crate::{error::TwcError, output::OutputFormat};

/// Formats a float identifier for display.
fn fmt_id<T: std::fmt::Display>(v: T) -> String {
    v.to_string()
}

/// Compact row for the S3 storage list table.
#[derive(Tabled)]
struct StorageRow {
    #[tabled(rename = "ID")]
    id:       String,
    #[tabled(rename = "Name")]
    name:     String,
    #[tabled(rename = "Status")]
    status:   String,
    #[tabled(rename = "Location")]
    location: String,
    #[tabled(rename = "Type")]
    r#type:   String,
    #[tabled(rename = "Size (GB)")]
    size_gb:  String
}

impl fmt::Display for StorageRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {} {}",
            self.id, self.name, self.status, self.location, self.r#type, self.size_gb
        )
    }
}

/// Compact row for the storage user table.
#[derive(Tabled)]
struct StorageUserRow {
    #[tabled(rename = "ID")]
    id:         String,
    #[tabled(rename = "Access Key")]
    access_key: String,
    #[tabled(rename = "Secret Key")]
    secret_key: String
}

impl fmt::Display for StorageUserRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{} {} {}", self.id, self.access_key, self.secret_key)
    }
}

/// Compact row for the subdomain table.
#[derive(Tabled)]
struct SubdomainRow {
    #[tabled(rename = "ID")]
    id:        String,
    #[tabled(rename = "Subdomain")]
    subdomain: String,
    #[tabled(rename = "Status")]
    status:    String
}

impl fmt::Display for SubdomainRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{} {} {}", self.id, self.subdomain, self.status)
    }
}

/// Compact row for the preset table.
#[derive(Tabled)]
struct PresetRow {
    #[tabled(rename = "ID")]
    id:            String,
    #[tabled(rename = "Description")]
    description:   String,
    #[tabled(rename = "Disk (GB)")]
    disk:          String,
    #[tabled(rename = "Price")]
    price:         String,
    #[tabled(rename = "Location")]
    location:      String,
    #[tabled(rename = "Class")]
    storage_class: String
}

impl fmt::Display for PresetRow {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "{} {} {} {} {} {}",
            self.id, self.description, self.disk, self.price, self.location, self.storage_class
        )
    }
}

/// Formats disk size from KB to human-readable string.
fn fmt_disk_size(size_kb: f64) -> String {
    let gb = size_kb / 1_048_576.0;
    format!("{gb:.2}")
}

/// Lists all S3 storages.
///
/// # Overview
///
/// Fetches all S3 storages from the Timeweb Cloud API and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn list(
    config: &timeweb_rs::apis::configuration::Configuration,
    _limit: Option<i32>,
    _offset: Option<i32>,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = s3_api::get_storages(config).await?;

    let rows: Vec<StorageRow> = resp
        .buckets
        .iter()
        .map(|b| StorageRow {
            id:       fmt_id(b.id),
            name:     b.name.clone(),
            status:   format!("{:?}", b.status),
            location: b.location.clone(),
            r#type:   format!("{:?}", b.r#type),
            size_gb:  fmt_disk_size(b.disk_stats.size)
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_storages_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.buckets)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for b in &resp.buckets {
                println!("{}\t{}", fmt_id(b.id), b.name);
            }
        }
    }
    Ok(())
}

/// Shows detailed info for a single S3 storage.
///
/// # Overview
///
/// Fetches storage details by ID and displays them.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn info(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = s3_api::get_storage(config, id).await?;
    let bucket = &resp.bucket;

    match format {
        OutputFormat::Table => {
            println!("ID:              {}", fmt_id(bucket.id));
            println!("Name:            {}", bucket.name);
            println!("Description:     {}", bucket.description);
            println!("Status:          {:?}", bucket.status);
            println!("Type:            {:?}", bucket.r#type);
            println!("Location:        {}", bucket.location);
            println!("Hostname:        {}", bucket.hostname);
            println!("Storage Class:   {:?}", bucket.storage_class);
            println!(
                "Disk Size:       {} GB",
                fmt_disk_size(bucket.disk_stats.size)
            );
            println!(
                "Disk Used:       {} GB",
                fmt_disk_size(bucket.disk_stats.used)
            );
            println!("Unlimited Disk:  {}", bucket.disk_stats.is_unlimited);
            println!("Objects:         {:.0}", bucket.object_amount);
            println!(
                "Preset ID:       {}",
                bucket.preset_id.map_or_else(|| "-".to_string(), fmt_id)
            );
            println!(
                "Auto Upgrade:    {}",
                if bucket.is_allow_auto_upgrade {
                    "yes"
                } else {
                    "no"
                }
            );
            println!("Project ID:      {}", fmt_id(bucket.project_id));
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.bucket)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!(
                "{}\t{}\t{:?}",
                fmt_id(bucket.id),
                bucket.name,
                bucket.status
            );
        }
    }
    Ok(())
}

/// Creates a new S3 storage.
///
/// # Overview
///
/// Creates a storage with the given name, type, and optional preset.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn create(
    config: &timeweb_rs::apis::configuration::Configuration,
    name: &str,
    _preset_id: Option<f64>,
    format: OutputFormat
) -> Result<(), TwcError> {
    let req = s3_models::CreateStorageRequest::new(name.to_string(), StorageType::Private);
    let resp = s3_api::create_storage(config, req).await?;
    let bucket = &resp.bucket;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.storage_created", name => bucket.name, id => fmt_id(bucket.id))
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.bucket)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}\t{}", fmt_id(bucket.id), bucket.name);
        }
    }
    Ok(())
}

/// Deletes an S3 storage by ID.
///
/// # Overview
///
/// Sends a delete request for the specified storage.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn delete(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32
) -> Result<(), TwcError> {
    s3_api::delete_storage(config, id, None, None).await?;
    println!("{}", t!("cli.storage_deleted", id => id));
    Ok(())
}

/// Updates an S3 storage by ID.
///
/// # Overview
///
/// Updates the storage description via the Timeweb Cloud API.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn update(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32,
    description: Option<&str>,
    format: OutputFormat
) -> Result<(), TwcError> {
    let mut update = s3_models::UpdateStorageRequest::new();
    if let Some(d) = description {
        update.description = Some(d.to_string());
    }
    let resp = s3_api::update_storage(config, id, update).await?;
    let bucket = &resp.bucket;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.storage_updated", name => bucket.name, id => fmt_id(bucket.id))
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.bucket)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}\t{}", fmt_id(bucket.id), bucket.name);
        }
    }
    Ok(())
}

/// Lists users for an S3 storage.
///
/// # Overview
///
/// Fetches storage users for the specified storage and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn user_list(
    config: &timeweb_rs::apis::configuration::Configuration,
    _id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = s3_api::get_storage_users(config).await?;

    let rows: Vec<StorageUserRow> = resp
        .users
        .iter()
        .map(|u| StorageUserRow {
            id:         fmt_id(u.id),
            access_key: u.access_key.clone(),
            secret_key: u.secret_key.clone()
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_users_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.users)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for u in &resp.users {
                println!("{}\t{}", fmt_id(u.id), u.access_key);
            }
        }
    }
    Ok(())
}

/// Updates an S3 storage user.
///
/// # Overview
///
/// Updates the storage user identified by `user_id`.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn user_update(
    config: &timeweb_rs::apis::configuration::Configuration,
    user_id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let secret_key = format!("new-{}", chrono::Utc::now().timestamp_micros());
    let resp = s3_api::update_storage_user(
        config,
        user_id,
        s3_models::UpdateStorageUserRequest::new(secret_key)
    )
    .await?;
    let user = &resp.user;

    match format {
        OutputFormat::Table => {
            println!(
                "{}",
                t!("cli.storage_user_updated", access_key => user.access_key, id => fmt_id(user.id))
            );
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.user)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            println!("{}\t{}", fmt_id(user.id), user.access_key);
        }
    }
    Ok(())
}

/// Transfers an S3 storage.
///
/// # Overview
///
/// Initiates a storage transfer. The `target_id` parameter is reserved
/// for future use with provider-based transfers.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn transfer(
    config: &timeweb_rs::apis::configuration::Configuration,
    _target_id: Option<i32>
) -> Result<(), TwcError> {
    s3_api::transfer_storage(
        config,
        s3_models::TransferStorageRequest::new(
            String::new(),
            String::new(),
            String::new(),
            false,
            String::new(),
            String::new(),
            String::new()
        )
    )
    .await?;
    println!("{}", t!("cli.transfer_initiated"));
    Ok(())
}

/// Lists subdomains for an S3 storage.
///
/// # Overview
///
/// Fetches subdomains for the specified storage and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn subdomain_list(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = s3_api::get_storage_subdomains(config, id).await?;

    let rows: Vec<SubdomainRow> = resp
        .subdomains
        .iter()
        .map(|s| SubdomainRow {
            id:        fmt_id(s.id),
            subdomain: s.subdomain.clone(),
            status:    format!("{:?}", s.status)
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_subdomains_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.subdomains)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for s in &resp.subdomains {
                println!("{}\t{}", fmt_id(s.id), s.subdomain);
            }
        }
    }
    Ok(())
}

/// Adds a subdomain to an S3 storage.
///
/// # Overview
///
/// Adds the specified subdomain to the given storage.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn subdomain_add(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32,
    subdomain: &str
) -> Result<(), TwcError> {
    let req = s3_models::AddStorageSubdomainsRequest::new(vec![subdomain.to_string()]);
    s3_api::add_storage_subdomains(config, id, req).await?;
    println!(
        "{}",
        t!("cli.subdomain_added", subdomain => subdomain, id => id)
    );
    Ok(())
}

/// Deletes a subdomain from an S3 storage.
///
/// # Overview
///
/// Deletes the specified subdomain from the given storage.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn subdomain_delete(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32,
    subdomain: &str
) -> Result<(), TwcError> {
    let req = s3_models::AddStorageSubdomainsRequest::new(vec![subdomain.to_string()]);
    s3_api::delete_storage_subdomains(config, id, req).await?;
    println!(
        "{}",
        t!("cli.subdomain_deleted", subdomain => subdomain, id => id)
    );
    Ok(())
}

/// Prints an s3cmd configuration file for an S3 storage.
///
/// # Overview
///
/// Fetches the bucket by ID and prints a ready-to-use `.s3cfg` block
/// containing the access credentials and endpoint of the storage. The
/// output can be redirected straight into `~/.s3cfg`.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn genconfig(
    config: &timeweb_rs::apis::configuration::Configuration,
    id: i32
) -> Result<(), TwcError> {
    let resp = s3_api::get_storage(config, id).await?;
    let bucket = &resp.bucket;

    let prefix = format!("{}.", bucket.name);
    let endpoint = bucket
        .hostname
        .strip_prefix(&prefix)
        .unwrap_or(&bucket.hostname);

    println!("[default]");
    println!("access_key = {}", bucket.access_key);
    println!("secret_key = {}", bucket.secret_key);
    println!("bucket_location = {}", bucket.location);
    println!("host_base = {endpoint}");
    println!("host_bucket = %(bucket)s.{endpoint}");
    println!("use_https = True");
    println!("signature_v2 = False");
    Ok(())
}

/// Lists available S3 storage presets.
///
/// # Overview
///
/// Fetches storage presets from the Timeweb Cloud API and displays them
/// in the requested output format.
///
/// # Errors
///
/// Returns [`TwcError::Api`] on network or API failures.
pub async fn preset_list(
    config: &timeweb_rs::apis::configuration::Configuration,
    format: OutputFormat
) -> Result<(), TwcError> {
    let resp = s3_api::get_storages_presets(config).await?;

    let rows: Vec<PresetRow> = resp
        .storages_presets
        .iter()
        .map(|p| PresetRow {
            id:            fmt_id(p.id),
            description:   p.description_short.clone(),
            disk:          fmt_disk_size(p.disk),
            price:         format!("{:.2}", p.price),
            location:      format!("{:?}", p.location),
            storage_class: format!("{:?}", p.storage_class)
        })
        .collect();

    match format {
        OutputFormat::Table => {
            if rows.is_empty() {
                println!("{}", t!("cli.no_presets_found"));
            } else {
                let table = crate::output::render_table(&rows);
                println!("{table}");
            }
        }
        OutputFormat::Json | OutputFormat::Yaml => {
            let out = crate::output::serialized(format, &resp.storages_presets)
                .transpose()?
                .unwrap_or_default();
            println!("{out}");
        }
        OutputFormat::Quiet => {
            for p in &resp.storages_presets {
                println!(
                    "{}\t{}\t{}",
                    fmt_id(p.id),
                    p.description_short,
                    fmt_disk_size(p.disk)
                );
            }
        }
    }
    Ok(())
}