Files
spacesops-startos/startos/actions/configurePlatform.ts
T
spacesopsandClaude Opus 4.7 35c1013520 Build SpacesOps StartOS package (v1.0.0:0)
Initial .s9pk for SpacesOps, targeting StartOS 0.4.0.x with SDK 1.5.1.

- Single managed daemon from spacesops/spacesops:v1.0.0 (x86_64 + aarch64),
  keeping the image entrypoint (/app/docker-entrypoint.sh node server.js).
  Forces PLATFORM_HOST=0.0.0.0 / PLATFORM_PORT=7264 so the StartOS proxy can
  reach the app. Single `ui` interface on 7264.
- Depends on the Spaces service (>=0.0.9:3) and auto-wires the spaced RPC creds:
  main.ts mounts the Spaces `main` volume read-only at /spaces-data, execs a
  read of its store.json inside the subcontainer, and injects SPACED_RPC_USER/
  PASSWORD + SPACED_RPC_URL=http://spaces.startos:7225. Throws to retry until
  Spaces is installed and seeded.
- Generates a Nostr operator keypair (nostr-tools, bundled by ncc) and a strong
  session secret in idempotent init tasks (.once() reads, allowWriteAfterConst
  merges). Actions: show-operator-credentials, import-operator-key,
  show-admin-credentials (surfaces the fixed admin/Whatever! login with a
  warning), configure-platform (optional relay/mode/CoinGecko/SUBSD).
- Install alert warns to install Spaces first and about the fixed admin
  credential. Backs up the `main` volume.
- Icon: icon.svg (source spacesops.svg). The `spaces` dependency uses
  assets/spaces-icon.png for its Marketplace metadata.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-26 10:28:18 -04:00

164 lines
4.4 KiB
TypeScript

import { storeJson } from '../fileModels/storeJson'
import { i18n } from '../i18n'
import { sdk } from '../sdk'
import {
DEFAULT_COINGECKO_TOKEN_COINS,
DEFAULT_OPERATOR_RELAY,
DEFAULT_PLATFORM_MODE,
} from '../utils'
const { InputSpec, Value } = sdk
const inputSpec = InputSpec.of({
operatorRelay: Value.text({
name: i18n('Operator Nostr Relay'),
description: i18n(
'The Nostr relay SpacesOps publishes operator events to (OPERATOR_RELAY).',
),
warning: null,
footnote: null,
default: DEFAULT_OPERATOR_RELAY,
required: true,
masked: false,
placeholder: 'wss://relay.example.com',
minLength: 1,
maxLength: null,
}),
platformMode: Value.select({
name: i18n('Platform Mode'),
description: i18n(
'Sets PLATFORM_MODE. Only changes the UI theme color; "test" does not change behavior.',
),
warning: null,
footnote: null,
default: DEFAULT_PLATFORM_MODE,
values: {
prod: 'Production',
test: 'Test',
},
}),
coingeckoApiKey: Value.text({
name: i18n('CoinGecko API Key'),
description: i18n(
'Optional CoinGecko API key (COINGECKO_API_KEY) used for pricing features. Leave blank to disable pricing.',
),
warning: null,
footnote: null,
default: null,
required: false,
masked: true,
placeholder: null,
minLength: null,
maxLength: null,
}),
coingeckoTokenCoins: Value.text({
name: i18n('CoinGecko Token Coins'),
description: i18n(
'The CoinGecko coin id(s) to price against (COINGECKO_TOKEN_COINS).',
),
warning: null,
footnote: null,
default: DEFAULT_COINGECKO_TOKEN_COINS,
required: false,
masked: false,
placeholder: 'bitcoin',
minLength: null,
maxLength: null,
}),
subsdUrl: Value.text({
name: i18n('SUBSD URL'),
description: i18n(
'Optional SUBSD service URL (SUBSD_URI_VALUE) for the subname-purchase flow. Leave blank to disable.',
),
warning: null,
footnote: null,
default: null,
required: false,
masked: false,
placeholder: 'http://host:7244',
minLength: null,
maxLength: null,
}),
subsdUser: Value.text({
name: i18n('SUBSD RPC User'),
description: i18n('Optional SUBSD RPC username (SUBSD_RPC_USER).'),
warning: null,
footnote: null,
default: null,
required: false,
masked: false,
placeholder: null,
minLength: null,
maxLength: null,
}),
subsdPassword: Value.text({
name: i18n('SUBSD RPC Password'),
description: i18n('Optional SUBSD RPC password (SUBSD_RPC_PASSWORD).'),
warning: null,
footnote: null,
default: null,
required: false,
masked: true,
placeholder: null,
minLength: null,
maxLength: null,
}),
})
export const configurePlatform = sdk.Action.withInput(
// id
'configure-platform',
// metadata
async ({ effects }) => ({
name: i18n('Configure Platform'),
description: i18n(
'Set optional SpacesOps settings: Nostr relay, theme mode, CoinGecko pricing, and SUBSD backend. Saving restarts the service so the new settings take effect.',
),
warning: null,
allowedStatuses: 'any',
group: null,
visibility: 'enabled',
}),
// input
inputSpec,
// prefill — load current values from store
async ({ effects }) => {
const store = await storeJson.read().once()
return {
operatorRelay: store?.operatorRelay ?? DEFAULT_OPERATOR_RELAY,
platformMode: store?.platformMode ?? DEFAULT_PLATFORM_MODE,
coingeckoApiKey: store?.coingeckoApiKey ?? null,
coingeckoTokenCoins:
store?.coingeckoTokenCoins ?? DEFAULT_COINGECKO_TOKEN_COINS,
subsdUrl: store?.subsdUrl ?? null,
subsdUser: store?.subsdUser ?? null,
subsdPassword: store?.subsdPassword ?? null,
}
},
// run
async ({ effects, input }) => {
await storeJson.merge(effects, {
operatorRelay: input.operatorRelay,
platformMode: input.platformMode,
coingeckoApiKey: input.coingeckoApiKey || null,
coingeckoTokenCoins: input.coingeckoTokenCoins || null,
subsdUrl: input.subsdUrl || null,
subsdUser: input.subsdUser || null,
subsdPassword: input.subsdPassword || null,
})
return {
version: '1',
title: i18n('Success'),
message: i18n(
'Platform configuration saved. The service is restarting to apply the new settings.',
),
result: null,
}
},
)