2021-12-22 20:35:17 +03:00
|
|
|
extern crate warp;
|
|
|
|
|
|
|
|
use port_scanner::local_port_available;
|
|
|
|
use tauri::{AppHandle, Manager};
|
|
|
|
use warp::Filter;
|
|
|
|
|
2022-03-18 05:59:35 +03:00
|
|
|
#[cfg(not(feature = "verge-dev"))]
|
2021-12-22 20:35:17 +03:00
|
|
|
const SERVER_PORT: u16 = 33333;
|
2022-03-18 05:59:35 +03:00
|
|
|
#[cfg(feature = "verge-dev")]
|
|
|
|
const SERVER_PORT: u16 = 11233;
|
2021-12-22 20:35:17 +03:00
|
|
|
|
|
|
|
/// check whether there is already exists
|
|
|
|
pub fn check_singleton() -> Result<(), ()> {
|
|
|
|
if !local_port_available(SERVER_PORT) {
|
|
|
|
tauri::async_runtime::block_on(async {
|
|
|
|
let url = format!("http://127.0.0.1:{}/commands/visible", SERVER_PORT);
|
|
|
|
reqwest::get(url).await.unwrap();
|
|
|
|
Err(())
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The embed server only be used to implement singleton process
|
|
|
|
/// maybe it can be used as pac server later
|
|
|
|
pub fn embed_server(app: &AppHandle) {
|
2022-01-04 16:29:04 +03:00
|
|
|
let window = app.get_window("main").unwrap();
|
2021-12-22 20:35:17 +03:00
|
|
|
|
|
|
|
tauri::async_runtime::spawn(async move {
|
2021-12-29 13:49:38 +03:00
|
|
|
let commands = warp::path!("commands" / "visible").map(move || {
|
2022-01-04 16:29:04 +03:00
|
|
|
window.show().unwrap();
|
|
|
|
window.set_focus().unwrap();
|
2021-12-29 13:49:38 +03:00
|
|
|
return format!("ok");
|
|
|
|
});
|
|
|
|
|
2021-12-22 20:35:17 +03:00
|
|
|
warp::serve(commands)
|
|
|
|
.bind(([127, 0, 0, 1], SERVER_PORT))
|
|
|
|
.await;
|
|
|
|
});
|
|
|
|
}
|