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
use worker_sys::cf::Cf as FfiCf;
use worker_sys::cf::TlsClientAuth as FfiTlsClientAuth;
#[derive(Debug)]
pub struct Cf {
inner: FfiCf,
}
impl Cf {
pub fn colo(&self) -> String {
self.inner.colo()
}
pub fn asn(&self) -> u32 {
self.inner.asn()
}
pub fn country(&self) -> Option<String> {
self.inner.country()
}
pub fn http_protocol(&self) -> String {
self.inner.http_protocol()
}
pub fn request_priority(&self) -> Option<RequestPriority> {
if let Some(priority) = self.inner.request_priority() {
let mut weight = 1;
let mut exclusive = false;
let mut group = 0;
let mut group_weight = 0;
priority
.as_str()
.split(';')
.map(|key_value_pair| {
let mut iter = key_value_pair.split('=');
let key = iter.next().unwrap(); let value = iter.next().unwrap(); (key, value)
})
.for_each(|(key, value)| match key {
"weight" => weight = value.parse().unwrap(),
"exclusive" => exclusive = value == "1",
"group" => group = value.parse().unwrap(),
"group-weight" => group_weight = value.parse().unwrap(),
_ => unreachable!(),
});
Some(RequestPriority {
weight,
exclusive,
group,
group_weight,
})
} else {
None
}
}
pub fn tls_cipher(&self) -> String {
self.inner.tls_cipher()
}
pub fn tls_client_auth(&self) -> Option<TlsClientAuth> {
self.inner.tls_client_auth().map(Into::into)
}
pub fn tls_version(&self) -> String {
self.inner.tls_version()
}
pub fn city(&self) -> Option<String> {
self.inner.city()
}
pub fn continent(&self) -> Option<String> {
self.inner.continent()
}
pub fn coordinates(&self) -> Option<(f32, f32)> {
let lat_opt = self.inner.latitude();
let lon_opt = self.inner.longitude();
match (lat_opt, lon_opt) {
(Some(lat_str), Some(lon_str)) => {
let lat = lat_str.parse().unwrap();
let lon = lon_str.parse().unwrap();
Some((lat, lon))
}
_ => None,
}
}
pub fn postal_code(&self) -> Option<String> {
self.inner.postal_code()
}
pub fn metro_code(&self) -> Option<String> {
self.inner.metro_code()
}
pub fn region(&self) -> Option<String> {
self.inner.region()
}
pub fn region_code(&self) -> Option<String> {
self.inner.region_code()
}
pub fn timezone(&self) -> impl chrono::TimeZone {
let tz = self.inner.timezone();
tz.parse::<chrono_tz::Tz>().unwrap()
}
pub fn is_eu_country(&self) -> bool {
self.inner.is_eu_country() == Some("1".to_string())
}
}
#[derive(Debug, Clone, Copy)]
pub struct RequestPriority {
pub weight: usize,
pub exclusive: bool,
pub group: usize,
pub group_weight: usize,
}
impl From<FfiCf> for Cf {
fn from(inner: FfiCf) -> Self {
Self { inner }
}
}
#[derive(Debug)]
pub struct TlsClientAuth {
inner: FfiTlsClientAuth,
}
impl TlsClientAuth {
pub fn cert_issuer_dn_legacy(&self) -> String {
self.inner.cert_issuer_dn_legacy()
}
pub fn cert_issuer_dn(&self) -> String {
self.inner.cert_issuer_dn()
}
pub fn cert_issuer_dn_rfc2253(&self) -> String {
self.inner.cert_issuer_dn_rfc2253()
}
pub fn cert_subject_dn_legacy(&self) -> String {
self.inner.cert_subject_dn_legacy()
}
pub fn cert_verified(&self) -> String {
self.inner.cert_verified()
}
pub fn cert_not_after(&self) -> String {
self.inner.cert_not_after()
}
pub fn cert_subject_dn(&self) -> String {
self.inner.cert_subject_dn()
}
pub fn cert_fingerprint_sha1(&self) -> String {
self.inner.cert_fingerprint_sha1()
}
pub fn cert_not_before(&self) -> String {
self.inner.cert_not_before()
}
pub fn cert_serial(&self) -> String {
self.inner.cert_serial()
}
pub fn cert_presented(&self) -> String {
self.inner.cert_presented()
}
pub fn cert_subject_dn_rfc225(&self) -> String {
self.inner.cert_subject_dn_rfc225()
}
}
impl From<FfiTlsClientAuth> for TlsClientAuth {
fn from(inner: FfiTlsClientAuth) -> Self {
Self { inner }
}
}