persist app sharing

This commit is contained in:
Chris Wanstrath 2025-09-29 20:43:13 -07:00
parent 312abc11d8
commit d1e2e7d7a4
9 changed files with 123 additions and 10 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
data/
# dependencies (bun install) # dependencies (bun install)
node_modules node_modules

View File

@ -3,11 +3,12 @@
import { apps } from "app/src/webapp" import { apps } from "app/src/webapp"
import { connectSneaker, sneakers, sneakerUrl } from "app/src/sneaker" import { connectSneaker, sneakers, sneakerUrl } from "app/src/sneaker"
export default async function (app: string, subdomain = "") { export default async function (app: string) {
if (!app) { if (!app) {
let out = `usage: share <app> [subdomain]` let out = `usage: share <app> [subdomain]`
const apps = sneakers() const apps = sneakers()
if (apps.length) { if (apps.length) {
out += "\n\nUse `unshare` to stop sharing an app."
out += "\n\nsharing\n" + apps.map(app => { out += "\n\nsharing\n" + apps.map(app => {
const url = sneakerUrl(app) const url = sneakerUrl(app)
return `${app}: <a href="${url}">${url}</a>` return `${app}: <a href="${url}">${url}</a>`
@ -20,6 +21,6 @@ export default async function (app: string, subdomain = "") {
return { error: `${app} not found` } return { error: `${app} not found` }
} }
const url = sneakerUrl(await connectSneaker(app, subdomain)) const url = sneakerUrl(await connectSneaker(app))
return { html: `<a href="${url}">${url}</a>` } return { html: `<a href="${url}">${url}</a>` }
} }

6
app/nose/bin/state.ts Normal file
View File

@ -0,0 +1,6 @@
import { NOSE_DATA } from "@/config"
import { join } from "path"
export default async function () {
return JSON.parse(await Bun.file(join(NOSE_DATA, "state.json")).text())
}

View File

@ -10,5 +10,7 @@ export const NOSE_DIR = resolve("..")
export const NOSE_BIN = join(NOSE_DIR, "bin") export const NOSE_BIN = join(NOSE_DIR, "bin")
export const NOSE_WWW = join(NOSE_DIR, "www") export const NOSE_WWW = join(NOSE_DIR, "www")
export const NOSE_DATA = resolve("./data")
export const NOSE_STARTED = Date.now() export const NOSE_STARTED = Date.now()
export const GIT_SHA = (await $`git rev-parse HEAD`.text()).trim() export const GIT_SHA = (await $`git rev-parse HEAD`.text()).trim()

27
app/src/mutex.ts Normal file
View File

@ -0,0 +1,27 @@
////
// Simple mutex for concurrent file writes
export class Mutex {
private queue: (() => void)[] = []
private locked = false
async lock(): Promise<() => void> {
return new Promise(resolve => {
const unlock = () => {
const next = this.queue.shift()
if (next) {
next()
} else {
this.locked = false
}
}
if (this.locked) {
this.queue.push(() => resolve(unlock))
} else {
this.locked = true
resolve(unlock)
}
})
}
}

View File

@ -7,17 +7,17 @@ import { prettyJSON } from "hono/pretty-json"
import color from "kleur" import color from "kleur"
import type { Message } from "./shared/types" import type { Message } from "./shared/types"
import { NOSE_ICON, NOSE_BIN, NOSE_WWW } from "./config" import { NOSE_ICON, NOSE_BIN, NOSE_WWW, NOSE_DATA } from "./config"
import { transpile, isFile, tilde } from "./utils" import { transpile, isFile, tilde } from "./utils"
import { serveApp } from "./webapp" import { serveApp } from "./webapp"
import { initDNS } from "./dns" import { initDNS } from "./dns"
import { commands, commandSource, commandPath } from "./commands" import { commands, commandPath } from "./commands"
import { send, addWebsocket, removeWebsocket, closeWebsockets } from "./websocket" import { send, addWebsocket, removeWebsocket, closeWebsockets } from "./websocket"
import { Layout } from "./html/layout" import { Layout } from "./html/layout"
import { Terminal } from "./html/terminal" import { Terminal } from "./html/terminal"
import { dispatchMessage } from "./dispatch" import { dispatchMessage } from "./dispatch"
import "./sneaker" import { initSneakers, disconnectSneakers } from "./sneaker"
// //
// Hono setup // Hono setup
@ -129,6 +129,7 @@ if (process.env.BUN_HOT) {
// @ts-ignore // @ts-ignore
globalThis.__hot_reload_cleanup = () => { globalThis.__hot_reload_cleanup = () => {
closeWebsockets() closeWebsockets()
disconnectSneakers()
} }
for (const sig of ["SIGINT", "SIGTERM"] as const) { for (const sig of ["SIGINT", "SIGTERM"] as const) {
@ -138,19 +139,27 @@ if (process.env.BUN_HOT) {
process.exit(0) process.exit(0)
}) })
} }
} else {
initDNS()
} }
//
// production mode
//
if (process.env.NODE_ENV === "production") {
initDNS()
}
// //
// server start // server start
// //
console.log(color.cyan(NOSE_ICON)) console.log(color.cyan(NOSE_ICON))
console.log(color.blue("NOSE_DATA:"), color.yellow(tilde(NOSE_DATA)))
console.log(color.blue("NOSE_BIN:"), color.yellow(tilde(NOSE_BIN))) console.log(color.blue("NOSE_BIN:"), color.yellow(tilde(NOSE_BIN)))
console.log(color.blue("NOSE_WWW:"), color.yellow(tilde(NOSE_WWW))) console.log(color.blue("NOSE_WWW:"), color.yellow(tilde(NOSE_WWW)))
initSneakers()
export default { export default {
port: process.env.PORT || 3000, port: process.env.PORT || 3000,
hostname: "0.0.0.0", hostname: "0.0.0.0",

View File

@ -83,5 +83,5 @@ function errorMessage(error: Error | any): string {
} }
function isJSX(obj: any): boolean { function isJSX(obj: any): boolean {
return 'tag' in obj && 'props' in obj && 'children' in obj return typeof obj === 'object' && 'tag' in obj && 'props' in obj && 'children' in obj
} }

View File

@ -3,12 +3,15 @@
// with the public internet. It requires a sneaker server, usually hosted by us. // with the public internet. It requires a sneaker server, usually hosted by us.
import nose from "./server" import nose from "./server"
import { clearState, setState, getState } from "app/src/state"
const SNEAKER_URL = "nose.space" const SNEAKER_URL = "nose.space"
const SNEAKER_TLS = true const SNEAKER_TLS = true
// const SNEAKER_URL = "localhost:3100" // const SNEAKER_URL = "localhost:3100"
// const SNEAKER_TLS = false // const SNEAKER_TLS = false
const PREFIX = "sneaker:"
type Connection = { type Connection = {
subdomain: string subdomain: string
ws: any ws: any
@ -16,6 +19,19 @@ type Connection = {
} }
const conns: Record<string, Connection> = {} const conns: Record<string, Connection> = {}
export function initSneakers() {
const state = getState()
if (!state) return
for (const key in state) {
if (key.startsWith(PREFIX)) {
const app = key.replace(PREFIX, "")
console.log("sharing", app, state[key])
connectSneaker(app, state[key])
}
}
}
export function sneakerUrl(appOrSubdomain: string): string { export function sneakerUrl(appOrSubdomain: string): string {
let conn = conns[appOrSubdomain] let conn = conns[appOrSubdomain]
if (!conn) { if (!conn) {
@ -29,7 +45,6 @@ export function sneakerUrl(appOrSubdomain: string): string {
return "none" return "none"
} }
let url = "http" + (SNEAKER_TLS ? "s" : "") + "://" let url = "http" + (SNEAKER_TLS ? "s" : "") + "://"
url += conn.subdomain + "." + SNEAKER_URL url += conn.subdomain + "." + SNEAKER_URL
@ -40,10 +55,19 @@ export function sneakers(): string[] {
return Object.keys(conns) return Object.keys(conns)
} }
export function disconnectSneaker(app: string): boolean { export async function disconnectSneakers() {
for (const app in conns) {
const conn = conns[app]!
conn.close = true
conn.ws.close()
}
}
export async function disconnectSneaker(app: string): Promise<boolean> {
if (!sneakers().includes(app) || !conns[app]) if (!sneakers().includes(app) || !conns[app])
return false return false
await clearState(`${PREFIX}${app}`)
conns[app].close = true conns[app].close = true
conns[app].ws.close() conns[app].ws.close()
@ -76,6 +100,7 @@ export async function connectSneaker(app: string, subdomain = ""): Promise<strin
if (msg.subdomain) { if (msg.subdomain) {
conns[app] = { subdomain: msg.subdomain, ws, close: false } conns[app] = { subdomain: msg.subdomain, ws, close: false }
await setState(`${PREFIX}${app}`, msg.subdomain)
subdomain = msg.subdomain subdomain = msg.subdomain
resolve(msg.subdomain) resolve(msg.subdomain)
return return

42
app/src/state.ts Normal file
View File

@ -0,0 +1,42 @@
////
// Server state, shared by all sessions.
import { join } from "path"
import { readFileSync } from "fs"
import { NOSE_DATA } from "./config"
import { Mutex } from "./mutex"
const statePath = join(NOSE_DATA, "state.json")
const mutex = new Mutex()
export function getState(key?: string): any {
return key ? readState()?.[key] : readState()
}
export async function setState(key: string, value: any) {
const state = readState()
state[key] = value
await saveState(state)
}
export async function clearState(key: string) {
await setState(key, undefined)
}
async function saveState(newState: any) {
const unlock = await mutex.lock()
try {
await Bun.write(statePath, JSON.stringify(newState, null, 2))
} finally {
unlock()
}
}
function readState(): Record<string, any> {
try {
return JSON.parse(readFileSync(statePath, 'utf8'))
} catch (e: any) {
if (e.code === "ENOENT") return {}
throw e
}
}