feat:移除了弹窗,服务器添加sls

This commit is contained in:
2026-09-08 22:39:45 +08:00
commit 6a295f9a7a
4082 changed files with 1322534 additions and 0 deletions

View File

@ -0,0 +1,138 @@
use std::path::PathBuf;
use crate::{
event::{
CommandPayload,
emit::{emit_command, emit_warning},
},
util::io,
};
use url::form_urlencoded;
use urlencoding::decode;
/// Handles external functions (such as through URL deep linkage)
/// Link is extracted value (link) in somewhat URL format, such as
/// subdomain1/subdomain2
/// (Does not include axolotl://)
pub async fn handle_url(sublink: &str) -> crate::Result<CommandPayload> {
// /seed-map?{query} - Opens the Lab seed map with a shared state
if let Some(rest) = sublink.strip_prefix("seed-map")
&& (rest.is_empty() || rest.starts_with('?') || rest.starts_with('/'))
{
let query = rest.trim_start_matches('/').trim_start_matches('?');
return Ok(CommandPayload::OpenSeedMap {
query: query.to_string(),
});
}
Ok(match sublink.split_once('/') {
// /mod/{id} - Installs a mod of mod id
Some(("mod", id)) => CommandPayload::InstallMod { id: id.to_string() },
// /version/{id} - Installs a specific version of id
Some(("version", id)) => {
CommandPayload::InstallVersion { id: id.to_string() }
}
// /modpack/{id} - Installs a modpack of modpack id
Some(("modpack", id)) => {
CommandPayload::InstallModpack { id: id.to_string() }
}
// /server/{id} - Opens a server project page and triggers play flow
Some(("server", id)) => {
CommandPayload::InstallServer { id: id.to_string() }
}
// /launch/instance/{id} - Launches an instance
Some(("launch", rest)) if rest.starts_with("instance/") => {
let raw = rest.trim_start_matches("instance/");
let (raw, query) = raw.split_once('?').unwrap_or((raw, ""));
let mut server = None;
let mut singleplayer_world = None;
for (key, value) in form_urlencoded::parse(query.as_bytes()) {
match &*key {
"server" => server = Some(value.into_owned()),
"singleplayer_world" => {
singleplayer_world = Some(value.into_owned());
}
_ => {}
}
}
if server.is_some() && singleplayer_world.is_some() {
emit_warning(
"Invalid command, cannot launch both a server and a singleplayer world",
)
.await?;
return Err(crate::ErrorKind::InputError(
"Cannot launch both a server and a singleplayer world"
.to_string(),
)
.into());
}
match decode(raw) {
Ok(decoded) => CommandPayload::LaunchInstance {
id: decoded.to_string(),
server,
singleplayer_world,
},
Err(e) => {
emit_warning(&format!(
"Invalid UTF-8 in instance path: {e}"
))
.await?;
return Err(crate::ErrorKind::InputError(format!(
"Invalid UTF-8 in instance path: {e}"
))
.into());
}
}
}
_ => {
emit_warning(&format!(
"Invalid command, unrecognized path: {sublink}"
))
.await?;
return Err(crate::ErrorKind::InputError(format!(
"Invalid command, unrecognized path: {sublink}"
))
.into());
}
})
}
pub async fn parse_command(
command_string: &str,
) -> crate::Result<CommandPayload> {
tracing::debug!("Parsing command: {}", &command_string);
// axolotl://some-command
// This occurs when following a web redirect link
if let Some(sublink) = command_string.strip_prefix("axolotl://") {
Ok(handle_url(sublink).await?)
} else {
// We assume anything else is a filepath to a modpack file; zip
// archives are format-sniffed by the pack installer.
let path = PathBuf::from(command_string);
let path = io::canonicalize(path)?;
if let Some(ext) = path.extension()
&& (ext == "mrpack" || ext == "zip")
{
return Ok(CommandPayload::RunMRPack { path });
}
emit_warning(&format!(
"Invalid command, unrecognized filetype: {}",
path.display()
))
.await?;
Err(crate::ErrorKind::InputError(format!(
"Invalid command, unrecognized filetype: {}",
path.display()
))
.into())
}
}
pub async fn parse_and_emit_command(command_string: &str) -> crate::Result<()> {
let command = parse_command(command_string).await?;
emit_command(command).await?;
Ok(())
}