mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
775 lines
24 KiB
TypeScript
775 lines
24 KiB
TypeScript
import { ManifestVersion, SDKManifest } from "./manifest/ManifestTypes"
|
|
import { RequiredDefault, Value } from "./config/builder/value"
|
|
import { Config, ExtractConfigType, LazyBuild } from "./config/builder/config"
|
|
import {
|
|
DefaultString,
|
|
ListValueSpecText,
|
|
Pattern,
|
|
RandomString,
|
|
UniqueBy,
|
|
ValueSpecDatetime,
|
|
ValueSpecText,
|
|
} from "./config/configTypes"
|
|
import { Variants } from "./config/builder/variants"
|
|
import { CreatedAction, createAction } from "./actions/createAction"
|
|
import {
|
|
ActionMetadata,
|
|
Effects,
|
|
ActionResult,
|
|
BackupOptions,
|
|
DeepPartial,
|
|
MaybePromise,
|
|
ServiceInterfaceId,
|
|
PackageId,
|
|
ValidIfNoStupidEscape,
|
|
} from "./types"
|
|
import * as patterns from "./util/patterns"
|
|
import { DependencyConfig, Update } from "./dependencyConfig/DependencyConfig"
|
|
import { BackupSet, Backups } from "./backup/Backups"
|
|
import { smtpConfig } from "./config/configConstants"
|
|
import { Daemons } from "./mainFn/Daemons"
|
|
import { healthCheck } from "./health/HealthCheck"
|
|
import { checkPortListening } from "./health/checkFns/checkPortListening"
|
|
import { checkWebUrl, runHealthScript } from "./health/checkFns"
|
|
import { List } from "./config/builder/list"
|
|
import { Migration } from "./inits/migrations/Migration"
|
|
import { Install, InstallFn } from "./inits/setupInstall"
|
|
import { setupActions } from "./actions/setupActions"
|
|
import { setupDependencyConfig } from "./dependencyConfig/setupDependencyConfig"
|
|
import { SetupBackupsParams, setupBackups } from "./backup/setupBackups"
|
|
import { setupInit } from "./inits/setupInit"
|
|
import {
|
|
EnsureUniqueId,
|
|
Migrations,
|
|
setupMigrations,
|
|
} from "./inits/migrations/setupMigrations"
|
|
import { Uninstall, UninstallFn, setupUninstall } from "./inits/setupUninstall"
|
|
import { setupMain } from "./mainFn"
|
|
import { defaultTrigger } from "./trigger/defaultTrigger"
|
|
import { changeOnFirstSuccess, cooldownTrigger } from "./trigger"
|
|
import setupConfig, {
|
|
DependenciesReceipt,
|
|
Read,
|
|
Save,
|
|
} from "./config/setupConfig"
|
|
import {
|
|
InterfacesReceipt,
|
|
SetInterfaces,
|
|
setupInterfaces,
|
|
} from "./interfaces/setupInterfaces"
|
|
import { successFailure } from "./trigger/successFailure"
|
|
import { HealthReceipt } from "./health/HealthReceipt"
|
|
import { MultiHost, Scheme, SingleHost, StaticHost } from "./interfaces/Host"
|
|
import { ServiceInterfaceBuilder } from "./interfaces/ServiceInterfaceBuilder"
|
|
import { GetSystemSmtp } from "./util/GetSystemSmtp"
|
|
import nullIfEmpty from "./util/nullIfEmpty"
|
|
import {
|
|
GetServiceInterface,
|
|
getServiceInterface,
|
|
} from "./util/getServiceInterface"
|
|
import { getServiceInterfaces } from "./util/getServiceInterfaces"
|
|
import { getStore } from "./store/getStore"
|
|
import { CommandOptions, MountOptions, Overlay } from "./util/Overlay"
|
|
import { splitCommand } from "./util/splitCommand"
|
|
import { Mounts } from "./mainFn/Mounts"
|
|
import { Dependency } from "./Dependency"
|
|
import * as T from "./types"
|
|
import { Checker, EmVer } from "./emverLite/mod"
|
|
import { ExposedStorePaths } from "./store/setupExposeStore"
|
|
import { PathBuilder, extractJsonPath, pathBuilder } from "./store/PathBuilder"
|
|
|
|
// prettier-ignore
|
|
type AnyNeverCond<T extends any[], Then, Else> =
|
|
T extends [] ? Else :
|
|
T extends [never, ...Array<any>] ? Then :
|
|
T extends [any, ...infer U] ? AnyNeverCond<U,Then, Else> :
|
|
never
|
|
|
|
export type ServiceInterfaceType = "ui" | "p2p" | "api"
|
|
export type MainEffects = Effects & { _type: "main" }
|
|
export type Signals = NodeJS.Signals
|
|
export const SIGTERM: Signals = "SIGTERM"
|
|
export const SIGKILL: Signals = "SIGTERM"
|
|
export const NO_TIMEOUT = -1
|
|
|
|
function removeConstType<E>() {
|
|
return <T>(t: T) => t as T & (E extends MainEffects ? {} : { const: never })
|
|
}
|
|
|
|
export class StartSdk<Manifest extends SDKManifest, Store> {
|
|
private constructor(readonly manifest: Manifest) {}
|
|
static of() {
|
|
return new StartSdk<never, never>(null as never)
|
|
}
|
|
withManifest<Manifest extends SDKManifest = never>(manifest: Manifest) {
|
|
return new StartSdk<Manifest, Store>(manifest)
|
|
}
|
|
withStore<Store extends Record<string, any>>() {
|
|
return new StartSdk<Manifest, Store>(this.manifest)
|
|
}
|
|
|
|
build(isReady: AnyNeverCond<[Manifest, Store], "Build not ready", true>) {
|
|
type DependencyType = {
|
|
[K in keyof {
|
|
[K in keyof Manifest["dependencies"]]: Manifest["dependencies"][K]["optional"] extends false
|
|
? K
|
|
: never
|
|
}]: Dependency
|
|
} & {
|
|
[K in keyof {
|
|
[K in keyof Manifest["dependencies"]]: Manifest["dependencies"][K]["optional"] extends true
|
|
? K
|
|
: never
|
|
}]?: Dependency
|
|
}
|
|
|
|
return {
|
|
serviceInterface: {
|
|
getOwn: <E extends Effects>(effects: E, id: ServiceInterfaceId) =>
|
|
removeConstType<E>()(
|
|
getServiceInterface(effects, {
|
|
id,
|
|
packageId: null,
|
|
}),
|
|
),
|
|
get: <E extends Effects>(
|
|
effects: E,
|
|
opts: { id: ServiceInterfaceId; packageId: PackageId },
|
|
) => removeConstType<E>()(getServiceInterface(effects, opts)),
|
|
getAllOwn: <E extends Effects>(effects: E) =>
|
|
removeConstType<E>()(
|
|
getServiceInterfaces(effects, {
|
|
packageId: null,
|
|
}),
|
|
),
|
|
getAll: <E extends Effects>(
|
|
effects: E,
|
|
opts: { packageId: PackageId },
|
|
) => removeConstType<E>()(getServiceInterfaces(effects, opts)),
|
|
},
|
|
|
|
store: {
|
|
get: <E extends Effects, StoreValue = unknown>(
|
|
effects: E,
|
|
packageId: string,
|
|
path: PathBuilder<Store, StoreValue>,
|
|
) =>
|
|
removeConstType<E>()(
|
|
getStore<Store, StoreValue>(effects, path, {
|
|
packageId,
|
|
}),
|
|
),
|
|
getOwn: <E extends Effects, StoreValue = unknown>(
|
|
effects: E,
|
|
path: PathBuilder<Store, StoreValue>,
|
|
) => removeConstType<E>()(getStore<Store, StoreValue>(effects, path)),
|
|
setOwn: <E extends Effects, Path extends PathBuilder<Store, unknown>>(
|
|
effects: E,
|
|
path: Path,
|
|
value: Path extends PathBuilder<Store, infer Value> ? Value : never,
|
|
) =>
|
|
effects.store.set<Store>({
|
|
value,
|
|
path: extractJsonPath(path),
|
|
}),
|
|
},
|
|
|
|
host: {
|
|
static: (effects: Effects, id: string) =>
|
|
new StaticHost({ id, effects }),
|
|
single: (effects: Effects, id: string) =>
|
|
new SingleHost({ id, effects }),
|
|
multi: (effects: Effects, id: string) => new MultiHost({ id, effects }),
|
|
},
|
|
nullIfEmpty,
|
|
runCommand: async <A extends string>(
|
|
effects: Effects,
|
|
imageId: Manifest["images"][number],
|
|
command: ValidIfNoStupidEscape<A> | [string, ...string[]],
|
|
options: CommandOptions & {
|
|
mounts?: { path: string; options: MountOptions }[]
|
|
},
|
|
): Promise<{ stdout: string | Buffer; stderr: string | Buffer }> => {
|
|
return runCommand<Manifest>(effects, imageId, command, options)
|
|
},
|
|
|
|
createAction: <
|
|
ConfigType extends
|
|
| Record<string, any>
|
|
| Config<any, any>
|
|
| Config<any, never>,
|
|
Type extends Record<string, any> = ExtractConfigType<ConfigType>,
|
|
>(
|
|
id: string,
|
|
metaData: Omit<ActionMetadata, "input"> & {
|
|
input: Config<Type, Store> | Config<Type, never>
|
|
},
|
|
fn: (options: {
|
|
effects: Effects
|
|
input: Type
|
|
}) => Promise<ActionResult>,
|
|
) => {
|
|
const { input, ...rest } = metaData
|
|
return createAction<Manifest, Store, ConfigType, Type>(
|
|
id,
|
|
rest,
|
|
fn,
|
|
input,
|
|
)
|
|
},
|
|
configConstants: { smtpConfig },
|
|
createInterface: (
|
|
effects: Effects,
|
|
options: {
|
|
name: string
|
|
id: string
|
|
description: string
|
|
hasPrimary: boolean
|
|
disabled: boolean
|
|
type: ServiceInterfaceType
|
|
username: null | string
|
|
path: string
|
|
search: Record<string, string>
|
|
schemeOverride: { ssl: Scheme; noSsl: Scheme } | null
|
|
masked: boolean
|
|
},
|
|
) => new ServiceInterfaceBuilder({ ...options, effects }),
|
|
getSystemSmtp: <E extends Effects>(effects: E) =>
|
|
removeConstType<E>()(new GetSystemSmtp(effects)),
|
|
|
|
createDynamicAction: <
|
|
ConfigType extends
|
|
| Record<string, any>
|
|
| Config<any, any>
|
|
| Config<any, never>,
|
|
Type extends Record<string, any> = ExtractConfigType<ConfigType>,
|
|
>(
|
|
id: string,
|
|
metaData: (options: {
|
|
effects: Effects
|
|
}) => MaybePromise<Omit<ActionMetadata, "input">>,
|
|
fn: (options: {
|
|
effects: Effects
|
|
input: Type
|
|
}) => Promise<ActionResult>,
|
|
input: Config<Type, Store> | Config<Type, never>,
|
|
) => {
|
|
return createAction<Manifest, Store, ConfigType, Type>(
|
|
id,
|
|
metaData,
|
|
fn,
|
|
input,
|
|
)
|
|
},
|
|
HealthCheck: {
|
|
of: healthCheck,
|
|
},
|
|
Dependency: {
|
|
of(data: Dependency["data"]) {
|
|
return new Dependency({ ...data })
|
|
},
|
|
},
|
|
healthCheck: {
|
|
checkPortListening,
|
|
checkWebUrl,
|
|
runHealthScript,
|
|
},
|
|
patterns,
|
|
setupActions: (...createdActions: CreatedAction<any, any, any>[]) =>
|
|
setupActions<Manifest, Store>(...createdActions),
|
|
setupBackups: (...args: SetupBackupsParams<Manifest>) =>
|
|
setupBackups<Manifest>(...args),
|
|
setupConfig: <
|
|
ConfigType extends Config<any, Store> | Config<any, never>,
|
|
Type extends Record<string, any> = ExtractConfigType<ConfigType>,
|
|
>(
|
|
spec: ConfigType,
|
|
write: Save<Store, Type, Manifest>,
|
|
read: Read<Manifest, Store, Type>,
|
|
) => setupConfig<Store, ConfigType, Manifest, Type>(spec, write, read),
|
|
setupConfigRead: <
|
|
ConfigSpec extends
|
|
| Config<Record<string, any>, any>
|
|
| Config<Record<string, never>, never>,
|
|
>(
|
|
_configSpec: ConfigSpec,
|
|
fn: Read<Manifest, Store, ConfigSpec>,
|
|
) => fn,
|
|
setupConfigSave: <
|
|
ConfigSpec extends
|
|
| Config<Record<string, any>, any>
|
|
| Config<Record<string, never>, never>,
|
|
>(
|
|
_configSpec: ConfigSpec,
|
|
fn: Save<Store, ConfigSpec, Manifest>,
|
|
) => fn,
|
|
setupDependencyConfig: <Input extends Record<string, any>>(
|
|
config: Config<Input, Store> | Config<Input, never>,
|
|
autoConfigs: {
|
|
[K in keyof Manifest["dependencies"]]: DependencyConfig<
|
|
Manifest,
|
|
Store,
|
|
Input,
|
|
any
|
|
> | null
|
|
},
|
|
) => setupDependencyConfig<Store, Input, Manifest>(config, autoConfigs),
|
|
setupDependencies: <Input extends Record<string, any>>(
|
|
fn: (options: {
|
|
effects: Effects
|
|
input: Input | null
|
|
}) => Promise<DependencyType>,
|
|
) => {
|
|
return async (options: { effects: Effects; input: Input }) => {
|
|
const dependencyType = await fn(options)
|
|
return await options.effects.setDependencies({
|
|
dependencies: Object.entries(dependencyType).map(
|
|
([
|
|
id,
|
|
{
|
|
data: { versionSpec, ...x },
|
|
},
|
|
]) => ({
|
|
id,
|
|
...x,
|
|
...(x.type === "running"
|
|
? {
|
|
kind: "running",
|
|
healthChecks: x.healthChecks,
|
|
}
|
|
: {
|
|
kind: "exists",
|
|
}),
|
|
versionSpec: versionSpec.range,
|
|
}),
|
|
),
|
|
})
|
|
}
|
|
},
|
|
setupInit: (
|
|
migrations: Migrations<Manifest, Store>,
|
|
install: Install<Manifest, Store>,
|
|
uninstall: Uninstall<Manifest, Store>,
|
|
setInterfaces: SetInterfaces<Manifest, Store, any, any>,
|
|
setDependencies: (options: {
|
|
effects: Effects
|
|
input: any
|
|
}) => Promise<DependenciesReceipt>,
|
|
exposedStore: ExposedStorePaths,
|
|
) =>
|
|
setupInit<Manifest, Store>(
|
|
migrations,
|
|
install,
|
|
uninstall,
|
|
setInterfaces,
|
|
setDependencies,
|
|
exposedStore,
|
|
),
|
|
setupInstall: (fn: InstallFn<Manifest, Store>) => Install.of(fn),
|
|
setupInterfaces: <
|
|
ConfigInput extends Record<string, any>,
|
|
Output extends InterfacesReceipt,
|
|
>(
|
|
config: Config<ConfigInput, Store>,
|
|
fn: SetInterfaces<Manifest, Store, ConfigInput, Output>,
|
|
) => setupInterfaces(config, fn),
|
|
setupMain: (
|
|
fn: (o: {
|
|
effects: MainEffects
|
|
started(onTerm: () => PromiseLike<void>): PromiseLike<void>
|
|
}) => Promise<Daemons<Manifest, any>>,
|
|
) => setupMain<Manifest, Store>(fn),
|
|
setupMigrations: <
|
|
Migrations extends Array<Migration<Manifest, Store, any>>,
|
|
>(
|
|
...migrations: EnsureUniqueId<Migrations>
|
|
) =>
|
|
setupMigrations<Manifest, Store, Migrations>(
|
|
this.manifest,
|
|
...migrations,
|
|
),
|
|
setupProperties:
|
|
(
|
|
fn: (options: { effects: Effects }) => Promise<T.SdkPropertiesReturn>,
|
|
): T.ExpectedExports.Properties =>
|
|
(options) =>
|
|
fn(options).then(nullifyProperties),
|
|
setupUninstall: (fn: UninstallFn<Manifest, Store>) =>
|
|
setupUninstall<Manifest, Store>(fn),
|
|
trigger: {
|
|
defaultTrigger,
|
|
cooldownTrigger,
|
|
changeOnFirstSuccess,
|
|
successFailure,
|
|
},
|
|
Mounts: {
|
|
of() {
|
|
return Mounts.of<Manifest>()
|
|
},
|
|
},
|
|
Backups: {
|
|
volumes: (
|
|
...volumeNames: Array<Manifest["volumes"][number] & string>
|
|
) => Backups.volumes<Manifest>(...volumeNames),
|
|
addSets: (
|
|
...options: BackupSet<Manifest["volumes"][number] & string>[]
|
|
) => Backups.addSets<Manifest>(...options),
|
|
withOptions: (options?: Partial<BackupOptions>) =>
|
|
Backups.with_options<Manifest>(options),
|
|
},
|
|
Config: {
|
|
of: <
|
|
Spec extends Record<string, Value<any, Store> | Value<any, never>>,
|
|
>(
|
|
spec: Spec,
|
|
) => Config.of<Spec, Store>(spec),
|
|
},
|
|
Checker: {
|
|
parse: Checker.parse,
|
|
},
|
|
Daemons: {
|
|
of(config: {
|
|
effects: Effects
|
|
started: (onTerm: () => PromiseLike<void>) => PromiseLike<void>
|
|
healthReceipts: HealthReceipt[]
|
|
}) {
|
|
return Daemons.of<Manifest>(config)
|
|
},
|
|
},
|
|
DependencyConfig: {
|
|
of<
|
|
LocalConfig extends Record<string, any>,
|
|
RemoteConfig extends Record<string, any>,
|
|
>({
|
|
localConfigSpec,
|
|
remoteConfigSpec,
|
|
dependencyConfig,
|
|
update,
|
|
}: {
|
|
localConfigSpec:
|
|
| Config<LocalConfig, Store>
|
|
| Config<LocalConfig, never>
|
|
remoteConfigSpec:
|
|
| Config<RemoteConfig, any>
|
|
| Config<RemoteConfig, never>
|
|
dependencyConfig: (options: {
|
|
effects: Effects
|
|
localConfig: LocalConfig
|
|
}) => Promise<void | DeepPartial<RemoteConfig>>
|
|
update?: Update<void | DeepPartial<RemoteConfig>, RemoteConfig>
|
|
}) {
|
|
return new DependencyConfig<
|
|
Manifest,
|
|
Store,
|
|
LocalConfig,
|
|
RemoteConfig
|
|
>(dependencyConfig, update)
|
|
},
|
|
},
|
|
EmVer: {
|
|
from: EmVer.from,
|
|
parse: EmVer.parse,
|
|
},
|
|
List: {
|
|
text: List.text,
|
|
number: List.number,
|
|
obj: <Type extends Record<string, any>>(
|
|
a: {
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
/** Default [] */
|
|
default?: []
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
},
|
|
aSpec: {
|
|
spec: Config<Type, Store>
|
|
displayAs?: null | string
|
|
uniqueBy?: null | UniqueBy
|
|
},
|
|
) => List.obj<Type, Store>(a, aSpec),
|
|
dynamicText: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
/** Default = [] */
|
|
default?: string[]
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
disabled?: false | string
|
|
generate?: null | RandomString
|
|
spec: {
|
|
/** Default = false */
|
|
masked?: boolean
|
|
placeholder?: string | null
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
patterns: Pattern[]
|
|
/** Default = "text" */
|
|
inputmode?: ListValueSpecText["inputmode"]
|
|
}
|
|
}
|
|
>,
|
|
) => List.dynamicText<Store>(getA),
|
|
dynamicNumber: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
/** Default = [] */
|
|
default?: string[]
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
disabled?: false | string
|
|
spec: {
|
|
integer: boolean
|
|
min?: number | null
|
|
max?: number | null
|
|
step?: number | null
|
|
units?: string | null
|
|
placeholder?: string | null
|
|
}
|
|
}
|
|
>,
|
|
) => List.dynamicNumber<Store>(getA),
|
|
},
|
|
Migration: {
|
|
of: <Version extends ManifestVersion>(options: {
|
|
version: Version
|
|
up: (opts: { effects: Effects }) => Promise<void>
|
|
down: (opts: { effects: Effects }) => Promise<void>
|
|
}) => Migration.of<Manifest, Store, Version>(options),
|
|
},
|
|
StorePath: pathBuilder<Store>(),
|
|
Value: {
|
|
toggle: Value.toggle,
|
|
text: Value.text,
|
|
textarea: Value.textarea,
|
|
number: Value.number,
|
|
color: Value.color,
|
|
datetime: Value.datetime,
|
|
select: Value.select,
|
|
multiselect: Value.multiselect,
|
|
object: Value.object,
|
|
union: Value.union,
|
|
list: Value.list,
|
|
dynamicToggle: (
|
|
a: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
default: boolean
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicToggle<Store>(a),
|
|
dynamicText: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: RequiredDefault<DefaultString>
|
|
|
|
/** Default = false */
|
|
masked?: boolean
|
|
placeholder?: string | null
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
patterns?: Pattern[]
|
|
/** Default = 'text' */
|
|
inputmode?: ValueSpecText["inputmode"]
|
|
generate?: null | RandomString
|
|
}
|
|
>,
|
|
) => Value.dynamicText<Store>(getA),
|
|
dynamicTextarea: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: boolean
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
placeholder?: string | null
|
|
disabled?: false | string
|
|
generate?: null | RandomString
|
|
}
|
|
>,
|
|
) => Value.dynamicTextarea<Store>(getA),
|
|
dynamicNumber: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: RequiredDefault<number>
|
|
min?: number | null
|
|
max?: number | null
|
|
/** Default = '1' */
|
|
step?: number | null
|
|
integer: boolean
|
|
units?: string | null
|
|
placeholder?: string | null
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicNumber<Store>(getA),
|
|
dynamicColor: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: RequiredDefault<string>
|
|
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicColor<Store>(getA),
|
|
dynamicDatetime: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: RequiredDefault<string>
|
|
/** Default = 'datetime-local' */
|
|
inputmode?: ValueSpecDatetime["inputmode"]
|
|
min?: string | null
|
|
max?: string | null
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicDatetime<Store>(getA),
|
|
dynamicSelect: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: RequiredDefault<string>
|
|
values: Record<string, string>
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicSelect<Store>(getA),
|
|
dynamicMultiselect: (
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
default: string[]
|
|
values: Record<string, string>
|
|
minLength?: number | null
|
|
maxLength?: number | null
|
|
disabled?: false | string
|
|
}
|
|
>,
|
|
) => Value.dynamicMultiselect<Store>(getA),
|
|
filteredUnion: <
|
|
Required extends RequiredDefault<string>,
|
|
Type extends Record<string, any>,
|
|
>(
|
|
getDisabledFn: LazyBuild<Store, string[]>,
|
|
a: {
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: Required
|
|
},
|
|
aVariants: Variants<Type, Store> | Variants<Type, never>,
|
|
) =>
|
|
Value.filteredUnion<Required, Type, Store>(
|
|
getDisabledFn,
|
|
a,
|
|
aVariants,
|
|
),
|
|
|
|
dynamicUnion: <
|
|
Required extends RequiredDefault<string>,
|
|
Type extends Record<string, any>,
|
|
>(
|
|
getA: LazyBuild<
|
|
Store,
|
|
{
|
|
disabled: string[] | false | string
|
|
name: string
|
|
description?: string | null
|
|
warning?: string | null
|
|
required: Required
|
|
}
|
|
>,
|
|
aVariants: Variants<Type, Store> | Variants<Type, never>,
|
|
) => Value.dynamicUnion<Required, Type, Store>(getA, aVariants),
|
|
},
|
|
Variants: {
|
|
of: <
|
|
VariantValues extends {
|
|
[K in string]: {
|
|
name: string
|
|
spec: Config<any, Store>
|
|
}
|
|
},
|
|
>(
|
|
a: VariantValues,
|
|
) => Variants.of<VariantValues, Store>(a),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function runCommand<Manifest extends SDKManifest>(
|
|
effects: Effects,
|
|
imageId: Manifest["images"][number],
|
|
command: string | [string, ...string[]],
|
|
options: CommandOptions & {
|
|
mounts?: { path: string; options: MountOptions }[]
|
|
},
|
|
): Promise<{ stdout: string | Buffer; stderr: string | Buffer }> {
|
|
const commands = splitCommand(command)
|
|
const overlay = await Overlay.of(effects, imageId)
|
|
try {
|
|
for (let mount of options.mounts || []) {
|
|
await overlay.mount(mount.options, mount.path)
|
|
}
|
|
return await overlay.exec(commands)
|
|
} finally {
|
|
await overlay.destroy()
|
|
}
|
|
}
|
|
function nullifyProperties(value: T.SdkPropertiesReturn): T.PropertiesReturn {
|
|
return Object.fromEntries(
|
|
Object.entries(value).map(([k, v]) => [k, nullifyProperties_(v)]),
|
|
)
|
|
}
|
|
function nullifyProperties_(value: T.SdkPropertiesValue): T.PropertiesValue {
|
|
if (value.type === "string") {
|
|
return { description: null, copyable: null, qr: null, ...value }
|
|
}
|
|
return {
|
|
description: null,
|
|
...value,
|
|
value: Object.fromEntries(
|
|
Object.entries(value.value).map(([k, v]) => [k, nullifyProperties_(v)]),
|
|
),
|
|
}
|
|
}
|