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
use super::{Attributes, Loc, RpChannel, RpPathSpec};
use linked_hash_map::LinkedHashMap;
use std::default;
#[derive(Debug, Clone, Serialize)]
pub enum RpHttpMethod {
GET,
POST,
PUT,
UPDATE,
DELETE,
PATCH,
HEAD,
}
impl RpHttpMethod {
pub fn as_str(&self) -> &str {
use self::RpHttpMethod::*;
match *self {
GET => "GET",
POST => "POST",
PUT => "PUT",
UPDATE => "UPDATE",
DELETE => "DELETE",
PATCH => "PATCH",
HEAD => "HEAD",
}
}
}
#[derive(Debug, Clone, Serialize, PartialEq, Eq)]
pub enum RpAccept {
#[serde(rename = "json")]
Json,
#[serde(rename = "text")]
Text,
}
impl default::Default for RpAccept {
fn default() -> Self {
RpAccept::Json
}
}
#[derive(Debug, Clone, Serialize, Default)]
pub struct RpEndpointHttp {
pub path: Option<RpPathSpec>,
pub body: Option<String>,
pub method: Option<RpHttpMethod>,
pub accept: RpAccept,
}
#[derive(Debug, Clone, Serialize)]
pub struct RpEndpoint {
pub ident: String,
pub safe_ident: Option<String>,
pub name: Option<String>,
pub comment: Vec<String>,
pub attributes: Attributes,
pub arguments: LinkedHashMap<String, (Loc<String>, Loc<RpChannel>)>,
pub response: Option<Loc<RpChannel>>,
pub http: RpEndpointHttp,
}
impl RpEndpoint {
pub fn id_parts<F>(&self, filter: F) -> Vec<String>
where
F: Fn(&str) -> String,
{
vec![filter(self.ident.as_str())]
}
pub fn name(&self) -> &str {
self.name
.as_ref()
.map(|s| s.as_str())
.unwrap_or(self.ident())
}
pub fn safe_ident(&self) -> &str {
self.safe_ident
.as_ref()
.map(|s| s.as_str())
.unwrap_or(self.ident.as_str())
}
pub fn ident(&self) -> &str {
self.ident.as_str()
}
pub fn has_http_support(&self) -> bool {
if !self.http.path.is_some() {
return false;
}
true
}
}