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
use std::marker::PhantomData;
use crate::*;
use indexmap::IndexMap;
use serde::{Deserialize, Deserializer, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
pub struct PathItem {
#[serde(skip_serializing_if = "Option::is_none")]
pub summary: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub get: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub put: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub post: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub delete: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub options: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub head: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub patch: Option<Operation>,
#[serde(skip_serializing_if = "Option::is_none")]
pub trace: Option<Operation>,
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub servers: Vec<Server>,
#[serde(default)]
#[serde(skip_serializing_if = "Vec::is_empty")]
pub parameters: Vec<ReferenceOr<Parameter>>,
#[serde(flatten, deserialize_with = "crate::util::deserialize_extensions")]
pub extensions: IndexMap<String, serde_json::Value>,
}
impl PathItem {
pub fn iter(&self) -> impl Iterator<Item = (&str, &'_ Operation)> {
vec![
("get", &self.get),
("put", &self.put),
("post", &self.post),
("delete", &self.delete),
("options", &self.options),
("head", &self.head),
("patch", &self.patch),
("trace", &self.trace),
]
.into_iter()
.filter_map(|(method, maybe_op)| maybe_op.as_ref().map(|op| (method, op)))
}
}
impl IntoIterator for PathItem {
type Item = (&'static str, Operation);
type IntoIter = std::vec::IntoIter<Self::Item>;
fn into_iter(self) -> Self::IntoIter {
vec![
("get", self.get),
("put", self.put),
("post", self.post),
("delete", self.delete),
("options", self.options),
("head", self.head),
("patch", self.patch),
("trace", self.trace),
]
.into_iter()
.filter_map(|(method, maybe_op)| maybe_op.map(|op| (method, op)))
.collect::<Vec<_>>()
.into_iter()
}
}
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
pub struct Paths {
#[serde(flatten, deserialize_with = "deserialize_paths")]
pub paths: IndexMap<String, ReferenceOr<PathItem>>,
#[serde(flatten, deserialize_with = "crate::util::deserialize_extensions")]
pub extensions: IndexMap<String, serde_json::Value>,
}
impl Paths {
pub fn iter(&self) -> indexmap::map::Iter<String, ReferenceOr<PathItem>> {
self.paths.iter()
}
}
impl IntoIterator for Paths {
type Item = (String, ReferenceOr<PathItem>);
type IntoIter = indexmap::map::IntoIter<String, ReferenceOr<PathItem>>;
fn into_iter(self) -> Self::IntoIter {
self.paths.into_iter()
}
}
fn deserialize_paths<'de, D>(
deserializer: D,
) -> Result<IndexMap<String, ReferenceOr<PathItem>>, D::Error>
where
D: Deserializer<'de>,
{
deserializer.deserialize_map(PredicateVisitor(
|key: &String| key.starts_with('/'),
PhantomData,
))
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_path_item_iterators() {
let operation = Operation::default();
let path_item = PathItem {
get: Some(operation.clone()),
post: Some(operation.clone()),
delete: Some(operation.clone()),
..Default::default()
};
let expected = vec![
("get", &operation),
("post", &operation),
("delete", &operation),
];
assert_eq!(path_item.iter().collect::<Vec<_>>(), expected);
let expected = vec![
("get", operation.clone()),
("post", operation.clone()),
("delete", operation.clone()),
];
assert_eq!(path_item.into_iter().collect::<Vec<_>>(), expected);
}
}