2023-05-09 21:28:07 +00:00
|
|
|
use crate::{
|
|
|
|
args,
|
|
|
|
utils,
|
|
|
|
};
|
2023-04-30 15:55:41 +00:00
|
|
|
use clap::Parser;
|
2023-05-09 21:28:07 +00:00
|
|
|
use log::{
|
|
|
|
debug,
|
|
|
|
error,
|
|
|
|
info,
|
|
|
|
warn,
|
|
|
|
};
|
|
|
|
use serde::{
|
|
|
|
Deserialize,
|
|
|
|
Serialize,
|
|
|
|
};
|
|
|
|
use std::{
|
|
|
|
env,
|
|
|
|
fs,
|
|
|
|
process::Command,
|
|
|
|
time::Duration,
|
|
|
|
};
|
2023-04-30 15:55:41 +00:00
|
|
|
|
|
|
|
// TODO(c2m): debug i2p-zero http proxy
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum I2pStatus {
|
|
|
|
Accept,
|
|
|
|
Reject,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl I2pStatus {
|
|
|
|
pub fn value(&self) -> String {
|
|
|
|
match *self {
|
|
|
|
I2pStatus::Accept => String::from("Accepting tunnels"),
|
|
|
|
I2pStatus::Reject => String::from("Rejecting tunnels: Starting up"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct HttpProxyStatus {
|
2023-05-09 21:28:07 +00:00
|
|
|
pub open: bool,
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum ProxyStatus {
|
|
|
|
Opening,
|
2023-05-09 21:28:07 +00:00
|
|
|
Open,
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ProxyStatus {
|
|
|
|
pub fn value(&self) -> String {
|
|
|
|
match *self {
|
|
|
|
ProxyStatus::Opening => String::from("opening\n"),
|
|
|
|
ProxyStatus::Open => String::from("open\n"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
struct Tunnel {
|
|
|
|
// http proxy tunnel wont have this field
|
|
|
|
dest: Option<String>,
|
|
|
|
port: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
struct Tunnels {
|
|
|
|
tunnels: Vec<Tunnel>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Tunnels {
|
|
|
|
fn default() -> Self {
|
2023-05-09 21:28:07 +00:00
|
|
|
Tunnels {
|
|
|
|
tunnels: Vec::new(),
|
|
|
|
}
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn find_tunnels() {
|
|
|
|
let app_port = utils::get_app_port();
|
|
|
|
let file_path = format!(
|
|
|
|
"/home/{}/.i2p-zero/config/tunnels.json",
|
|
|
|
env::var("USER").unwrap_or(String::from("user"))
|
|
|
|
);
|
|
|
|
let contents = fs::read_to_string(file_path).unwrap_or(utils::empty_string());
|
|
|
|
debug!("i2p tunnels: {}", contents);
|
|
|
|
let has_app_tunnel = contents.contains(&format!("{}", app_port));
|
|
|
|
// let has_http_tunnel = contents.contains("4444");
|
|
|
|
if !has_app_tunnel {
|
|
|
|
tokio::time::sleep(Duration::new(120, 0)).await;
|
|
|
|
create_tunnel();
|
|
|
|
}
|
2023-05-12 08:51:20 +00:00
|
|
|
// TODO(c2m): why is i2p-zero http proxy always giving "destination not
|
|
|
|
// found" error? if !has_http_tunnel { create_http_proxy(); }
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn start() {
|
|
|
|
info!("starting i2p-zero");
|
|
|
|
let args = args::Args::parse();
|
|
|
|
let path = args.i2p_zero_dir;
|
|
|
|
let output = Command::new(format!("{}/router/bin/i2p-zero", path))
|
|
|
|
.spawn()
|
|
|
|
.expect("i2p-zero failed to start");
|
|
|
|
debug!("{:?}", output.stdout);
|
|
|
|
find_tunnels().await;
|
2023-05-09 21:28:07 +00:00
|
|
|
{
|
|
|
|
tokio::spawn(async move {
|
2023-05-08 08:02:38 +00:00
|
|
|
let tick: std::sync::mpsc::Receiver<()> = schedule_recv::periodic_ms(600000);
|
2023-05-08 06:21:52 +00:00
|
|
|
loop {
|
|
|
|
tick.recv().unwrap();
|
|
|
|
check_connection().await;
|
|
|
|
}
|
2023-05-09 21:28:07 +00:00
|
|
|
});
|
2023-05-08 06:21:52 +00:00
|
|
|
}
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn create_tunnel() {
|
|
|
|
info!("creating tunnel");
|
2023-04-30 16:17:32 +00:00
|
|
|
let args = args::Args::parse();
|
|
|
|
let path = args.i2p_zero_dir;
|
|
|
|
let output = Command::new(format!("{}/router/bin/tunnel-control.sh", path))
|
2023-05-09 21:28:07 +00:00
|
|
|
.args([
|
|
|
|
"server.create",
|
|
|
|
"127.0.0.1",
|
|
|
|
&format!("{}", utils::get_app_port()),
|
|
|
|
])
|
2023-04-30 15:55:41 +00:00
|
|
|
.spawn()
|
|
|
|
.expect("i2p-zero failed to create a tunnel");
|
|
|
|
debug!("{:?}", output.stdout);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(c2m): use i2p-zero http proxy
|
|
|
|
// fn create_http_proxy() {
|
|
|
|
// info!("creating http proxy");
|
2023-05-12 08:51:20 +00:00
|
|
|
// let output =
|
|
|
|
// Command::new("./i2p-zero-linux.v1.20/router/bin/tunnel-control.sh")
|
2023-04-30 15:55:41 +00:00
|
|
|
// .args(["http.create", "4444"])
|
|
|
|
// .spawn()
|
|
|
|
// .expect("i2p-zero failed to create a http proxy");
|
|
|
|
// debug!("{:?}", output.stdout);
|
|
|
|
// }
|
|
|
|
|
|
|
|
pub fn get_destination() -> String {
|
|
|
|
let file_path = format!(
|
|
|
|
"/home/{}/.i2p-zero/config/tunnels.json",
|
|
|
|
env::var("USER").unwrap_or(String::from("user"))
|
|
|
|
);
|
2023-05-04 12:50:56 +00:00
|
|
|
// Don't panic if i2p-zero isn't installed
|
2023-05-09 21:28:07 +00:00
|
|
|
let contents = match fs::read_to_string(file_path) {
|
|
|
|
Ok(file) => file,
|
|
|
|
_ => utils::empty_string(),
|
|
|
|
};
|
2023-05-04 12:50:56 +00:00
|
|
|
if contents != utils::empty_string() {
|
|
|
|
let input = format!(r#"{contents}"#);
|
|
|
|
let mut j: Tunnels = serde_json::from_str(&input).unwrap_or(Default::default());
|
2023-05-09 21:28:07 +00:00
|
|
|
let destination: String = j
|
|
|
|
.tunnels
|
|
|
|
.remove(0)
|
|
|
|
.dest
|
|
|
|
.ok_or(utils::empty_string())
|
2023-05-04 12:50:56 +00:00
|
|
|
.unwrap_or(utils::empty_string());
|
2023-05-09 21:28:07 +00:00
|
|
|
return destination;
|
2023-05-04 12:50:56 +00:00
|
|
|
}
|
|
|
|
utils::empty_string()
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
|
2023-05-08 06:21:52 +00:00
|
|
|
pub async fn check_connection() -> HttpProxyStatus {
|
2023-04-30 15:55:41 +00:00
|
|
|
let client: reqwest::Client = reqwest::Client::new();
|
|
|
|
let host: &str = "http://localhost:7657/tunnels";
|
|
|
|
match client.get(host).send().await {
|
|
|
|
Ok(response) => {
|
|
|
|
// do some parsing here to check the status
|
|
|
|
let res = response.text().await;
|
|
|
|
match res {
|
|
|
|
Ok(res) => {
|
|
|
|
// split the html from the local i2p tunnels page
|
|
|
|
let split1 = res.split("<h4><span class=\"tunnelBuildStatus\">");
|
|
|
|
let mut v1: Vec<String> = split1.map(|s| String::from(s)).collect();
|
|
|
|
let s1 = v1.remove(1);
|
|
|
|
let v2 = s1.split("</span></h4>");
|
|
|
|
let mut split2: Vec<String> = v2.map(|s| String::from(s)).collect();
|
|
|
|
let status: String = split2.remove(0);
|
|
|
|
if status == I2pStatus::Accept.value() {
|
|
|
|
info!("i2p is currently accepting tunnels");
|
|
|
|
return HttpProxyStatus { open: true };
|
|
|
|
} else if status == I2pStatus::Reject.value() {
|
|
|
|
info!("i2p is currently rejecting tunnels");
|
|
|
|
return HttpProxyStatus { open: false };
|
|
|
|
} else {
|
|
|
|
info!("i2p is unstable");
|
|
|
|
return HttpProxyStatus { open: true };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
2023-05-09 21:28:07 +00:00
|
|
|
error!("i2p status check failure");
|
|
|
|
return HttpProxyStatus { open: false };
|
|
|
|
}
|
2023-04-30 15:55:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
warn!("i2p-zero http proxy is degraded");
|
|
|
|
warn!("please install i2pd from geti2p.org");
|
|
|
|
warn!("start i2p with /path-to-i2p/i2prouter start");
|
|
|
|
error!("{}", e.to_string());
|
|
|
|
return HttpProxyStatus { open: false };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|