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
use crate::framework::response::{ApiResult, Empty};
use crate::framework::ApiEnvironment;
use serde::Serialize;
use url::Url;

/// HTTP methods used on this crate.
#[derive(Copy, Clone)]
pub enum Method {
    Get,
    Post,
    Put,
    Delete,
    Patch,
}

/// Heroku Endpoint trait by default has a empty struct and void query types and body types
/// 
/// This trait is responsible for the majority of the functionality of this crate.
pub trait HerokuEndpoint<ResultType = Empty, QueryType = (), BodyType = ()>
where
    ResultType: ApiResult,
    QueryType: Serialize,
    BodyType: Serialize,
{
    fn method(&self) -> Method;
    fn path(&self) -> String;
    fn query(&self) -> Option<QueryType> {
        None
    }
    fn body(&self) -> Option<BodyType> {
        None
    }
    fn url(&self, environment: &ApiEnvironment) -> Url {
        Url::from(environment).join(&self.path()).unwrap()
    }
    fn content_type(&self) -> &str {
        "application/json"
    }
    fn version(&self) -> &str {
        "application/vnd.heroku+json; version=3"
    }
    fn agent(&self) -> &str {
        "heroku_rs"
    }
}