mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 20:43:41 +00:00
* add support for inbound proxies * backend changes * fix file type * proxy -> tunnel, implement backend apis * wip start-tunneld * add domains and gateways, remove routers, fix docs links * dont show hidden actions * show and test dns * edit instead of chnage acme and change gateway * refactor: domains page * refactor: gateways page * domains and acme refactor * certificate authorities * refactor public/private gateways * fix fe types * domains mostly finished * refactor: add file control to form service * add ip util to sdk * domains api + migration * start service interface page, WIP * different options for clearnet domains * refactor: styles for interfaces page * minor * better placeholder for no addresses * start sorting addresses * best address logic * comments * fix unnecessary export * MVP of service interface page * domains preferred * fix: address comments * only translations left * wip: start-tunnel & fix build * forms for adding domain, rework things based on new ideas * fix: dns testing * public domain, max width, descriptions for dns * nix StartOS domains, implement public and private domains at interface scope * restart tor instead of reset * better icon for restart tor * dns * fix sort functions for public and private domains * with todos * update types * clean up tech debt, bump dependencies * revert to ts-rs v9 * fix all types * fix dns form * add missing translations * it builds * fix: comments (#3009) * fix: comments * undo default --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * fix: refactor legacy components (#3010) * fix: comments * fix: refactor legacy components * remove default again --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * more translations * wip * fix deadlock * coukd work * simple renaming * placeholder for empty service interfaces table * honor hidden form values * remove logs * reason instead of description * fix dns * misc fixes * implement toggling gateways for service interface * fix showing dns records * move status column in service list * remove unnecessary truthy check * refactor: refactor forms components and remove legacy Taiga UI package (#3012) * handle wh file uploads * wip: debugging tor * socks5 proxy working * refactor: fix multiple comments (#3013) * refactor: fix multiple comments * styling changes, add documentation to sidebar * translations for dns page * refactor: subtle colors * rearrange service page --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * fix file_stream and remove non-terminating test * clean up logs * support for sccache * fix gha sccache * more marketplace translations * install wizard clarity * stub hostnameInfo in migration * fix address info after setup, fix styling on SI page, new 040 release notes * remove tor logs from os * misc fixes * reset tor still not functioning... * update ts * minor styling and wording * chore: some fixes (#3015) * fix gateway renames * different handling for public domains * styling fixes * whole navbar should not be clickable on service show page * timeout getState request * remove links from changelog * misc fixes from pairing * use custom name for gateway in more places * fix dns parsing * closes #3003 * closes #2999 * chore: some fixes (#3017) * small copy change * revert hardcoded error for testing * dont require port forward if gateway is public * use old wan ip when not available * fix .const hanging on undefined * fix test * fix doc test * fix renames * update deps * allow specifying dependency metadata directly * temporarily make dependencies not cliackable in marketplace listings * fix socks bind * fix test --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: waterplea <alexander@inkin.ru>
323 lines
9.3 KiB
Rust
323 lines
9.3 KiB
Rust
use std::collections::BTreeSet;
|
|
|
|
use models::{ActionId, PackageId, ReplayId};
|
|
use rpc_toolkit::{Context, HandlerExt, ParentHandler, from_fn_async};
|
|
|
|
use crate::action::{ActionInput, ActionResult, display_action_result};
|
|
use crate::db::model::package::{
|
|
ActionMetadata, Task, TaskCondition, TaskEntry, TaskSeverity, TaskTrigger,
|
|
};
|
|
use crate::rpc_continuations::Guid;
|
|
use crate::service::cli::ContainerCliContext;
|
|
use crate::service::effects::prelude::*;
|
|
use crate::util::serde::HandlerExtSerde;
|
|
|
|
pub fn action_api<C: Context>() -> ParentHandler<C> {
|
|
ParentHandler::new()
|
|
.subcommand("export", from_fn_async(export_action).no_cli())
|
|
.subcommand(
|
|
"clear",
|
|
from_fn_async(clear_actions)
|
|
.no_display()
|
|
.with_call_remote::<ContainerCliContext>(),
|
|
)
|
|
.subcommand(
|
|
"get-input",
|
|
from_fn_async(get_action_input)
|
|
.with_display_serializable()
|
|
.with_call_remote::<ContainerCliContext>(),
|
|
)
|
|
.subcommand(
|
|
"run",
|
|
from_fn_async(run_action)
|
|
.with_display_serializable()
|
|
.with_custom_display_fn(|args, res| display_action_result(args.params, res))
|
|
.with_call_remote::<ContainerCliContext>(),
|
|
)
|
|
.subcommand("create-task", from_fn_async(create_task).no_cli())
|
|
.subcommand(
|
|
"clear-tasks",
|
|
from_fn_async(clear_tasks)
|
|
.no_display()
|
|
.with_call_remote::<ContainerCliContext>(),
|
|
)
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, TS)]
|
|
#[ts(export)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct ExportActionParams {
|
|
id: ActionId,
|
|
metadata: ActionMetadata,
|
|
}
|
|
pub async fn export_action(
|
|
context: EffectContext,
|
|
ExportActionParams { id, metadata }: ExportActionParams,
|
|
) -> Result<(), Error> {
|
|
let context = context.deref()?;
|
|
let package_id = context.seed.id.clone();
|
|
context
|
|
.seed
|
|
.ctx
|
|
.db
|
|
.mutate(|db| {
|
|
let model = db
|
|
.as_public_mut()
|
|
.as_package_data_mut()
|
|
.as_idx_mut(&package_id)
|
|
.or_not_found(&package_id)?
|
|
.as_actions_mut();
|
|
let mut value = model.de()?;
|
|
value.insert(id, metadata);
|
|
model.ser(&value)
|
|
})
|
|
.await
|
|
.result?;
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, TS, Parser)]
|
|
#[ts(export)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub struct ClearActionsParams {
|
|
#[arg(long)]
|
|
pub except: Vec<ActionId>,
|
|
}
|
|
|
|
async fn clear_actions(
|
|
context: EffectContext,
|
|
ClearActionsParams { except }: ClearActionsParams,
|
|
) -> Result<(), Error> {
|
|
let except: BTreeSet<_> = except.into_iter().collect();
|
|
let context = context.deref()?;
|
|
let package_id = context.seed.id.clone();
|
|
context
|
|
.seed
|
|
.ctx
|
|
.db
|
|
.mutate(|db| {
|
|
db.as_public_mut()
|
|
.as_package_data_mut()
|
|
.as_idx_mut(&package_id)
|
|
.or_not_found(&package_id)?
|
|
.as_actions_mut()
|
|
.mutate(|a| Ok(a.retain(|e, _| except.contains(e))))
|
|
})
|
|
.await
|
|
.result?;
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, TS, Parser)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[ts(export)]
|
|
pub struct GetActionInputParams {
|
|
#[serde(default)]
|
|
#[ts(skip)]
|
|
#[arg(skip)]
|
|
procedure_id: Guid,
|
|
#[ts(optional)]
|
|
package_id: Option<PackageId>,
|
|
action_id: ActionId,
|
|
}
|
|
async fn get_action_input(
|
|
context: EffectContext,
|
|
GetActionInputParams {
|
|
procedure_id,
|
|
package_id,
|
|
action_id,
|
|
}: GetActionInputParams,
|
|
) -> Result<Option<ActionInput>, Error> {
|
|
let context = context.deref()?;
|
|
|
|
if let Some(package_id) = package_id {
|
|
context
|
|
.seed
|
|
.ctx
|
|
.services
|
|
.get(&package_id)
|
|
.await
|
|
.as_ref()
|
|
.or_not_found(&package_id)?
|
|
.get_action_input(procedure_id, action_id)
|
|
.await
|
|
} else {
|
|
context.get_action_input(procedure_id, action_id).await
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, TS, Parser)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[ts(export)]
|
|
pub struct RunActionParams {
|
|
#[serde(default)]
|
|
#[ts(skip)]
|
|
#[arg(skip)]
|
|
procedure_id: Guid,
|
|
#[ts(optional)]
|
|
package_id: Option<PackageId>,
|
|
action_id: ActionId,
|
|
#[ts(type = "any")]
|
|
input: Value,
|
|
}
|
|
async fn run_action(
|
|
context: EffectContext,
|
|
RunActionParams {
|
|
procedure_id,
|
|
package_id,
|
|
action_id,
|
|
input,
|
|
}: RunActionParams,
|
|
) -> Result<Option<ActionResult>, Error> {
|
|
let context = context.deref()?;
|
|
|
|
let package_id = package_id.as_ref().unwrap_or(&context.seed.id);
|
|
|
|
if package_id != &context.seed.id {
|
|
return Err(Error::new(
|
|
eyre!("calling actions on other packages is unsupported at this time"),
|
|
ErrorKind::InvalidRequest,
|
|
));
|
|
context
|
|
.seed
|
|
.ctx
|
|
.services
|
|
.get(&package_id)
|
|
.await
|
|
.as_ref()
|
|
.or_not_found(&package_id)?
|
|
.run_action(procedure_id, action_id, input)
|
|
.await
|
|
} else {
|
|
context.run_action(procedure_id, action_id, input).await
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize, TS)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[ts(export)]
|
|
pub struct CreateTaskParams {
|
|
#[serde(default)]
|
|
#[ts(skip)]
|
|
procedure_id: Guid,
|
|
replay_id: ReplayId,
|
|
#[serde(flatten)]
|
|
task: Task,
|
|
}
|
|
async fn create_task(
|
|
context: EffectContext,
|
|
CreateTaskParams {
|
|
procedure_id,
|
|
replay_id,
|
|
task,
|
|
}: CreateTaskParams,
|
|
) -> Result<(), Error> {
|
|
let context = context.deref()?;
|
|
|
|
let src_id = &context.seed.id;
|
|
let active = match &task.when {
|
|
Some(TaskTrigger { once, condition }) => match condition {
|
|
TaskCondition::InputNotMatches => {
|
|
let Some(input) = task.input.as_ref() else {
|
|
return Err(Error::new(
|
|
eyre!("input-not-matches trigger requires input to be specified"),
|
|
ErrorKind::InvalidRequest,
|
|
));
|
|
};
|
|
if let Some(service) = context
|
|
.seed
|
|
.ctx
|
|
.services
|
|
.get(&task.package_id)
|
|
.await
|
|
.as_ref()
|
|
{
|
|
let Some(prev) = service
|
|
.get_action_input(procedure_id.clone(), task.action_id.clone())
|
|
.await?
|
|
else {
|
|
return Err(Error::new(
|
|
eyre!(
|
|
"action {} of {} has no input",
|
|
task.action_id,
|
|
task.package_id
|
|
),
|
|
ErrorKind::InvalidRequest,
|
|
));
|
|
};
|
|
if input.matches(prev.value.as_ref()) {
|
|
if *once {
|
|
return Ok(());
|
|
} else {
|
|
false
|
|
}
|
|
} else {
|
|
true
|
|
}
|
|
} else {
|
|
true // update when service is installed
|
|
}
|
|
}
|
|
},
|
|
None => true,
|
|
};
|
|
if active && task.severity == TaskSeverity::Critical {
|
|
context.stop(procedure_id, false).await?;
|
|
}
|
|
context
|
|
.seed
|
|
.ctx
|
|
.db
|
|
.mutate(|db| {
|
|
db.as_public_mut()
|
|
.as_package_data_mut()
|
|
.as_idx_mut(src_id)
|
|
.or_not_found(src_id)?
|
|
.as_tasks_mut()
|
|
.insert(&replay_id, &TaskEntry { active, task })
|
|
})
|
|
.await
|
|
.result?;
|
|
Ok(())
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, TS, Parser)]
|
|
#[ts(type = "{ only: string[] } | { except: string[] }")]
|
|
#[ts(export)]
|
|
pub struct ClearTasksParams {
|
|
#[arg(long, conflicts_with = "except")]
|
|
pub only: Option<Vec<ReplayId>>,
|
|
#[arg(long, conflicts_with = "only")]
|
|
pub except: Option<Vec<ReplayId>>,
|
|
}
|
|
|
|
async fn clear_tasks(
|
|
context: EffectContext,
|
|
ClearTasksParams { only, except }: ClearTasksParams,
|
|
) -> Result<(), Error> {
|
|
let context = context.deref()?;
|
|
let package_id = context.seed.id.clone();
|
|
let only = only.map(|only| only.into_iter().collect::<BTreeSet<_>>());
|
|
let except = except.map(|except| except.into_iter().collect::<BTreeSet<_>>());
|
|
context
|
|
.seed
|
|
.ctx
|
|
.db
|
|
.mutate(|db| {
|
|
db.as_public_mut()
|
|
.as_package_data_mut()
|
|
.as_idx_mut(&package_id)
|
|
.or_not_found(&package_id)?
|
|
.as_tasks_mut()
|
|
.mutate(|a| {
|
|
Ok(a.retain(|e, _| {
|
|
only.as_ref().map_or(true, |only| !only.contains(e))
|
|
&& except.as_ref().map_or(true, |except| except.contains(e))
|
|
}))
|
|
})
|
|
})
|
|
.await
|
|
.result?;
|
|
Ok(())
|
|
}
|