2016-04-21 13:57:27 +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/>.
|
|
|
|
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::str::FromStr;
|
|
|
|
use std::net::SocketAddr;
|
2016-04-23 12:29:12 +02:00
|
|
|
use util::panics::PanicHandler;
|
2016-04-21 13:57:27 +02:00
|
|
|
use die::*;
|
2016-06-01 19:37:34 +02:00
|
|
|
use rpc_apis;
|
2016-04-21 13:57:27 +02:00
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
#[cfg(feature = "dapps")]
|
|
|
|
pub use ethcore_dapps::Server as WebappServer;
|
|
|
|
#[cfg(not(feature = "dapps"))]
|
2016-04-21 13:57:27 +02:00
|
|
|
pub struct WebappServer;
|
|
|
|
|
|
|
|
pub struct Configuration {
|
|
|
|
pub enabled: bool,
|
|
|
|
pub interface: String,
|
|
|
|
pub port: u16,
|
|
|
|
pub user: Option<String>,
|
|
|
|
pub pass: Option<String>,
|
2016-06-03 11:51:11 +02:00
|
|
|
pub dapps_path: String,
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Dependencies {
|
2016-04-23 12:29:12 +02:00
|
|
|
pub panic_handler: Arc<PanicHandler>,
|
2016-06-01 19:37:34 +02:00
|
|
|
pub apis: Arc<rpc_apis::Dependencies>,
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new(configuration: Configuration, deps: Dependencies) -> Option<WebappServer> {
|
|
|
|
if !configuration.enabled {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2016-06-24 12:10:36 +02:00
|
|
|
let url = format!("{}:{}", configuration.interface, configuration.port);
|
2016-04-21 13:57:27 +02:00
|
|
|
let addr = SocketAddr::from_str(&url).unwrap_or_else(|_| die!("{}: Invalid Webapps listen host/port given.", url));
|
|
|
|
|
|
|
|
let auth = configuration.user.as_ref().map(|username| {
|
|
|
|
let password = configuration.pass.as_ref().map_or_else(|| {
|
|
|
|
use rpassword::read_password;
|
|
|
|
println!("Type password for WebApps server (user: {}): ", username);
|
|
|
|
let pass = read_password().unwrap();
|
|
|
|
println!("OK, got it. Starting server...");
|
|
|
|
pass
|
|
|
|
}, |pass| pass.to_owned());
|
|
|
|
(username.to_owned(), password)
|
|
|
|
});
|
|
|
|
|
2016-06-03 11:51:11 +02:00
|
|
|
Some(setup_dapps_server(deps, configuration.dapps_path, &addr, auth))
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
#[cfg(not(feature = "dapps"))]
|
|
|
|
pub fn setup_dapps_server(
|
2016-04-21 13:57:27 +02:00
|
|
|
_deps: Dependencies,
|
2016-06-03 11:51:11 +02:00
|
|
|
_dapps_path: String,
|
2016-04-21 13:57:27 +02:00
|
|
|
_url: &SocketAddr,
|
|
|
|
_auth: Option<(String, String)>,
|
|
|
|
) -> ! {
|
|
|
|
die!("Your Parity version has been compiled without WebApps support.")
|
|
|
|
}
|
|
|
|
|
2016-05-26 18:21:15 +02:00
|
|
|
#[cfg(feature = "dapps")]
|
|
|
|
pub fn setup_dapps_server(
|
2016-04-21 13:57:27 +02:00
|
|
|
deps: Dependencies,
|
2016-06-03 11:51:11 +02:00
|
|
|
dapps_path: String,
|
2016-04-21 13:57:27 +02:00
|
|
|
url: &SocketAddr,
|
|
|
|
auth: Option<(String, String)>
|
|
|
|
) -> WebappServer {
|
2016-05-26 18:21:15 +02:00
|
|
|
use ethcore_dapps as dapps;
|
2016-04-21 13:57:27 +02:00
|
|
|
|
2016-06-03 11:51:11 +02:00
|
|
|
let server = dapps::ServerBuilder::new(dapps_path);
|
2016-06-01 19:37:34 +02:00
|
|
|
let server = rpc_apis::setup_rpc(server, deps.apis.clone(), rpc_apis::ApiSet::UnsafeContext);
|
2016-04-21 13:57:27 +02:00
|
|
|
let start_result = match auth {
|
|
|
|
None => {
|
|
|
|
server.start_unsecure_http(url)
|
|
|
|
},
|
|
|
|
Some((username, password)) => {
|
|
|
|
server.start_basic_auth_http(url, &username, &password)
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
match start_result {
|
2016-05-26 18:21:15 +02:00
|
|
|
Err(dapps::ServerError::IoError(err)) => die_with_io_error("WebApps", err),
|
2016-04-28 21:48:00 +02:00
|
|
|
Err(e) => die!("WebApps: {:?}", e),
|
2016-04-23 12:29:12 +02:00
|
|
|
Ok(server) => {
|
|
|
|
server.set_panic_handler(move || {
|
|
|
|
deps.panic_handler.notify_all("Panic in WebApp thread.".to_owned());
|
|
|
|
});
|
|
|
|
server
|
|
|
|
},
|
2016-04-21 13:57:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|