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
650
651
652
653
//! Client library for the <https://www.vultr.com/> API which
//! is documented at <https://www.vultr.com/api/>
//!
//! # Example blocking
//! It needs to have the feature "blocking" enabled.
//! ```toml
//! vultr = { version = "*", features = ["blocking"] }
//! ```
//! ```ignore
//! use vultr::VultrApi;
//! use vultr::VultrError;
//!
//! fn main() -> Result<(), VultrError> {
//!     let api = VultrApi::new("<KEY>");
//!     let account = api.get_account_info()?;
//!     println!("ACCOUNT: {:?}", account);
//!
//!     let regions = api.get_regions()?;
//!     println!("REGIONS: {:?}", regions);
//!         
//!     let plans = api.get_plans()?;
//!     println!("PLANS: {:?}", plans);
//!     
//!     let os = api.get_os_list()?;
//!     println!("OS: {:?}", os);
//!     Ok(())
//! }
//! ```
//!
//! # Example async
//! ```toml
//! vultr = { version = "*" }
//! ```
//! ```no_run
//! use vultr::VultrApi;
//! use vultr::VultrError;
//!
//! #[async_std::main]
//! async fn main() -> Result<(), VultrError> {
//!     let api = VultrApi::new("<KEY>");
//!     let account = api.get_account_info_async().await?;
//!     println!("ACCOUNT: {:?}", account);
//!     Ok(())
//! }
//! ```
//! ## Features
//! * "default" - use nativetls
//! * "default-rustls" - use rusttls
//! * "blocking" - enable blocking api
//! * "rustls" - enable rustls for reqwest
//! * "nativetls" - add support for nativetls DEFAULT
//! * "gzip" - enable gzip in reqwest
//! * "brotli" - enable brotli in reqwest
//! * "deflate" - enable deflate in reqwest

mod api_error;
mod create_instance_builder;
mod data;
mod instance_type;
mod vultr_error;

use api_error::VultrApiError;
use serde::Serialize;
use std::collections::HashMap;

pub use create_instance_builder::CreateInstanceBuilder;
pub use data::{
    VultrAccount, VultrAccountRoot, VultrDomain, VultrDomainRecord, VultrDomainRecordRoot,
    VultrDomainRecordsRoot, VultrDomainRoot, VultrDomainsRoot, VultrInstance, VultrInstanceRoot,
    VultrInstancesRoot, VultrOS, VultrOSRoot, VultrPlan, VultrPlansRoot, VultrRegion,
    VultrRegionsRoot, VultrSSHKey, VultrSSHKeyRoot, VultrSSHKeysRoot,
};
pub use instance_type::VultrInstanceType;
pub use vultr_error::VultrError;
pub use create_instance_builder::LinuxUserScheme;

#[derive(Clone)]
pub struct VultrApi {
    token: String,
}

impl<'a> VultrApi {
    pub fn new<S>(token: S) -> VultrApi
    where
        S: Into<String>,
    {
        VultrApi {
            token: token.into(),
        }
    }

    async fn get_async(&self, url: &str) -> Result<reqwest::Response, VultrError> {
        let client = reqwest::Client::new();
        let resp = client
            .get(url)
            .bearer_auth(&self.token)
            .send()
            .await
            .map_err(|e| VultrError::Reqwest(e))?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json().await?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    #[cfg(feature = "blocking")]
    fn get(&self, url: &str) -> Result<reqwest::blocking::Response, VultrError> {
        let client = reqwest::blocking::Client::new();
        let resp = client.get(url).bearer_auth(&self.token).send()?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json()?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    async fn post_async<T>(&self, url: &str, json: T) -> Result<reqwest::Response, VultrError>
    where
        T: Serialize + Sized,
    {
        let client = reqwest::Client::new();
        let resp = client
            .post(url)
            .bearer_auth(&self.token)
            .json(&json)
            .send()
            .await?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json().await?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    #[cfg(feature = "blocking")]
    fn post<T>(
        &self,
        url: &str,
        json: T,
    ) -> Result<reqwest::blocking::Response, VultrError>
    where
        T: Serialize + Sized,
    {
        let client = reqwest::blocking::Client::new();
        let resp = client
            .post(url)
            .bearer_auth(&self.token)
            .json(&json)
            .send()?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json()?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    async fn delete_async(&self, url: &str) -> Result<reqwest::Response, VultrError> {
        let client = reqwest::Client::new();
        let resp = client.delete(url).bearer_auth(&self.token).send().await?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json().await?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    #[cfg(feature = "blocking")]
    fn delete(&self, url: &str) -> Result<reqwest::blocking::Response, VultrError> {
        let client = reqwest::blocking::Client::new();
        let resp = client.delete(url).bearer_auth(&self.token).send()?;
        let status = resp.status();
        if status.is_client_error() {
            let result: VultrApiError = resp.json()?;
            Err(VultrError::VultrApi(result.error))
        } else {
            Ok(resp.error_for_status()?)
        }
    }

    pub async fn get_account_info_async(&self) -> Result<VultrAccount, VultrError> {
        Ok(self
            .get_async("https://api.vultr.com/v2/account")
            .await?
            .json::<VultrAccountRoot>()
            .await
            .map_err(|e| VultrError::Reqwest(e))?
            .account)
    }

    #[cfg(feature = "blocking")]
    pub fn get_account_info(&self) -> Result<VultrAccount, VultrError> {
        Ok(self
            .get("https://api.vultr.com/v2/account")?
            .json::<VultrAccountRoot>()?
            .account)
    }

    pub async fn get_dns_domain_list_async(&self) -> Result<Vec<VultrDomain>, VultrError> {
        Ok(self
            .get_async("https://api.vultr.com/v2/domains")
            .await?
            .json::<VultrDomainsRoot>()
            .await?
            .domains)
    }

    #[cfg(feature = "blocking")]
    pub fn get_dns_domain_list(&self) -> Result<Vec<VultrDomain>, VultrError> {
        Ok(self
            .get("https://api.vultr.com/v2/domains")?
            .json::<VultrDomainsRoot>()?
            .domains)
    }

    pub async fn get_dns_domain_async<S>(&self, domain: S) -> Result<VultrDomain, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}", domain.into());
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrDomainRoot>()
            .await?
            .domain)
    }

    #[cfg(feature = "blocking")]
    pub fn get_dns_domain<S>(&self, domain: S) -> Result<VultrDomain, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}", domain.into());
        Ok(self.get(&url)?.json::<VultrDomainRoot>()?.domain)
    }

    pub async fn delete_dns_domain_async<S>(&self, domain: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}", domain.into());
        self.delete_async(&url).await?;
        Ok(())
    }

    #[cfg(feature = "blocking")]
    pub fn delete_dns_domain<S>(&self, domain: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}", domain.into());
        self.delete(&url)?;
        Ok(())
    }

    #[cfg(feature = "blocking")]
    pub fn create_dns_domain<S>(
        &self,
        domain: S,
        ip: Option<String>,
        dns_sec: bool,
    ) -> Result<VultrDomain, VultrError>
    where
        S: Into<String>,
    {
        let mut map = HashMap::new();
        map.insert("domain", domain.into());
        if let Some(ip) = ip {
            map.insert("ip", ip);
        }
        map.insert(
            "dns_sec",
            if dns_sec {
                String::from("enabled")
            } else {
                String::from("disabled")
            },
        );

        let url = "https://api.vultr.com/v2/domains";
        Ok(self.post(&url, map)?.json::<VultrDomainRoot>()?.domain)
    }

    pub async fn create_dns_domain_async<S>(
        &self,
        domain: S,
        ip: Option<String>,
        dns_sec: bool,
    ) -> Result<VultrDomain, VultrError>
    where
        S: Into<String>,
    {
        let mut map = HashMap::new();
        map.insert("domain", domain.into());
        if let Some(ip) = ip {
            map.insert("ip", ip);
        }
        map.insert(
            "dns_sec",
            if dns_sec {
                String::from("enabled")
            } else {
                String::from("disabled")
            },
        );

        let url = "https://api.vultr.com/v2/domains";
        Ok(self
            .post_async(&url, map)
            .await?
            .json::<VultrDomainRoot>()
            .await?
            .domain)
    }

    #[cfg(feature = "blocking")]
    pub fn create_dns_domain_record<S1, S2, S3, S4>(
        &self,
        domain: S1,
        record_type: S2,
        name: S3,
        ip: S4,
        ttl: Option<u32>,
        priority: Option<u32>,
    ) -> Result<VultrDomainRecord, VultrError>
    where
        S1: Into<String>,
        S2: Into<String>,
        S3: Into<String>,
        S4: Into<String>,
    {
        let mut map: HashMap<&str, String> = HashMap::new();
        map.insert("type", record_type.into());
        map.insert("name", name.into());
        map.insert("data", ip.into());
        if let Some(ttl) = ttl {
            map.insert("ttl", ttl.to_string());
        }
        if let Some(priority) = priority {
            let priority = priority.to_string();
            map.insert("priority", priority);
        }

        let url = format!("https://api.vultr.com/v2/domains/{}/records", domain.into());
        Ok(self
            .post(&url, map)?
            .json::<VultrDomainRecordRoot>()?
            .record)
    }

    pub async fn create_dns_domain_record_async<S1, S2, S3, S4>(
        &self,
        domain: S1,
        record_type: S2,
        name: S3,
        ip: S4,
        ttl: Option<u32>,
        priority: Option<u32>,
    ) -> Result<VultrDomainRecord, VultrError>
    where
        S1: Into<String>,
        S2: Into<String>,
        S3: Into<String>,
        S4: Into<String>,
    {
        let mut map: HashMap<&str, String> = HashMap::new();
        map.insert("type", record_type.into());
        map.insert("name", name.into());
        map.insert("data", ip.into());
        if let Some(ttl) = ttl {
            map.insert("ttl", ttl.to_string());
        }
        if let Some(priority) = priority {
            let priority = priority.to_string();
            map.insert("priority", priority);
        }

        let url = format!("https://api.vultr.com/v2/domains/{}/records", domain.into());
        Ok(self
            .post_async(&url, map)
            .await?
            .json::<VultrDomainRecordRoot>()
            .await?
            .record)
    }

    #[cfg(feature = "blocking")]
    pub fn get_dns_domain_records<S>(&self, domain: S) -> Result<Vec<VultrDomainRecord>, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}/records", domain.into());
        let resp: VultrDomainRecordsRoot = self.get(&url)?.json()?;
        Ok(resp.records)
    }

    pub async fn get_dns_domain_records_async<S>(
        &self,
        domain: S,
    ) -> Result<Vec<VultrDomainRecord>, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/domains/{}/records", domain.into());
        let resp: VultrDomainRecordsRoot = self.get_async(&url).await?.json().await?;
        Ok(resp.records)
    }

    #[cfg(feature = "blocking")]
    pub fn delete_dns_domain_record<S1, S2>(
        &self,
        domain: S1,
        record_id: S2,
    ) -> Result<(), VultrError>
    where
        S1: Into<String>,
        S2: Into<String>,
    {
        let url = format!(
            "https://api.vultr.com/v2/domains/{}/records/{}",
            domain.into(),
            record_id.into(),
        );
        self.delete(&url)?;
        Ok(())
    }

    pub async fn delete_dns_domain_record_async<S1, S2>(
        &self,
        domain: S1,
        record_id: S2,
    ) -> Result<(), VultrError>
    where
        S1: Into<String>,
        S2: Into<String>,
    {
        let url = format!(
            "https://api.vultr.com/v2/domains/{}/records/{}",
            domain.into(),
            record_id.into(),
        );
        self.delete_async(&url).await?;
        Ok(())
    }

    #[cfg(feature = "blocking")]
    pub fn get_plans(&self) -> Result<Vec<VultrPlan>, VultrError> {
        let url = format!("https://api.vultr.com/v2/plans");
        Ok(self.get(&url)?.json::<VultrPlansRoot>()?.plans)
    }

    pub async fn get_plans_async(&self) -> Result<Vec<VultrPlan>, VultrError> {
        let url = format!("https://api.vultr.com/v2/plans");
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrPlansRoot>()
            .await?
            .plans)
    }

    #[cfg(feature = "blocking")]
    pub fn get_regions(&self) -> Result<Vec<VultrRegion>, VultrError> {
        let url = format!("https://api.vultr.com/v2/regions");
        Ok(self.get(&url)?.json::<VultrRegionsRoot>()?.regions)
    }

    pub async fn get_regions_async(&self) -> Result<Vec<VultrRegion>, VultrError> {
        let url = format!("https://api.vultr.com/v2/regions");
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrRegionsRoot>()
            .await?
            .regions)
    }

    #[cfg(feature = "blocking")]
    pub fn get_os_list(&self) -> Result<Vec<VultrOS>, VultrError> {
        let url = format!("https://api.vultr.com/v2/os");
        Ok(self.get(&url)?.json::<VultrOSRoot>()?.os)
    }

    pub async fn get_os_list_async(&self) -> Result<Vec<VultrOS>, VultrError> {
        let url = format!("https://api.vultr.com/v2/os");
        Ok(self.get_async(&url).await?.json::<VultrOSRoot>().await?.os)
    }

    #[cfg(feature = "blocking")]
    pub fn get_sshkey_list(&self) -> Result<Vec<VultrSSHKey>, VultrError> {
        let url = format!("https://api.vultr.com/v2/ssh-keys");
        Ok(self.get(&url)?.json::<VultrSSHKeysRoot>()?.ssh_keys)
    }

    pub async fn get_sshkey_list_async(&self) -> Result<Vec<VultrSSHKey>, VultrError> {
        let url = format!("https://api.vultr.com/v2/ssh-keys");
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrSSHKeysRoot>()
            .await?
            .ssh_keys)
    }

    #[cfg(feature = "blocking")]
    pub fn get_sshkey<S>(&self, key_id: S) -> Result<VultrSSHKey, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/ssh-keys/{}", key_id.into());
        Ok(self.get(&url)?.json::<VultrSSHKeyRoot>()?.ssh_key)
    }

    pub async fn get_sshkey_async<S>(&self, key_id: S) -> Result<VultrSSHKey, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/ssh-keys/{}", key_id.into());
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrSSHKeyRoot>()
            .await?
            .ssh_key)
    }

    #[cfg(feature = "blocking")]
    pub fn create_sshkey<S>(&self, name: S, ssh_key: S) -> Result<VultrSSHKey, VultrError>
    where
        S: Into<String>,
    {
        let mut map: HashMap<&str, String> = HashMap::new();
        map.insert("name", name.into());
        map.insert("ssh_key", ssh_key.into());

        let url = format!("https://api.vultr.com/v2/ssh-keys");
        Ok(self.post(&url, map)?.json::<VultrSSHKeyRoot>()?.ssh_key)
    }

    pub async fn create_sshkey_async<S>(
        &self,
        name: S,
        ssh_key: S,
    ) -> Result<VultrSSHKey, VultrError>
    where
        S: Into<String>,
    {
        let mut map: HashMap<&str, String> = HashMap::new();
        map.insert("name", name.into());
        map.insert("ssh_key", ssh_key.into());

        let url = format!("https://api.vultr.com/v2/ssh-keys");
        Ok(self
            .post_async(&url, map)
            .await?
            .json::<VultrSSHKeyRoot>()
            .await?
            .ssh_key)
    }

    #[cfg(feature = "blocking")]
    pub fn delete_sshkey<S>(&self, key_id: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/ssh-keys/{}", key_id.into());
        self.delete(&url)?;
        Ok(())
    }

    pub async fn delete_sshkey_async<S>(&self, key_id: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/ssh-keys/{}", key_id.into());
        self.delete_async(&url).await?;
        Ok(())
    }

    #[cfg(feature = "blocking")]
    pub fn get_instance_list(&self) -> Result<Vec<VultrInstance>, VultrError> {
        let url = format!("https://api.vultr.com/v2/instances");
        let resp: VultrInstancesRoot = self.get(&url)?.json()?;
        Ok(resp.instances)
    }

    pub async fn get_instance_list_async(&self) -> Result<Vec<VultrInstance>, VultrError> {
        let url = format!("https://api.vultr.com/v2/instances");
        let resp: VultrInstancesRoot = self.get_async(&url).await?.json().await?;
        Ok(resp.instances)
    }

    #[cfg(feature = "blocking")]
    pub fn get_instance<S>(&self, instance_id: S) -> Result<VultrInstance, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/instances/{}", instance_id.into());
        Ok(self.get(&url)?.json::<VultrInstanceRoot>()?.instance)
    }

    pub async fn get_instance_async<S>(&self, instance_id: S) -> Result<VultrInstance, VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/instances/{}", instance_id.into());
        Ok(self
            .get_async(&url)
            .await?
            .json::<VultrInstanceRoot>()
            .await?
            .instance)
    }

    /// More information at <https://www.vultr.com/api/#tag/instances/operation/create-instance>
    pub fn create_instance<S1, S2>(&self, region_id: S1, plan_id: S2, instance_type: VultrInstanceType) -> CreateInstanceBuilder
    where
        S1: Into<String>,
        S2: Into<String>,
    {
        CreateInstanceBuilder::new(self.clone(), region_id, plan_id, instance_type)
    }

    #[cfg(feature = "blocking")]
    pub fn delete_instance<S>(&self, instance_id: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/instances/{}", instance_id.into());
        self.delete(&url)?;
        Ok(())
    }

    pub async fn delete_instance_async<S>(&self, instance_id: S) -> Result<(), VultrError>
    where
        S: Into<String>,
    {
        let url = format!("https://api.vultr.com/v2/instances/{}", instance_id.into());
        self.delete_async(&url).await?;
        Ok(())
    }
}