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
use HashMap;
use web;
use Resource;
/// Type of API enablement flags.
///
/// Applications can conditionally enable roots based on application defined flags.
/// When the routes are mounted, applications can make use of the `APIFlags` and
/// proveded methods from `RootDescriptor`s to configure the mounted roots at
/// application initialisation time.
pub type APIFlags = ;
/// Interface for types that describe endpoint roots.
///
/// Useful to codify in a sensible way which possible paths are exposed by an API.
///
/// ## Example
/// ```
///# use std::collections::HashMap;
/// use replicante_util_actixweb::RootDescriptor;
///
/// enum APIVersion {
/// V1,
/// V2,
/// V3,
/// }
///
/// impl RootDescriptor for APIVersion {
/// fn enabled(&self, flags: &HashMap<&'static str, bool>) -> bool {
/// match self {
/// APIVersion::V1 => match flags.get("v1") {
/// Some(flag) => *flag,
/// None => match flags.get("legacy") {
/// Some(flag) => *flag,
/// None => true,
/// },
/// },
/// APIVersion::V2 => match flags.get("v2") {
/// Some(flag) => *flag,
/// None => match flags.get("legacy") {
/// Some(flag) => *flag,
/// None => true,
/// },
/// },
/// APIVersion::V3 => true,
/// }
/// }
///
/// fn prefix(&self) -> &'static str {
/// match self {
/// APIVersion::V1 => "/api/v1",
/// APIVersion::V2 => "/some/other/path",
/// APIVersion::V3 => "/v3",
/// }
/// }
/// }
/// ```