walle-core 0.6.0

Onebot Lib in Rust
Documentation
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
use serde::{Deserialize, Serialize};

use crate::{
    prelude::WalleError,
    util::{PushToValueMap, SelfId, Value, ValueMap, ValueMapExt},
    value_map,
};

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Action {
    pub action: String,
    pub params: ValueMap,
}

impl ValueMapExt for Action {
    fn get_downcast<T>(&self, key: &str) -> Result<T, WalleError>
    where
        T: TryFrom<Value, Error = WalleError>,
    {
        self.params.get_downcast(key)
    }
    fn remove_downcast<T>(&mut self, key: &str) -> Result<T, WalleError>
    where
        T: TryFrom<Value, Error = WalleError>,
    {
        self.params.remove_downcast(key)
    }
    fn try_get_downcast<T>(&self, key: &str) -> Result<Option<T>, WalleError>
    where
        T: TryFrom<Value, Error = WalleError>,
    {
        self.params.try_get_downcast(key)
    }
    fn try_remove_downcast<T>(&mut self, key: &str) -> Result<Option<T>, WalleError>
    where
        T: TryFrom<Value, Error = WalleError>,
    {
        self.params.try_remove_downcast(key)
    }
    fn push<T>(&mut self, value: T)
    where
        T: PushToValueMap,
    {
        value.push_to(&mut self.params)
    }
}

impl SelfId for Action {
    fn self_id(&self) -> String {
        self.params.get_downcast("self_id").unwrap_or_default()
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct BaseAction<T> {
    pub action: T,
    pub extra: ValueMap,
}

pub trait ActionDeclare {
    fn action(&self) -> &'static str;
    fn check(action: &Action) -> bool;
}

impl<T> From<BaseAction<T>> for Action
where
    T: ActionDeclare + PushToValueMap,
{
    fn from(mut action: BaseAction<T>) -> Self {
        Self {
            action: action.action.action().to_string(),
            params: {
                action.action.push_to(&mut action.extra);
                action.extra
            },
        }
    }
}

impl<T> TryFrom<Action> for BaseAction<T>
where
    T: for<'a> TryFrom<&'a mut Action, Error = WalleError>,
{
    type Error = WalleError;
    fn try_from(mut value: Action) -> Result<Self, Self::Error> {
        Ok(Self {
            action: T::try_from(&mut value)?,
            extra: value.params,
        })
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct GetLatestEvents {
    pub limit: i64,
    pub timeout: i64,
}

impl ActionDeclare for GetLatestEvents {
    fn action(&self) -> &'static str {
        "get_latest_events"
    }
    fn check(action: &Action) -> bool {
        action.action.as_str() == "get_latest_events"
    }
}

impl PushToValueMap for GetLatestEvents {
    fn push_to(self, map: &mut ValueMap) {
        map.insert("limit".to_owned(), self.limit.into());
        map.insert("timeout".to_owned(), self.timeout.into());
    }
}

impl Into<Value> for GetLatestEvents {
    fn into(self) -> Value {
        let mut map = ValueMap::default();
        self.push_to(&mut map);
        Value::Map(map)
    }
}

impl TryFrom<&mut Action> for GetLatestEvents {
    type Error = WalleError;
    fn try_from(action: &mut Action) -> Result<Self, Self::Error> {
        if action.action.as_str() != "get_latest_events" {
            return Err(WalleError::DeclareNotMatch(
                "get_latest_events",
                action.action.clone(),
            ));
        } else {
            Ok(Self {
                limit: action.params.remove_downcast("limit")?,
                timeout: action.params.remove_downcast("timeout")?,
            })
        }
    }
}

use walle_macro::{_OneBot as OneBot, _PushToValueMap as PushToValueMap};

#[derive(Debug, Clone, PartialEq, Eq, OneBot, PushToValueMap)]
#[action]
pub struct DeleteMessage {
    pub message_id: String,
}

macro_rules! action {
    ($name: ident, $($f: ident: $fty: ty),*) => {
        #[derive(Debug, Clone, PartialEq, Eq, OneBot, PushToValueMap)]
        #[action]
        pub struct $name {
            $(pub $f: $fty,)*
        }
    };
}

use crate::util::OneBotBytes;

#[derive(Debug, Clone, PartialEq, Eq, OneBot, PushToValueMap)]
#[action]
pub struct GetUserInfo {
    pub user_id: String,
}

action!(GetGroupInfo, group_id: String);
action!(GetGroupMemberList, group_id: String);
action!(LeaveGroup, group_id: String);
action!(GetGroupMemberInfo, group_id: String, user_id: String);
action!(SetGroupName, group_id: String, group_name: String);
action!(GetChannelInfo, guild_id: String, channel_id: String);
action!(GetChannelList, guild_id: String);
action!(GetGuildMemberInfo, guild_id: String, user_id: String);
action!(GetGuildMemberList, guild_id: String);
action!(SetGuildName, guild_id: String, guild_name: String);
action!(
    SetChannelName,
    guild_id: String,
    channel_id: String,
    channel_name: String
);
action!(LeaveGuild, guild_id: String);
action!(GetGuildInfo, guild_id: String);

#[derive(Debug, Clone, PartialEq, OneBot, PushToValueMap)]
#[action]
pub struct SendMessage {
    pub detail_type: String,
    pub user_id: Option<String>,
    pub group_id: Option<String>,
    pub guild_id: Option<String>,
    pub channel_id: Option<String>,
    pub message: crate::segment::Segments,
}

#[derive(Debug, Clone, PartialEq, Eq, OneBot, PushToValueMap)]
#[action]
#[value]
pub struct GetFile {
    pub file_id: String,
    pub ty: String,
}

#[derive(Debug, Clone, PartialEq, Eq, OneBot, PushToValueMap)]
#[action]
#[value]
pub struct UploadFile {
    pub ty: String,
    pub name: String,
    pub url: Option<String>,
    pub headers: Option<std::collections::HashMap<String, String>>,
    pub path: Option<String>,
    pub data: Option<OneBotBytes>,
    pub sha256: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum UploadFileFragmented {
    Prepare {
        name: String,
        total_size: i64,
    },
    Transfer {
        file_id: String,
        offset: i64,
        size: i64,
        data: OneBotBytes,
    },
    Finish {
        file_id: String,
        sha256: Option<String>,
    },
}

impl ActionDeclare for UploadFileFragmented {
    fn action(&self) -> &'static str {
        "upload_file_fragmented"
    }
    fn check(action: &Action) -> bool {
        action.action.as_str() == "upload_file_fragmented"
    }
}

impl TryFrom<&mut Action> for UploadFileFragmented {
    type Error = WalleError;
    fn try_from(action: &mut Action) -> Result<Self, Self::Error> {
        if Self::check(&action) {
            Err(WalleError::DeclareNotMatch(
                "upload_file_fragmented",
                action.action.clone(),
            ))
        } else {
            match action.params.remove_downcast::<String>("stage")?.as_str() {
                "prepare" => Ok(Self::Prepare {
                    name: action.params.remove_downcast("name")?,
                    total_size: action.params.remove_downcast("total_size")?,
                }),
                "transfer" => Ok(Self::Transfer {
                    file_id: action.params.remove_downcast("file_id")?,
                    offset: action.params.remove_downcast("offset")?,
                    size: action.params.remove_downcast("size")?,
                    data: action.params.remove_downcast("data")?,
                }),
                "finish" => Ok(Self::Finish {
                    file_id: action.params.remove_downcast("file_id")?,
                    sha256: action.params.try_remove_downcast("sha256")?,
                }),
                x => Err(WalleError::DeclareNotMatch(
                    "prepare or transfer or finish",
                    x.to_string(),
                )),
            }
        }
    }
}

impl TryFrom<Action> for UploadFileFragmented {
    type Error = WalleError;
    fn try_from(mut value: Action) -> Result<Self, Self::Error> {
        Self::try_from(&mut value)
    }
}

impl From<UploadFileFragmented> for Action {
    fn from(u: UploadFileFragmented) -> Self {
        Self {
            action: u.action().to_string(),
            params: {
                match u {
                    UploadFileFragmented::Prepare { name, total_size } => value_map! {
                        "stage": "prepare",
                        "name": name,
                        "total_size": total_size
                    },
                    UploadFileFragmented::Transfer {
                        file_id,
                        offset,
                        size,
                        data,
                    } => value_map! {
                        "stage" : "transfer",
                        "file_id" : file_id,
                        "offset" : offset,
                        "size" : size,
                        "date" : data
                    },
                    UploadFileFragmented::Finish { file_id, sha256 } => value_map! {
                        "stage" : "finish",
                        "file_id" : file_id,
                        "sha256" : sha256
                    },
                }
            },
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum GetFileFragmented {
    Prepare {
        file_id: String,
    },
    Transfer {
        file_id: String,
        offset: i64,
        size: i64,
    },
}

impl ActionDeclare for GetFileFragmented {
    fn action(&self) -> &'static str {
        "get_file_fragmented"
    }
    fn check(action: &Action) -> bool {
        action.action.as_str() == "get_file_fragmented"
    }
}

impl TryFrom<&mut Action> for GetFileFragmented {
    type Error = WalleError;
    fn try_from(action: &mut Action) -> Result<Self, Self::Error> {
        if Self::check(action) {
            Err(WalleError::DeclareNotMatch(
                "get_file_fragmented",
                action.action.clone(),
            ))
        } else {
            match action.params.remove_downcast::<String>("stage")?.as_str() {
                "prepare" => Ok(Self::Prepare {
                    file_id: action.params.remove_downcast("file_id")?,
                }),
                "transfer" => Ok(Self::Transfer {
                    file_id: action.params.remove_downcast("file_id")?,
                    offset: action.params.remove_downcast("offset")?,
                    size: action.params.remove_downcast("size")?,
                }),
                x => Err(WalleError::DeclareNotMatch(
                    "prepare or transfer or finish",
                    x.to_string(),
                )),
            }
        }
    }
}

impl TryFrom<Action> for GetFileFragmented {
    type Error = WalleError;
    fn try_from(mut value: Action) -> Result<Self, Self::Error> {
        Self::try_from(&mut value)
    }
}

impl From<GetFileFragmented> for Action {
    fn from(g: GetFileFragmented) -> Self {
        Self {
            action: g.action().to_string(),
            params: match g {
                GetFileFragmented::Prepare { file_id } => value_map! {
                    "stage": "prepare",
                    "file_id": file_id
                },
                GetFileFragmented::Transfer {
                    file_id,
                    offset,
                    size,
                } => value_map! {
                    "stage": "transfer",
                    "file_id": file_id,
                    "offset": offset,
                    "size": size
                },
            },
        }
    }
}

#[test]
fn action() {
    use crate::{value_map, WalleResult};
    let action = Action {
        action: "upload_file".to_string(),
        params: value_map! {
            "type": "type",
            "name": "name",
            "extra": "test"
        },
    };
    let uf: WalleResult<BaseAction<UploadFile>> = action.try_into();
    println!("{:?}", uf);
}