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
use std::str::FromStr;
use num_derive::FromPrimitive;
use num_traits::FromPrimitive;
use serde::{Deserialize, Serialize};
#[derive(Default, Debug)]
pub struct Confirmations(pub Vec<Confirmation>);
#[derive(Debug, Clone, PartialEq)]
pub struct Confirmation {
pub id: String,
pub key: String,
pub kind: EConfirmationType,
pub details: Option<ConfirmationDetails>,
}
#[derive(Debug, Clone, PartialEq, Copy)]
pub struct ConfirmationDetails {
pub trade_offer_id: Option<i64>,
}
#[derive(Debug, Copy, Clone, Serialize, Deserialize, Eq, PartialEq, FromPrimitive)]
pub enum EConfirmationType {
Unknown = 0,
Generic = 1,
Trade = 2,
Market = 3,
PhoneNumberChange = 5,
AccountRecovery = 6,
}
impl FromStr for EConfirmationType {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
let number = u32::from_str(s).unwrap();
Ok(EConfirmationType::from_u32(number).unwrap())
}
}
impl Confirmations {
pub fn filter_by_confirmation_type(&mut self, confirmation_type: EConfirmationType) {
self.0.retain(|confirmation| confirmation.kind == confirmation_type);
}
pub fn filter_by_trade_offer_ids<T: AsRef<[i64]>>(&mut self, trade_offer_ids: T) {
self.0.retain(|c| {
if let Some(conf_details) = c.details {
let trade_offer_id = conf_details.trade_offer_id.unwrap();
return trade_offer_ids.as_ref().iter().any(|&id| id == trade_offer_id);
}
false
});
}
}
impl From<Vec<Confirmation>> for Confirmations {
fn from(confirmations_vec: Vec<Confirmation>) -> Self {
Self { 0: confirmations_vec }
}
}
#[derive(Copy, Clone, Debug)]
pub enum ConfirmationMethod {
Accept,
Deny,
}
impl ConfirmationMethod {
pub(crate) fn value(&self) -> &'static str {
match *self {
ConfirmationMethod::Accept => "allow",
ConfirmationMethod::Deny => "cancel",
}
}
}
#[derive(Copy, Clone, Debug)]
enum EInventoryPrivacy {
Unknown,
Private,
FriendsOnly,
Public,
}
#[cfg(test)]
mod tests {
use super::*;
fn get_confirmations() -> Confirmations {
let mut vec = Vec::new();
vec.push(Confirmation {
id: "7676451136".to_string(),
key: "18064583892738866189".to_string(),
kind: EConfirmationType::Trade,
details: Some(ConfirmationDetails {
trade_offer_id: Some(4009687284),
}),
});
vec.push(Confirmation {
id: "7652515663".to_string(),
key: "10704556181383316145".to_string(),
kind: EConfirmationType::Trade,
details: Some(ConfirmationDetails {
trade_offer_id: Some(4000980011),
}),
});
vec.push(Confirmation {
id: "7652555421".to_string(),
key: "10704556181383323456".to_string(),
kind: EConfirmationType::Trade,
details: Some(ConfirmationDetails {
trade_offer_id: Some(4000793103),
}),
});
vec.push(Confirmation {
id: "7652515663".to_string(),
key: "20845677815483316145".to_string(),
kind: EConfirmationType::Market,
details: None,
});
Confirmations::from(vec)
}
#[test]
fn filter_confirmation_type() {
let mut confirmations = get_confirmations();
assert_eq!(confirmations.0.len(), 4);
confirmations.filter_by_confirmation_type(EConfirmationType::Market);
assert_eq!(confirmations.0.len(), 1);
}
#[test]
fn filter_trade_offer_id() {
let mut confirmations = get_confirmations();
let first = 4009687284;
let second = 4000793103;
let third = 33311221;
let tradeoffer_id = vec![first, second, third];
let details_0 = ConfirmationDetails {
trade_offer_id: Some(first),
};
let details_1 = ConfirmationDetails {
trade_offer_id: Some(second),
};
confirmations.filter_by_trade_offer_ids(tradeoffer_id);
assert_eq!(confirmations.0.get(0).unwrap().details, Some(details_0));
assert_eq!(confirmations.0.get(1).unwrap().details, Some(details_1));
assert_eq!(confirmations.0.get(2), None);
}
}