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
use std::sync::Arc;
use axum::{
extract::{Path, RequestParts},
middleware::Next,
};
use serde::Deserialize;
use adapter::client::Locked;
use primitives::ChannelId;
use crate::{db::get_channel_by_id, response::ResponseError, Application, Auth};
#[derive(Debug, Deserialize)]
struct ChannelParam {
pub id: ChannelId,
}
pub async fn channel_load<C: Locked + 'static, B>(
request: axum::http::Request<B>,
next: Next<B>,
) -> Result<axum::response::Response, ResponseError>
where
B: Send,
{
let app = request
.extensions()
.get::<Arc<Application<C>>>()
.expect("Application should always be present")
.clone();
let mut request_parts = RequestParts::new(request);
let channel_param = request_parts
.extract::<Path<ChannelParam>>()
.await
.map_err(|_| ResponseError::BadRequest("Bad Channel Id".to_string()))?;
let channel = get_channel_by_id(&app.pool, &channel_param.id)
.await?
.ok_or(ResponseError::NotFound)?;
let channel_context = app
.config
.find_chain_of(channel.token)
.ok_or_else(|| {
ResponseError::FailedValidation(
"Channel token is not whitelisted in this validator".into(),
)
})?
.with_channel(channel);
match request_parts.extensions().get::<Auth>() {
Some(auth) if auth.chain.chain_id != channel_context.chain.chain_id => {
return Err(ResponseError::Forbidden("Authentication token is generated for different Chain and differs from the Channel's Chain".into()))
}
_ => {},
}
request_parts.extensions_mut().insert(channel_context);
let request = request_parts.try_into_request().expect("Body extracted");
Ok(next.run(request).await)
}
#[cfg(test)]
mod test {
use axum::{
body::Body,
http::{Request, StatusCode},
middleware::from_fn,
routing::get,
Extension, Router,
};
use tower::Service;
use adapter::{
dummy::Dummy,
ethereum::test_util::{GANACHE_1, GANACHE_1337},
};
use primitives::{
test_util::{CAMPAIGNS, CREATOR, IDS},
ChainOf, Channel,
};
use crate::{db::insert_channel, test_util::setup_dummy_app};
use super::*;
#[tokio::test]
async fn test_channel_loading() {
let app_guard = setup_dummy_app().await;
let app = Arc::new(app_guard.app);
let channel_context = CAMPAIGNS[0].of_channel();
let channel = channel_context.context;
let build_request = |id: ChannelId, auth: Option<Auth>| {
let mut request = Request::builder()
.uri(format!("/{id}/test"))
.extension(app.clone());
if let Some(auth) = auth {
request = request.extension(auth);
}
request.body(Body::empty()).expect("Should build Request")
};
async fn handle(
Extension(channel_context): Extension<ChainOf<Channel>>,
Path((id, another)): Path<(ChannelId, String)>,
) -> String {
assert_eq!(id, channel_context.context.id());
assert_eq!(another, "test");
"Ok".into()
}
let mut router = Router::new()
.route("/:id/:another", get(handle))
.layer(from_fn(channel_load::<Dummy, _>));
{
let mut request = build_request(channel.id(), None);
*request.uri_mut() = "/WrongChannelId".parse().unwrap();
let response = router
.call(request)
.await
.expect("Should make request to Router");
assert_eq!(StatusCode::BAD_REQUEST, response.status());
}
{
let request = build_request(channel.id(), None);
let response = router
.call(request)
.await
.expect("Should make request to Router");
assert_eq!(response.status(), StatusCode::NOT_FOUND);
}
insert_channel(&app.pool, &channel_context)
.await
.expect("Should insert Channel");
{
let request = build_request(channel.id(), None);
let response = router
.call(request)
.await
.expect("Should make request to Router");
assert_eq!(response.status(), StatusCode::OK);
}
{
let not_same_chain = Auth {
era: 1,
uid: IDS[&CREATOR],
chain: GANACHE_1.clone(),
};
assert_ne!(channel_context.chain, not_same_chain.chain, "The chain of the Channel should be different than the chain of the Auth for this test!");
let request = build_request(channel.id(), Some(not_same_chain));
let response = router
.call(request)
.await
.expect("Should make request to Router");
assert_eq!(response.status(), StatusCode::FORBIDDEN);
}
{
let same_chain = Auth {
era: 1,
uid: IDS[&CREATOR],
chain: GANACHE_1337.clone(),
};
assert_eq!(
channel_context.chain, same_chain.chain,
"The chain of the Channel should be the same as the Auth for this test!"
);
let request = build_request(channel.id(), Some(same_chain));
let response = router
.call(request)
.await
.expect("Should make request to Router");
assert_eq!(response.status(), StatusCode::OK);
}
}
}