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
// id               number      This is a unique identification number for the key. This can be used to reference a specific SSH key when you wish to embed a key into a Droplet.
// fingerprint      string      This attribute contains the fingerprint value that is generated from the public key. This is a unique identifier that will differentiate it from other keys using a format that SSH recognizes.
// public_key       string      This attribute contains the entire public key string that was uploaded. This is what is embedded into the root user's authorized_keys file if you choose to include this SSH key during Droplet creation.
// name             string      This is the human-readable display name for the given SSH key. This is used to easily identify the SSH keys when they are displayed.

use std::fmt;
use std::borrow::Cow;

use response::NamedResponse;
use response;

#[derive(Deserialize, Debug)]
pub struct SshKey {
    id: f64,
    fingerprint: String,
    public_key: String,
    name: String,
}

impl response::NotArray for SshKey {}

impl NamedResponse for SshKey {
    fn name<'a>() -> Cow<'a, str> {
        "ssh_key".into()
    }
}

impl fmt::Display for SshKey {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
       write!(f, "ID: {:.0}\n\
                  Fingerprint: {}\n\
                  Public Key: {}\n\
                  Name: {}",
                self.id,
                self.fingerprint,
                self.public_key,
                self.name)
    }
}

pub type SshKeys = Vec<SshKey>;