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
use saigon_core::{Adapter, Command, User, UserId};
use serde::Deserialize;

pub struct Basecamp;

impl Adapter for Basecamp {
    fn name(&self) -> String {
        env!("CARGO_PKG_NAME").into()
    }

    fn version(&self) -> String {
        env!("CARGO_PKG_VERSION").into()
    }

    fn handle(&mut self, payload: &str) -> Option<Command> {
        let payload: Payload = serde_json::from_str(payload).ok()?;

        Some(Command {
            user: User {
                id: UserId(payload.creator.id.to_string()),
                full_name: payload.creator.name,
            },
            value: payload.command,
        })
    }
}

#[derive(Debug, Deserialize)]
pub struct Payload {
    pub command: String,
    pub creator: Creator,
    pub callback_url: String,
}

#[derive(Debug, Deserialize)]
pub struct Creator {
    pub id: i32,
    pub attachable_sgid: String,
    pub name: String,
    pub email_address: String,
    pub personable_type: String,
    pub title: String,
    pub bio: Option<String>,
    pub created_at: String,
    pub updated_at: String,
    pub admin: bool,
    pub owner: bool,
    pub client: bool,
    pub time_zone: String,
    pub avatar_url: String,
    pub company: Company,
}

#[derive(Debug, Deserialize)]
pub struct Company {
    pub id: i32,
    pub name: String,
}