openethereum/webapp/src/router/mod.rs

125 lines
3.3 KiB
Rust
Raw Normal View History

2016-04-07 12:10:26 +02:00
// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
//! Router implementation
2016-04-08 15:25:20 +02:00
//! Processes request handling authorization and dispatching it to proper application.
mod api;
2016-04-12 22:44:53 +02:00
mod url;
pub mod auth;
2016-04-07 12:10:26 +02:00
2016-04-07 18:22:53 +02:00
use std::sync::Arc;
2016-04-07 12:10:26 +02:00
use hyper;
2016-04-08 15:25:20 +02:00
use hyper::{server, uri, header};
use page::Page;
2016-04-07 12:10:26 +02:00
use apps::Pages;
2016-04-12 22:44:53 +02:00
use self::url::Url;
2016-04-07 12:10:26 +02:00
use jsonrpc_http_server::ServerHandler;
use self::auth::{Authorization, Authorized};
2016-04-07 18:22:53 +02:00
pub struct Router<A: Authorization> {
authorization: A,
2016-04-07 12:10:26 +02:00
rpc: ServerHandler,
2016-04-07 18:22:53 +02:00
api: api::RestApi,
main_page: Box<Page>,
2016-04-07 18:22:53 +02:00
pages: Arc<Pages>,
2016-04-07 12:10:26 +02:00
}
impl<A: Authorization> server::Handler for Router<A> {
2016-04-08 15:25:20 +02:00
fn handle<'b, 'a>(&'a self, req: server::Request<'a, 'b>, res: server::Response<'a>) {
let auth = self.authorization.handle(req, res);
2016-04-08 15:25:20 +02:00
if let Authorized::Yes(req, res) = auth {
let (path, req) = self.extract_request_path(req);
2016-04-08 15:25:20 +02:00
match path {
Some(ref url) if self.pages.contains_key(url) => {
self.pages.get(url).unwrap().handle(req, res);
},
Some(ref url) if url == "api" => {
self.api.handle(req, res);
},
_ if req.method == hyper::method::Method::Post => {
self.rpc.handle(req, res)
},
_ => self.main_page.handle(req, res),
}
2016-04-07 12:10:26 +02:00
}
}
}
impl<A: Authorization> Router<A> {
pub fn new(
rpc: ServerHandler,
main_page: Box<Page>,
pages: Pages,
authorization: A) -> Self {
2016-04-07 18:22:53 +02:00
let pages = Arc::new(pages);
2016-04-07 12:10:26 +02:00
Router {
authorization: authorization,
2016-04-07 12:10:26 +02:00
rpc: rpc,
2016-04-07 18:22:53 +02:00
api: api::RestApi { pages: pages.clone() },
main_page: main_page,
2016-04-07 12:10:26 +02:00
pages: pages,
}
}
fn extract_url(&self, req: &server::Request) -> Option<Url> {
2016-04-07 12:10:26 +02:00
match req.uri {
2016-04-08 15:25:20 +02:00
uri::RequestUri::AbsoluteUri(ref url) => {
2016-04-07 12:10:26 +02:00
match Url::from_generic_url(url.clone()) {
Ok(url) => Some(url),
_ => None,
}
},
2016-04-08 15:25:20 +02:00
uri::RequestUri::AbsolutePath(ref path) => {
2016-04-07 12:10:26 +02:00
// Attempt to prepend the Host header (mandatory in HTTP/1.1)
2016-04-08 15:25:20 +02:00
let url_string = match req.headers.get::<header::Host>() {
2016-04-07 12:10:26 +02:00
Some(ref host) => {
format!("http://{}:{}{}", host.hostname, host.port.unwrap_or(80), path)
},
2016-04-08 10:13:42 +02:00
None => return None,
2016-04-07 12:10:26 +02:00
};
match Url::parse(&url_string) {
Ok(url) => Some(url),
_ => None,
}
2016-04-08 10:13:42 +02:00
},
2016-04-07 12:10:26 +02:00
_ => None,
}
}
fn extract_request_path<'a, 'b>(&self, mut req: server::Request<'a, 'b>) -> (Option<String>, server::Request<'a, 'b>) {
let url = self.extract_url(&req);
2016-04-07 12:10:26 +02:00
match url {
Some(ref url) if url.path.len() > 1 => {
2016-04-07 12:10:26 +02:00
let part = url.path[0].clone();
let url = url.path[1..].join("/");
2016-04-08 15:25:20 +02:00
req.uri = uri::RequestUri::AbsolutePath(url);
2016-04-07 12:10:26 +02:00
(Some(part), req)
},
Some(url) => {
let url = url.path.join("/");
2016-04-08 15:25:20 +02:00
req.uri = uri::RequestUri::AbsolutePath(url);
(None, req)
},
_ => {
2016-04-07 12:10:26 +02:00
(None, req)
2016-04-08 10:13:42 +02:00
},
2016-04-07 12:10:26 +02:00
}
}
}