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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
use ::serde_json;
use ::fmt;
use ::default::Default;
#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct Login {
pub protocol: u8,
pub client: &'static str,
pub clientver: f32,
#[serde(skip_serializing_if = "Option::is_none")]
pub login: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub password: Option<String>
}
impl Login {
pub fn new(login: Option<String>, password: Option<String>) -> Self {
Login {
login,
password,
..Login::default()
}
}
}
impl fmt::Display for Login {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let payload = serde_json::to_string(&self).expect("Invalid Login message struct");
write!(f, "login {}", payload)
}
}
impl Default for Login {
fn default() -> Self {
Login {
protocol: 1,
client: "rusty",
clientver: 0.1,
login: None,
password: None
}
}
}
pub mod get {
use ::fmt;
#[derive(Clone)]
pub struct Flags {
inner: Vec<&'static str>
}
impl Flags {
pub fn new() -> Self {
Self {
inner: vec![]
}
}
#[inline(always)]
fn push(mut self, flag: &'static str) -> Self {
self.inner.push(flag);
self
}
pub fn basic(self) -> Self { self.push("basic") }
pub fn details(self) -> Self { self.push("details") }
pub fn anime(self) -> Self { self.push("anime") }
pub fn relations(self) -> Self { self.push("relations") }
pub fn tags(self) -> Self { self.push("tags") }
pub fn stats(self) -> Self { self.push("stats") }
pub fn screens(self) -> Self { self.push("screens") }
pub fn staff(self) -> Self { self.push("staff") }
pub fn vn(self) -> Self { self.push("vn") }
pub fn producers(self) -> Self { self.push("producers") }
pub fn meas(self) -> Self { self.push("meas") }
pub fn traits(self) -> Self { self.push("traits") }
pub fn vns(self) -> Self { self.push("vns") }
pub fn voiced(self) -> Self { self.push("voiced") }
}
impl fmt::Display for Flags {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.inner.join(","))
}
}
#[derive(Clone)]
pub struct Type {
inner: &'static str
}
impl Type {
pub fn vn() -> Self { Self { inner: "vn" } }
pub fn release() -> Self { Self { inner: "release" } }
pub fn producer() -> Self { Self { inner: "producer" } }
pub fn character() -> Self { Self { inner: "character" } }
pub fn staff() -> Self { Self { inner: "staff" } }
pub fn user() -> Self { Self { inner: "user" } }
pub fn votelist() -> Self { Self { inner: "votelist" } }
pub fn vnlist() -> Self { Self { inner: "vnlist" } }
pub fn wishlist() -> Self { Self { inner: "wishlist" } }
}
impl fmt::Display for Type {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.inner)
}
}
#[macro_export]
macro_rules! filter {
($left:tt $op:tt $var:ident) => {
format_args!("{} {} {}", stringify!($left), stringify!($op), $var)
};
($left:tt $op:tt $var:tt) => {
format_args!("{} {} {}", stringify!($left), stringify!($op), stringify!($var))
}
}
#[derive(Clone)]
pub struct Filters {
inner: Vec<String>
}
impl Filters {
pub fn new() -> Self {
Self {
inner: vec![]
}
}
pub fn filter<T: fmt::Display>(mut self, element: T) -> Self {
self.inner.push(format!("{}", element));
self
}
pub fn and<T: fmt::Display>(self, filter: T) -> Self {
self.filter("and").filter(filter)
}
pub fn or<T: fmt::Display>(self, filter: T) -> Self {
self.filter("or").filter(filter)
}
}
impl fmt::Display for Filters {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "({})", self.inner.join(" "))
}
}
#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct Options {
#[serde(skip_serializing_if = "Option::is_none")]
pub page: Option<u32>,
#[serde(skip_serializing_if = "Option::is_none")]
pub results: Option<u32>,
#[serde(skip_serializing_if = "Option::is_none")]
pub sort: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reverse: Option<bool>
}
}
#[derive(Clone)]
pub struct Get {
pub kind: get::Type,
pub flags: get::Flags,
pub filters: get::Filters,
pub options: Option<get::Options>
}
impl fmt::Display for Get {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "get {} {} {}", self.kind, self.flags, self.filters)?;
if let Some(ref options) = self.options {
let payload = serde_json::to_string(options).expect("Invalid Get message struct");
write!(f, " {}", payload)
}
else {
Ok(())
}
}
}