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
use ;
use SerializeMap;
///A custom PASETO claim which can be created with a key and a value T
/// ## Setting your own Custom Claims
///
/// The `CustomClaim` struct takes a tuple in the form of `(key: String, value: T)` where T is any
/// serializable type
/// #### Note: *`CustomClaim`s use the `TryFrom` trait and return a `Result<(), PasetoClaimError>` if you attempt to use one of the [reserved PASETO keys](https://github.com/paseto-standard/paseto-spec/blob/master/docs/02-Implementation-Guide/04-Claims.md) in your `CustomClaim`*
///
/// ```rust
/// # use rusty_paseto::prelude::*;
/// # #[cfg(feature = "default")]
/// # {
/// # // must include
/// # use std::convert::TryFrom;
/// # let key = PasetoSymmetricKey::<V4, Local>::from(Key::from(b"wubbalubbadubdubwubbalubbadubdub"));
/// let token = PasetoBuilder::<V4, Local>::default()
/// .set_claim(CustomClaim::try_from(("Co-star", "Morty Smith"))?)
/// .set_claim(CustomClaim::try_from(("Universe", 137))?)
/// .build(&key)?;
/// # }
/// # Ok::<(),GenericBuilderError>(())
/// ```
///
/// This throws an error:
/// ```should_panic
/// # use rusty_paseto::prelude::*;
/// # #[cfg(feature = "default")]
/// # {
/// # // must include
/// # use std::convert::TryFrom;
/// # let key = PasetoSymmetricKey::<V4, Local>::from(Key::from(b"wubbalubbadubdubwubbalubbadubdub"));
/// // "exp" is a reserved PASETO claim key, you should use the ExpirationClaim type
/// let token = PasetoBuilder::<V4, Local>::default()
/// .set_claim(CustomClaim::try_from(("exp", "Some expiration value"))?)
/// .build(&key)?;
/// # }
/// # Ok::<(),anyhow::Error>(())
/// ```
/// # Validating claims
/// `rusty_paseto` allows for flexible claim validation at parse time
///
/// ## Checking claims
///
/// Let's see how we can check particular claims exist with expected values.
/// ```
/// # #[cfg(feature = "default")]
/// # {
/// # use rusty_paseto::prelude::*;
/// # use std::convert::TryFrom;
///
/// # // create a key specifying the PASETO version and purpose
/// # let key = PasetoSymmetricKey::<V4, Local>::from(Key::from(b"wubbalubbadubdubwubbalubbadubdub"));
/// // use a default token builder with the same PASETO version and purpose
/// let token = PasetoBuilder::<V4, Local>::default()
/// .set_claim(SubjectClaim::from("Get schwifty"))
/// .set_claim(CustomClaim::try_from(("Contestant", "Earth"))?)
/// .set_claim(CustomClaim::try_from(("Universe", 137))?)
/// .build(&key)?;
///
/// PasetoParser::<V4, Local>::default()
/// // you can check any claim even custom claims
/// .check_claim(SubjectClaim::from("Get schwifty"))
/// .check_claim(CustomClaim::try_from(("Contestant", "Earth"))?)
/// .check_claim(CustomClaim::try_from(("Universe", 137))?)
/// .parse(&token, &key)?;
///
/// // no need for the assertions below since the check_claim methods
/// // above accomplish the same but at parse time!
///
/// //assert_eq!(json_value["sub"], "Get schwifty");
/// //assert_eq!(json_value["Contestant"], "Earth");
/// //assert_eq!(json_value["Universe"], 137);
/// # }
/// # Ok::<(),anyhow::Error>(())
/// ```
///
/// # Custom validation
///
/// What if we have more complex validation requirements? You can pass in a reference to a closure which receives
/// the key and value of the claim you want to validate so you can implement any validation logic
/// you choose.
///
/// Let's see how we can validate our tokens only contain universes with prime numbers:
///
/// ```
/// # use rusty_paseto::prelude::*;
/// # #[cfg(feature = "default")]
/// # {
/// # use std::convert::TryFrom;
///
/// # // create a key specifying the PASETO version and purpose
/// # let key = PasetoSymmetricKey::<V4, Local>::from(Key::from(b"wubbalubbadubdubwubbalubbadubdub"));
/// // use a default token builder with the same PASETO version and purpose
/// let token = PasetoBuilder::<V4, Local>::default()
/// .set_claim(SubjectClaim::from("Get schwifty"))
/// .set_claim(CustomClaim::try_from(("Contestant", "Earth"))?)
/// .set_claim(CustomClaim::try_from(("Universe", 137))?)
/// .build(&key)?;
///
/// PasetoParser::<V4, Local>::default()
/// .check_claim(SubjectClaim::from("Get schwifty"))
/// .check_claim(CustomClaim::try_from(("Contestant", "Earth"))?)
/// .validate_claim(CustomClaim::try_from("Universe")?, &|key, value| {
/// //let's get the value
/// let universe = value
/// .as_u64()
/// .ok_or(PasetoClaimError::Unexpected(key.to_string()))?;
/// // we only accept prime universes in this app
/// if primes::is_prime(universe) {
/// Ok(())
/// } else {
/// Err(PasetoClaimError::CustomValidation(key.to_string()))
/// }
/// })
/// .parse(&token, &key)?;
/// # }
/// # Ok::<(),anyhow::Error>(())
/// ```
///
/// This token will fail to parse with the validation code above:
/// ```should_panic
/// # #[cfg(feature = "default")]
/// # {
/// # use rusty_paseto::prelude::*;
/// # use std::convert::TryFrom;
///
/// # // create a key specifying the PASETO version and purpose
/// # let key = PasetoSymmetricKey::<V4, Local>::from(Key::from(b"wubbalubbadubdubwubbalubbadubdub"));
/// // 136 is not a prime number
/// let token = PasetoBuilder::<V4, Local>::default()
/// .set_claim(CustomClaim::try_from(("Universe", 136))?)
/// .build(&key)?;
///
///# let json_value = PasetoParser::<V4, Local>::default()
///# // you can check any claim even custom claims
///# .validate_claim(CustomClaim::try_from("Universe")?, &|key, value| {
///# //let's get the value
///# let universe = value
///# .as_u64()
///# .ok_or(PasetoClaimError::Unexpected(key.to_string()))?;
///# // we only accept prime universes in this token
///# if primes::is_prime(universe) {
///# Ok(())
///# } else {
///# Err(PasetoClaimError::CustomValidation(key.to_string()))
///# }
///# })
///
///# .parse(&token, &key)?;
///
/// # assert_eq!(json_value["Universe"], 136);
/// # }
/// # Ok::<(),anyhow::Error>(())
);
//we want to receive a reference as a tuple