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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
use crate::resource::ResourceField;
use std::default::Default;
use std::fmt::Write;
use std::marker::PhantomData;
#[derive(Debug)]
pub struct ObjectOption<Field> {
select_buf: String,
expand_buf: String,
_marker: PhantomData<Fn(&Field)>,
}
impl<Field: ResourceField> ObjectOption<Field> {
pub fn new() -> Self {
Self {
select_buf: String::new(),
expand_buf: String::new(),
_marker: PhantomData,
}
}
pub fn select(mut self, fields: &[Field]) -> Self {
for sel in fields {
self = self.select_raw(&[sel.api_field_name()]);
}
self
}
fn select_raw(mut self, fields: &[&str]) -> Self {
for sel in fields {
write!(self.select_buf, ",{}", sel).unwrap();
}
self
}
pub fn expand(self, field: Field, select_children: Option<&[&str]>) -> Self {
self.expand_raw(field.api_field_name(), select_children)
}
fn expand_raw(mut self, field: &str, select_children: Option<&[&str]>) -> Self {
let buf = &mut self.expand_buf;
write!(buf, ",{}", field).unwrap();
if let Some(children) = select_children {
write!(buf, "($select=").unwrap();
for sel in children {
write!(buf, "{},", sel).unwrap();
}
write!(buf, ")").unwrap();
}
self
}
pub(crate) fn params(&self) -> impl Iterator<Item = (&str, &str)> {
std::iter::empty()
.chain(self.select_buf.get(1..).map(|s| ("$select", s)))
.chain(self.expand_buf.get(1..).map(|s| ("$expand", s)))
}
}
impl<Field: ResourceField> Default for ObjectOption<Field> {
fn default() -> Self {
Self::new()
}
}
#[derive(Debug)]
pub struct CollectionOption<Field> {
q: ObjectOption<Field>,
order_buf: Option<String>,
page_size_buf: Option<String>,
get_count_buf: Option<bool>,
}
impl<Field: ResourceField> CollectionOption<Field> {
pub fn new() -> Self {
Self {
q: Default::default(),
order_buf: None,
page_size_buf: None,
get_count_buf: None,
}
}
pub fn select(mut self, fields: &[Field]) -> Self {
self.q = self.q.select(fields);
self
}
pub fn expand(mut self, field: Field, select_children: Option<&[&str]>) -> Self {
self.q = self.q.expand(field, select_children);
self
}
pub fn order_by(mut self, field: Field, order: Order) -> Self {
let order = match order {
Order::Ascending => "asc",
Order::Descending => "desc",
};
self.order_buf = Some(format!("{} {}", field.api_field_name(), order));
self
}
pub fn page_size(mut self, size: usize) -> Self {
self.page_size_buf = Some(size.to_string());
self
}
pub fn get_count(mut self, get_count: bool) -> Self {
self.get_count_buf = Some(get_count);
self
}
pub(crate) fn params(&self) -> impl Iterator<Item = (&str, &str)> {
self.q
.params()
.chain(self.order_buf.as_ref().map(|s| ("$orderby", &**s)))
.chain(self.page_size_buf.as_ref().map(|s| ("$top", &**s)))
.chain(
self.get_count_buf
.map(|v| ("$count", if v { "true" } else { "false" })),
)
}
}
impl<Field: ResourceField> Default for CollectionOption<Field> {
fn default() -> Self {
Self::new()
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum Order {
Ascending,
Descending,
}