remove projects and apps end to end
deletes the last of the projects/apps cluster: the published-app store (/api/apps + /api/app-serve), the project dev-server and its websocket proxy (/api/dev-server + /api/dev-server-proxy), the shared html-rewrite they were the only consumers of, and their frontend — the Preview panel, the UserApp panel/header, useUserApps and the /settings/apps screen. also drops getUserProjectsDir and getUserAppsDir, the ProjectType and ProjectDefinition types, and the 'dev-server' websocket provider from server.tsx. nothing on disk is touched. 1440 deletions, 31 insertions. tsgo clean.
This commit is contained in:
@@ -17,8 +17,8 @@ One Bun process (`src/server.tsx`) serves everything:
|
||||
|
||||
- the React SPA, via Bun's HTML import of `src/apps/officer-web/index.html` (HMR in dev)
|
||||
- the REST API, a Hono app mounted at `/api` (`src/servers/hono.ts`)
|
||||
- eight WebSocket providers — terminal, chat, task-runner, pipeline, dev-server proxy, cliamp,
|
||||
cliamp-audio, desktop — plus a sidecar registration socket
|
||||
- seven WebSocket providers — terminal, chat, task-runner, pipeline, cliamp, cliamp-audio,
|
||||
desktop — plus the vault notifications hub and a sidecar registration socket
|
||||
- a browser relay on its own port (`BROWSER_RELAY_PORT`, default 18792)
|
||||
|
||||
Long-running and privileged work lives in **sidecars**: separate processes that dial back in over
|
||||
@@ -57,7 +57,7 @@ src/
|
||||
```
|
||||
|
||||
`src/workspaces/officerdev` is the biggest of these: the windowed "apps" (FileBrowser, Chat,
|
||||
Terminal, CodeEditor, Desktop, Projects, Dashboards…) that the shell hosts, behind an `AppRegistry`.
|
||||
Terminal, CodeEditor, Desktop, Dashboards, Wallet…) that the shell hosts, behind an `AppRegistry`.
|
||||
`src/apps/officer-web` is only the shell — screens, routing and settings.
|
||||
|
||||
**Path aliases** (`tsconfig.json`): `@/*` → `src/apps/officer-web`, `@/components/*` →
|
||||
@@ -78,7 +78,7 @@ imported by their package name (`officerdev`, `hooks`, `state`, `types`, `helper
|
||||
Two stores, and the split matters:
|
||||
|
||||
**Postgres** (`src/databases/officer_db`) holds the account, passkeys, settings, dashboards,
|
||||
projects, email accounts, queue and pipeline jobs. Schema in `src/schema/`, hand-written queries in
|
||||
email accounts, queue and pipeline jobs. Schema in `src/schema/`, hand-written queries in
|
||||
`src/queries/`, types inferred from the schema in `src/types.ts`.
|
||||
|
||||
**The filesystem** holds everything the agent authors. `OFFICER_ITEMS_DIR` contains one directory
|
||||
|
||||
@@ -34,7 +34,6 @@ export function App() {
|
||||
<Route path="/settings/ai" element={<Dashboard.AISettings />} />
|
||||
<Route path="/settings/system" element={<Dashboard.SystemSettings />} />
|
||||
<Route path="/settings/integrations" element={<Dashboard.IntegrationsSettings />} />
|
||||
<Route path="/settings/apps" element={<Dashboard.AppsSettings />} />
|
||||
<Route path="/chat" element={<Dashboard.SessionListPage />} />
|
||||
<Route path="/chat/new" element={<Dashboard.SessionListPage isNew />} />
|
||||
<Route path="/chat/:sessionId" element={<Dashboard.SessionListPage />} />
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Link } from 'react-router';
|
||||
import * as Dropdown from '@/components/ui/dropdown-menu';
|
||||
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
|
||||
import { User, LogOut, Settings, Package, Puzzle, Rocket, Sun, Moon, Bot } from 'lucide-react';
|
||||
import { User, LogOut, Settings, Package, Puzzle, Sun, Moon, Bot } from 'lucide-react';
|
||||
import { useAuth } from 'hooks/useAuth';
|
||||
import { useTranslation } from '@/lib/i18n';
|
||||
import { useColorMode } from '@/components/ui/ThemeProvider';
|
||||
@@ -65,12 +65,6 @@ export function UserMenu() {
|
||||
Integrations
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem asChild className="cursor-pointer">
|
||||
<Link to="/settings/apps">
|
||||
<Rocket className="mr-2 h-4 w-4" />
|
||||
Apps
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuItem onClick={toggleColorMode} className="cursor-pointer">
|
||||
{colorMode === 'dark' ? <Sun className="mr-2 h-4 w-4" /> : <Moon className="mr-2 h-4 w-4" />}
|
||||
|
||||
@@ -1,115 +0,0 @@
|
||||
import { useState } from 'react';
|
||||
import { Trash2, Loader2, ExternalLink } from 'lucide-react';
|
||||
import { toast } from 'sonner';
|
||||
import { useClient } from 'hooks/useClient';
|
||||
import { useUserApps, type AppManifest } from 'state/useUserApps';
|
||||
import {
|
||||
AlertDialog,
|
||||
AlertDialogAction,
|
||||
AlertDialogCancel,
|
||||
AlertDialogContent,
|
||||
AlertDialogDescription,
|
||||
AlertDialogFooter,
|
||||
AlertDialogHeader,
|
||||
AlertDialogTitle,
|
||||
} from '@/components/ui/alert-dialog';
|
||||
|
||||
export const AppsList = () => {
|
||||
const client = useClient();
|
||||
const { apps, isLoading, refetch } = useUserApps();
|
||||
const [deleting, setDeleting] = useState<AppManifest | null>(null);
|
||||
const [deletingInProgress, setDeletingInProgress] = useState(false);
|
||||
|
||||
const confirmDelete = async () => {
|
||||
if (!deleting) return;
|
||||
setDeletingInProgress(true);
|
||||
try {
|
||||
await client.delete(`/apps/${deleting.slug}`);
|
||||
toast.success(`Deleted ${deleting.name}`);
|
||||
refetch();
|
||||
} catch {
|
||||
toast.error('Failed to delete app');
|
||||
} finally {
|
||||
setDeletingInProgress(false);
|
||||
setDeleting(null);
|
||||
}
|
||||
};
|
||||
|
||||
if (isLoading) {
|
||||
return (
|
||||
<div className="flex items-center justify-center py-12">
|
||||
<Loader2 className="h-5 w-5 animate-spin text-duck-dark/30 dark:text-foreground/30" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (apps.length === 0) {
|
||||
return (
|
||||
<div className="text-sm text-duck-dark/40 dark:text-foreground/40 py-8 text-center">
|
||||
No published apps yet. Publish a project from the Projects page.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="flex flex-col gap-2">
|
||||
{apps.map((app) => (
|
||||
<div
|
||||
key={app.slug}
|
||||
className="flex items-center gap-4 rounded-lg border border-duck-dark/10 dark:border-foreground/10 p-4"
|
||||
>
|
||||
<div className="flex-1 min-w-0">
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="text-sm font-medium text-duck-dark dark:text-foreground">{app.name}</span>
|
||||
<span className="text-[10px] font-mono text-duck-dark/30 dark:text-foreground/30">v{app.version}</span>
|
||||
</div>
|
||||
{app.description && (
|
||||
<p className="text-xs text-duck-dark/50 dark:text-foreground/50 mt-0.5 truncate">{app.description}</p>
|
||||
)}
|
||||
<div className="flex items-center gap-3 mt-1.5 text-[11px] text-duck-dark/30 dark:text-foreground/30">
|
||||
<span>Source: <span className="font-mono">{app.sourceProject}</span></span>
|
||||
<span>Commit: <span className="font-mono">{app.commitHash}</span></span>
|
||||
<span>Published: {new Date(app.publishedAt).toLocaleDateString()}</span>
|
||||
</div>
|
||||
</div>
|
||||
<a
|
||||
href={`/api/app-serve/${app.slug}/`}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="shrink-0 p-2 rounded-md text-duck-dark/30 dark:text-foreground/30 hover:text-duck-teal hover:bg-duck-teal/10 transition-colors cursor-pointer"
|
||||
title="Open in new tab"
|
||||
>
|
||||
<ExternalLink className="h-4 w-4" />
|
||||
</a>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setDeleting(app)}
|
||||
className="shrink-0 p-2 rounded-md text-duck-dark/30 dark:text-foreground/30 hover:text-red-500 hover:bg-red-500/10 transition-colors cursor-pointer"
|
||||
title="Delete app"
|
||||
>
|
||||
<Trash2 className="h-4 w-4" />
|
||||
</button>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<AlertDialog open={deleting !== null} onOpenChange={(open) => { if (!open) setDeleting(null); }}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>Delete published app</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
Are you sure you want to delete <strong>{deleting?.name}</strong>? This removes the published build. The source project is not affected.
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel disabled={deletingInProgress}>Cancel</AlertDialogCancel>
|
||||
<AlertDialogAction onClick={confirmDelete} disabled={deletingInProgress} className="bg-red-600 hover:bg-red-700">
|
||||
{deletingInProgress ? <Loader2 className="h-4 w-4 animate-spin" /> : 'Delete'}
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
</>
|
||||
);
|
||||
};
|
||||
@@ -1,46 +0,0 @@
|
||||
import { useMemo } from 'react';
|
||||
import { Rocket, List } from 'lucide-react';
|
||||
import type { LayoutNode, PanelComponents } from 'officerdev';
|
||||
import { WorkspaceLayout } from 'officerdev';
|
||||
|
||||
import { createSettingsPanelComponents, type SettingsSection } from '../SettingsPanel';
|
||||
import { AppsList } from './AppsList';
|
||||
|
||||
const GLOBAL_KEY = 'APPS_SETTINGS_SELECTED';
|
||||
|
||||
const sections: SettingsSection[] = [
|
||||
{ key: 'published-apps', icon: List, title: 'Published Apps', description: 'View and manage your published apps', content: <AppsList /> },
|
||||
];
|
||||
|
||||
const { Sidebar, Content } = createSettingsPanelComponents({
|
||||
globalKey: GLOBAL_KEY,
|
||||
sidebarIcon: Rocket,
|
||||
sidebarLabel: 'Apps',
|
||||
sections,
|
||||
});
|
||||
|
||||
const layout: LayoutNode = {
|
||||
type: 'group',
|
||||
id: 'apps-settings-root',
|
||||
direction: 'horizontal',
|
||||
children: [
|
||||
{ node: { type: 'panel', id: 'apps-settings-left', appType: null }, size: 20 },
|
||||
{ node: { type: 'panel', id: 'apps-settings-right', appType: null }, size: 80 },
|
||||
],
|
||||
};
|
||||
|
||||
export const AppsSettings = () => {
|
||||
const panelComponents: PanelComponents = useMemo(
|
||||
() => ({
|
||||
'apps-settings-left': Sidebar,
|
||||
'apps-settings-right': Content,
|
||||
}),
|
||||
[],
|
||||
);
|
||||
|
||||
return (
|
||||
<div className="h-full w-full pt-2">
|
||||
<WorkspaceLayout layout={layout} onLayoutChange={() => {}} components={panelComponents} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -2,4 +2,3 @@ export * from './ProfileSettings';
|
||||
export * from './SystemSettings';
|
||||
export * from './AISettings';
|
||||
export * from './IntegrationsSettings';
|
||||
export * from './AppsSettings';
|
||||
|
||||
@@ -10,7 +10,6 @@ const RULES: TitleRule[] = [
|
||||
{ match: (p) => p.startsWith('/settings/ai'), title: 'AI Settings' },
|
||||
{ match: (p) => p.startsWith('/settings/profile'), title: 'Profile' },
|
||||
{ match: (p) => p.startsWith('/settings/integrations'), title: 'Integrations' },
|
||||
{ match: (p) => p.startsWith('/settings/apps'), title: 'App Settings' },
|
||||
{ match: (p) => p.startsWith('/settings'), title: 'Settings' },
|
||||
{ match: (p) => p.startsWith('/chat'), title: 'Chat' },
|
||||
{ match: (p) => p.startsWith('/email'), title: 'Email' },
|
||||
|
||||
-116
@@ -11,7 +11,6 @@ import { pipelineWebsocket } from './servers/api/tasks/pipeline-executor';
|
||||
import { cliampWebsocket, cliampAudioWebsocket } from './servers/api/cliamp/relay';
|
||||
import { desktopWebsocket } from './servers/api/desktop/websocket';
|
||||
import { vaultWebsocket, upgradeVaultWs } from './servers/api/vault/websocket';
|
||||
import { findEntryByProxyId, touchEntry } from './servers/api/dev-server/router';
|
||||
import officerWeb from './apps/officer-web/index.gen.html';
|
||||
import { startBrowserRelay } from './servers/api/browser/relay';
|
||||
import { registerSidecar, unregisterSidecar, handleSidecarMessage } from './servers/sidecar-registry';
|
||||
@@ -38,7 +37,6 @@ type WSData = {
|
||||
| 'chat'
|
||||
| 'task-runner'
|
||||
| 'pipeline'
|
||||
| 'dev-server'
|
||||
| 'cliamp'
|
||||
| 'cliamp-audio'
|
||||
| 'desktop'
|
||||
@@ -50,10 +48,6 @@ type WSData = {
|
||||
cols?: number;
|
||||
rows?: number;
|
||||
search?: string; // raw query string, for providers that relay it to a sidecar
|
||||
devServerPort?: number;
|
||||
devServerSlug?: string;
|
||||
wsProxyPath?: string;
|
||||
wsToken?: string;
|
||||
};
|
||||
|
||||
// Sidecar registration WebSocket handler
|
||||
@@ -150,83 +144,6 @@ const handlers: Record<string, any> = {
|
||||
sidecar: sidecarWebsocket,
|
||||
};
|
||||
|
||||
// Dev-server WebSocket proxy: bridges client WS ↔ upstream dev server WS (for HMR etc.)
|
||||
type UpstreamState = { ws: WebSocket; queue: (string | Buffer)[]; ready: boolean };
|
||||
|
||||
// Bun hands WS frames over as `string | Buffer`, but the DOM WebSocket.send signature won't accept a
|
||||
// Buffer<ArrayBufferLike> (it can't rule out a SharedArrayBuffer backing). A Buffer is a Uint8Array
|
||||
// at runtime, so this forwards as-is rather than paying for a copy on every proxied frame.
|
||||
const asWsPayload = (raw: string | Buffer): string | Uint8Array<ArrayBuffer> =>
|
||||
typeof raw === 'string' ? raw : (raw as Uint8Array<ArrayBuffer>);
|
||||
const devServerUpstreams = new Map<ServerWebSocket<WSData>, UpstreamState>();
|
||||
|
||||
const devServerWebsocket = {
|
||||
async open(ws: ServerWebSocket<WSData>) {
|
||||
const { devServerPort, wsProxyPath, wsToken } = ws.data;
|
||||
|
||||
// Validate JWT (deferred from upgrade which must be synchronous in Bun)
|
||||
if (!wsToken) {
|
||||
ws.close(4001, 'Unauthorized');
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const payload = await verify(wsToken);
|
||||
if (!payload) {
|
||||
ws.close(4001, 'Unauthorized');
|
||||
return;
|
||||
}
|
||||
if (payload.jti && (await isTokenBlacklisted(payload.jti))) {
|
||||
ws.close(4001, 'Unauthorized');
|
||||
return;
|
||||
}
|
||||
} catch {
|
||||
ws.close(4001, 'Unauthorized');
|
||||
return;
|
||||
}
|
||||
|
||||
const upstream = new WebSocket(`ws://localhost:${devServerPort}${wsProxyPath}`);
|
||||
const state: UpstreamState = { ws: upstream, queue: [], ready: false };
|
||||
devServerUpstreams.set(ws, state);
|
||||
|
||||
upstream.addEventListener('open', () => {
|
||||
state.ready = true;
|
||||
for (const msg of state.queue) upstream.send(asWsPayload(msg));
|
||||
state.queue.length = 0;
|
||||
});
|
||||
|
||||
upstream.addEventListener('message', (event) => {
|
||||
ws.send(event.data as string | ArrayBuffer);
|
||||
});
|
||||
|
||||
upstream.addEventListener('close', () => {
|
||||
devServerUpstreams.delete(ws);
|
||||
ws.close();
|
||||
});
|
||||
|
||||
upstream.addEventListener('error', () => {
|
||||
devServerUpstreams.delete(ws);
|
||||
ws.close();
|
||||
});
|
||||
},
|
||||
message(ws: ServerWebSocket<WSData>, raw: string | Buffer) {
|
||||
const state = devServerUpstreams.get(ws);
|
||||
if (!state) return;
|
||||
if (state.ready) {
|
||||
state.ws.send(asWsPayload(raw));
|
||||
} else {
|
||||
state.queue.push(raw);
|
||||
}
|
||||
},
|
||||
close(ws: ServerWebSocket<WSData>) {
|
||||
const state = devServerUpstreams.get(ws);
|
||||
if (state) {
|
||||
state.ws.close();
|
||||
devServerUpstreams.delete(ws);
|
||||
}
|
||||
},
|
||||
};
|
||||
handlers['dev-server'] = devServerWebsocket;
|
||||
|
||||
async function upgradeWs(
|
||||
req: Request,
|
||||
server: any,
|
||||
@@ -269,35 +186,6 @@ async function upgradeWs(
|
||||
}
|
||||
}
|
||||
|
||||
function upgradeDevServerWs(req: Request, server: any) {
|
||||
const url = new URL(req.url);
|
||||
const match = url.pathname.match(/^\/api\/dev-server-proxy\/([^/]+)(\/.*)?$/);
|
||||
if (!match) return new Response('Not found', { status: 404 });
|
||||
|
||||
const proxyId = match[1]!;
|
||||
const entry = findEntryByProxyId(proxyId);
|
||||
if (!entry) return new Response('No dev server running', { status: 404 });
|
||||
|
||||
const wsToken = url.searchParams.get('token');
|
||||
if (!wsToken) return new Response('Unauthorized', { status: 401 });
|
||||
|
||||
touchEntry(entry);
|
||||
|
||||
const wsProxyPath = match[2] || '/';
|
||||
const ok = server.upgrade(req, {
|
||||
data: {
|
||||
userId: 0,
|
||||
email: '',
|
||||
provider: 'dev-server' as const,
|
||||
devServerPort: entry.port,
|
||||
devServerSlug: proxyId,
|
||||
wsProxyPath,
|
||||
wsToken,
|
||||
},
|
||||
});
|
||||
if (!ok) return new Response('Upgrade failed', { status: 500 });
|
||||
}
|
||||
|
||||
const server = serve({
|
||||
port: Number(PORT),
|
||||
idleTimeout: 60,
|
||||
@@ -312,10 +200,6 @@ const server = serve({
|
||||
const file = Bun.file(`public${new URL(req.url).pathname}`);
|
||||
return new Response(file);
|
||||
},
|
||||
'/api/dev-server-proxy/*': (req, server) => {
|
||||
if (req.headers.get('upgrade') === 'websocket') return upgradeDevServerWs(req, server);
|
||||
return honoServer.fetch(req, server);
|
||||
},
|
||||
// Vaultwarden notifications hub: upgrade the WebSocket here (proxied to upstream by vaultWebsocket);
|
||||
// everything else on this path (SignalR long-poll negotiate/poll) falls through to the HTTP proxy.
|
||||
'/api/vault/notifications/*': (req, server) => {
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
// Injected into proxied HTML to intercept fetch/XHR/WebSocket so absolute paths
|
||||
// go through the proxy instead of hitting the host server directly.
|
||||
// Also injects JWT auth headers from localStorage for authenticated requests.
|
||||
export const proxyOverrideScript = (base: string) =>
|
||||
`<script>(function(){` +
|
||||
`var b=${JSON.stringify(base)},o=location.origin;` +
|
||||
`function gt(){try{return localStorage.getItem("BEARER_TOKEN")||localStorage.getItem("PERTENTO_EDITOR_AUTH_TOKEN")}catch(e){return null}}` +
|
||||
`function rw(u){` +
|
||||
`if(typeof u==="string"){` +
|
||||
`if(u.startsWith("/")&&!u.startsWith("//")&&!u.startsWith(b))return b+u;` +
|
||||
`if(u.startsWith(o+"/")&&!u.startsWith(o+b))return o+b+u.slice(o.length);` +
|
||||
`return u}` +
|
||||
`if(u instanceof URL&&u.origin===o&&!u.pathname.startsWith(b))` +
|
||||
`return new URL(o+b+u.pathname+u.search+u.hash);` +
|
||||
`if(u instanceof Request){var p=new URL(u.url);` +
|
||||
`if(p.origin===o&&!p.pathname.startsWith(b))` +
|
||||
`return new Request(o+b+p.pathname+p.search+p.hash,u)}` +
|
||||
`return u}` +
|
||||
`var F=window.fetch;window.fetch=function(i,n){` +
|
||||
`var t=gt();if(t){n=n||{};var h=new Headers(n.headers||{});` +
|
||||
`if(!h.has("Authorization"))h.set("Authorization","Bearer "+t);n.headers=h}` +
|
||||
`return F.call(this,rw(i),n)};` +
|
||||
`var XO=XMLHttpRequest.prototype.open,XS=XMLHttpRequest.prototype.send;` +
|
||||
`XMLHttpRequest.prototype.open=function(){arguments[1]=rw(arguments[1]);this._authSet=false;return XO.apply(this,arguments)};` +
|
||||
`XMLHttpRequest.prototype.send=function(d){` +
|
||||
`if(!this._authSet){var t=gt();if(t)try{this.setRequestHeader("Authorization","Bearer "+t)}catch(e){}}` +
|
||||
`return XS.call(this,d)};` +
|
||||
`var NWS=window.WebSocket;window.WebSocket=function(u,p){` +
|
||||
`if(typeof u==="string"&&(u.startsWith("ws://"+location.host)||u.startsWith("wss://"+location.host)||u.startsWith("/"))){` +
|
||||
`var t=gt();if(t){var sep=u.indexOf("?")>-1?"&":"?";u=u+sep+"token="+encodeURIComponent(t)}}` +
|
||||
`return p!==undefined?new NWS(u,p):new NWS(u)};` +
|
||||
`window.WebSocket.prototype=NWS.prototype;window.WebSocket.CONNECTING=NWS.CONNECTING;` +
|
||||
`window.WebSocket.OPEN=NWS.OPEN;window.WebSocket.CLOSING=NWS.CLOSING;window.WebSocket.CLOSED=NWS.CLOSED;` +
|
||||
`})()</script>`;
|
||||
|
||||
// HTML: rewrite src/href/action attributes with absolute paths + inject fetch/XHR override
|
||||
export const rewriteHtml = (html: string, base: string) =>
|
||||
html
|
||||
.replace(/<head([^>]*)>/i, `<head$1>${proxyOverrideScript(base)}`)
|
||||
.replace(/(href|src|action)="\/(?!\/)/g, `$1="${base}/`)
|
||||
.replace(/(href|src|action)='\/(?!\/)/g, `$1='${base}/`)
|
||||
.replace(/url\(\//g, `url(${base}/`);
|
||||
|
||||
// JS/CSS: only rewrite /_bun/ asset paths (Bun dev server specific)
|
||||
export const rewriteAssetPaths = (text: string, base: string) =>
|
||||
text.replace(/\/_bun\//g, `${base}/_bun/`);
|
||||
@@ -1,2 +0,0 @@
|
||||
export { appsRouter, appServeRouter } from './router';
|
||||
export type { AppManifest } from './router';
|
||||
@@ -1,298 +0,0 @@
|
||||
import type { Context } from 'hono';
|
||||
import { join } from 'node:path';
|
||||
import { existsSync } from 'node:fs';
|
||||
import { readdir, cp, rm, mkdir } from 'node:fs/promises';
|
||||
import { createRouter } from '@@/create-router';
|
||||
import type { HonoVariables } from '@@/create-router';
|
||||
import { getUserAppsDir, getUserProjectsDir } from '@@/data-path';
|
||||
import * as errors from '@@/custom-errors';
|
||||
import { verify } from '@@/jwt';
|
||||
import { isTokenBlacklisted } from 'officerdb';
|
||||
import { rewriteHtml, rewriteAssetPaths } from '../_shared/html-rewrite';
|
||||
|
||||
export type AppManifest = {
|
||||
slug: string;
|
||||
name: string;
|
||||
version: string;
|
||||
icon: string;
|
||||
description: string;
|
||||
sourceProject: string;
|
||||
commitHash: string;
|
||||
publishedAt: string;
|
||||
buildDir: string;
|
||||
};
|
||||
|
||||
// ── Protected routes (inside protectedRouter) ──
|
||||
|
||||
export const appsRouter = createRouter();
|
||||
|
||||
appsRouter.get('/', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const appsDir = getUserAppsDir(user.email);
|
||||
|
||||
if (!existsSync(appsDir)) return ctx.json({ apps: [] });
|
||||
|
||||
const entries = await readdir(appsDir, { withFileTypes: true });
|
||||
const apps: AppManifest[] = [];
|
||||
|
||||
for (const entry of entries) {
|
||||
if (!entry.isDirectory()) continue;
|
||||
const manifestPath = join(appsDir, entry.name, 'manifest.json');
|
||||
if (!existsSync(manifestPath)) continue;
|
||||
try {
|
||||
const manifest = JSON.parse(await Bun.file(manifestPath).text()) as AppManifest;
|
||||
apps.push(manifest);
|
||||
} catch {
|
||||
// skip malformed manifests
|
||||
}
|
||||
}
|
||||
|
||||
return ctx.json({ apps });
|
||||
});
|
||||
|
||||
appsRouter.post('/publish', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const body = ctx.get('body') as { projectSlug: string; name?: string; icon?: string; description?: string };
|
||||
const { projectSlug, name, icon, description } = body;
|
||||
|
||||
if (!projectSlug) throw errors.BAD_REQUEST('Missing projectSlug');
|
||||
|
||||
const projectDir = join(getUserProjectsDir(user.email), projectSlug);
|
||||
if (!existsSync(projectDir)) throw errors.BAD_REQUEST(`Project not found: ${projectSlug}`);
|
||||
|
||||
const pkgPath = join(projectDir, 'package.json');
|
||||
if (!existsSync(pkgPath)) throw errors.BAD_REQUEST('No package.json found in project');
|
||||
|
||||
let pkgJson: { name?: string; version?: string; scripts?: Record<string, string> };
|
||||
try {
|
||||
pkgJson = JSON.parse(await Bun.file(pkgPath).text());
|
||||
} catch {
|
||||
throw errors.BAD_REQUEST('Failed to read package.json');
|
||||
}
|
||||
|
||||
if (!pkgJson.scripts?.build) throw errors.BAD_REQUEST('No "build" script in package.json');
|
||||
|
||||
const version = pkgJson.version ?? '0.1.0';
|
||||
const appSlug = projectSlug;
|
||||
const appName = name ?? pkgJson.name ?? projectSlug;
|
||||
|
||||
// Read .officerdev/meta.json for fallback description
|
||||
let metaDescription = '';
|
||||
const metaPath = join(projectDir, '.officerdev', 'meta.json');
|
||||
if (existsSync(metaPath)) {
|
||||
try {
|
||||
const meta = JSON.parse(await Bun.file(metaPath).text());
|
||||
metaDescription = meta.description ?? '';
|
||||
} catch {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
// Get git commit hash
|
||||
let commitHash = 'unknown';
|
||||
try {
|
||||
const proc = Bun.spawn(['git', 'rev-parse', '--short', 'HEAD'], { cwd: projectDir, stdout: 'pipe', stderr: 'pipe' });
|
||||
await proc.exited;
|
||||
if (proc.exitCode === 0) {
|
||||
commitHash = (await new Response(proc.stdout).text()).trim();
|
||||
}
|
||||
} catch {
|
||||
// no git — that's fine
|
||||
}
|
||||
|
||||
// Run build
|
||||
const buildProc = Bun.spawn(['bun', 'run', 'build'], {
|
||||
cwd: projectDir,
|
||||
stdout: 'pipe',
|
||||
stderr: 'pipe',
|
||||
env: { ...process.env, NODE_ENV: 'production' },
|
||||
});
|
||||
|
||||
const buildTimeout = setTimeout(() => buildProc.kill(), 60_000);
|
||||
const exitCode = await buildProc.exited;
|
||||
clearTimeout(buildTimeout);
|
||||
|
||||
if (exitCode !== 0) {
|
||||
const stderr = await new Response(buildProc.stderr).text();
|
||||
throw errors.BAD_REQUEST(`Build failed (exit ${exitCode}):\n${stderr.slice(-500)}`);
|
||||
}
|
||||
|
||||
// Verify dist output
|
||||
const distDir = join(projectDir, 'dist');
|
||||
if (!existsSync(distDir)) throw errors.BAD_REQUEST('Build did not produce a dist/ directory');
|
||||
|
||||
const distFiles = await readdir(distDir);
|
||||
const hasHtml = distFiles.some((f) => f.endsWith('.html'));
|
||||
if (!hasHtml) throw errors.BAD_REQUEST('Build output has no HTML files');
|
||||
|
||||
// Copy to versioned directory
|
||||
const appsDir = getUserAppsDir(user.email);
|
||||
const appDir = join(appsDir, appSlug);
|
||||
const versionDir = join(appDir, 'v', version);
|
||||
|
||||
await mkdir(versionDir, { recursive: true });
|
||||
await cp(distDir, versionDir, { recursive: true });
|
||||
|
||||
// Write manifest
|
||||
const manifest: AppManifest = {
|
||||
slug: appSlug,
|
||||
name: appName,
|
||||
version,
|
||||
icon: icon ?? 'Box',
|
||||
description: description ?? metaDescription,
|
||||
sourceProject: projectSlug,
|
||||
commitHash,
|
||||
publishedAt: new Date().toISOString(),
|
||||
buildDir: `v/${version}`,
|
||||
};
|
||||
|
||||
await Bun.write(join(appDir, 'manifest.json'), JSON.stringify(manifest, null, 2));
|
||||
|
||||
return ctx.json(manifest);
|
||||
});
|
||||
|
||||
appsRouter.delete('/:slug', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const slug = ctx.req.param('slug');
|
||||
if (!slug) throw errors.BAD_REQUEST('Missing slug');
|
||||
|
||||
const appDir = join(getUserAppsDir(user.email), slug);
|
||||
if (!existsSync(appDir)) throw errors.NOT_FOUND('App not found');
|
||||
|
||||
await rm(appDir, { recursive: true, force: true });
|
||||
return ctx.json({ ok: true });
|
||||
});
|
||||
|
||||
// ── Static serving (outside protectedRouter) ──
|
||||
|
||||
export const appServeRouter = createRouter();
|
||||
|
||||
const MIME_TYPES: Record<string, string> = {
|
||||
'.html': 'text/html; charset=utf-8',
|
||||
'.js': 'application/javascript; charset=utf-8',
|
||||
'.mjs': 'application/javascript; charset=utf-8',
|
||||
'.css': 'text/css; charset=utf-8',
|
||||
'.json': 'application/json; charset=utf-8',
|
||||
'.svg': 'image/svg+xml',
|
||||
'.png': 'image/png',
|
||||
'.jpg': 'image/jpeg',
|
||||
'.jpeg': 'image/jpeg',
|
||||
'.gif': 'image/gif',
|
||||
'.ico': 'image/x-icon',
|
||||
'.webp': 'image/webp',
|
||||
'.woff': 'font/woff',
|
||||
'.woff2': 'font/woff2',
|
||||
'.ttf': 'font/ttf',
|
||||
'.eot': 'application/vnd.ms-fontobject',
|
||||
'.map': 'application/json',
|
||||
};
|
||||
|
||||
const getMimeType = (filePath: string): string => {
|
||||
const ext = filePath.slice(filePath.lastIndexOf('.'));
|
||||
return MIME_TYPES[ext] ?? 'application/octet-stream';
|
||||
};
|
||||
|
||||
type ValidateResult = { email: string } | null;
|
||||
|
||||
async function validateToken(req: Request): Promise<ValidateResult> {
|
||||
const authHeader = req.headers.get('authorization');
|
||||
const token = authHeader?.startsWith('Bearer ') ? authHeader.slice(7) : new URL(req.url).searchParams.get('token');
|
||||
if (!token) return null;
|
||||
try {
|
||||
const payload = await verify(token);
|
||||
if (!payload?.email) return null;
|
||||
if (payload.jti && (await isTokenBlacklisted(payload.jti))) return null;
|
||||
return { email: payload.email };
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
appServeRouter.all('/:slug/*', async (ctx) => {
|
||||
const slug = ctx.req.param('slug');
|
||||
if (!slug) return ctx.text('Not found', 404);
|
||||
|
||||
// Validate auth — HTML requests require token, assets check referer
|
||||
const pathname = new URL(ctx.req.url).pathname;
|
||||
const isHtml =
|
||||
ctx.req.header('accept')?.includes('text/html') ||
|
||||
pathname.endsWith('.html') ||
|
||||
!pathname.slice(pathname.lastIndexOf('/') + 1).includes('.');
|
||||
|
||||
const validated = await validateToken(ctx.req.raw);
|
||||
|
||||
if (!validated) {
|
||||
// For non-HTML assets, try referer-based resolution
|
||||
if (!isHtml) {
|
||||
const referer = ctx.req.header('referer');
|
||||
if (referer) {
|
||||
const match = referer.match(/\/api\/app-serve\/([^/?]+)/);
|
||||
if (match) {
|
||||
// Extract token from referer URL if present
|
||||
try {
|
||||
const refUrl = new URL(referer);
|
||||
const refToken = refUrl.searchParams.get('token');
|
||||
if (refToken) {
|
||||
const payload = await verify(refToken);
|
||||
if (payload?.email) {
|
||||
if (!payload.jti || !(await isTokenBlacklisted(payload.jti))) {
|
||||
return serveFile(ctx, payload.email, slug);
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
// fall through
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return ctx.text('Unauthorized', 401);
|
||||
}
|
||||
|
||||
return serveFile(ctx, validated.email, slug);
|
||||
});
|
||||
|
||||
async function serveFile(ctx: Context<{ Variables: HonoVariables }>, email: string, slug: string) {
|
||||
const appDir = join(getUserAppsDir(email), slug);
|
||||
const manifestPath = join(appDir, 'manifest.json');
|
||||
|
||||
if (!existsSync(manifestPath)) return ctx.text('App not found', 404);
|
||||
|
||||
let manifest: AppManifest;
|
||||
try {
|
||||
manifest = JSON.parse(await Bun.file(manifestPath).text());
|
||||
} catch {
|
||||
return ctx.text('Invalid manifest', 500);
|
||||
}
|
||||
|
||||
const buildDir = join(appDir, manifest.buildDir);
|
||||
const prefix = `/api/app-serve/${slug}`;
|
||||
|
||||
const url = new URL(ctx.req.url);
|
||||
let filePath = url.pathname.replace(prefix, '') || '/';
|
||||
if (filePath === '/') filePath = '/index.html';
|
||||
|
||||
const fullPath = join(buildDir, filePath);
|
||||
|
||||
// Security: prevent directory traversal
|
||||
if (!fullPath.startsWith(buildDir)) return ctx.text('Forbidden', 403);
|
||||
|
||||
// If file doesn't exist, serve index.html for SPA routing
|
||||
const targetPath = existsSync(fullPath) ? fullPath : join(buildDir, 'index.html');
|
||||
if (!existsSync(targetPath)) return ctx.text('Not found', 404);
|
||||
|
||||
const file = Bun.file(targetPath);
|
||||
const mimeType = getMimeType(targetPath);
|
||||
const needsRewrite =
|
||||
mimeType.includes('text/html') || mimeType.includes('javascript') || mimeType.includes('text/css');
|
||||
|
||||
if (needsRewrite) {
|
||||
const content = await file.text();
|
||||
const rewritten = mimeType.includes('text/html')
|
||||
? rewriteHtml(content, prefix)
|
||||
: rewriteAssetPaths(content, prefix);
|
||||
return new Response(rewritten, { headers: { 'content-type': mimeType } });
|
||||
}
|
||||
|
||||
return new Response(file, { headers: { 'content-type': mimeType } });
|
||||
}
|
||||
@@ -1,314 +0,0 @@
|
||||
import type { Subprocess } from 'bun';
|
||||
import { join } from 'node:path';
|
||||
import { existsSync } from 'node:fs';
|
||||
import { createServer } from 'node:net';
|
||||
import { createRouter } from '@@/create-router';
|
||||
import { getUserProjectsDir } from '@@/data-path';
|
||||
import { CustomError } from '@@/custom-errors';
|
||||
import * as errors from '@@/custom-errors';
|
||||
import { verify } from '@@/jwt';
|
||||
import { isTokenBlacklisted } from 'officerdb';
|
||||
import { rewriteHtml, rewriteAssetPaths } from '../_shared/html-rewrite';
|
||||
|
||||
export const devServerRouter = createRouter();
|
||||
export const devServerProxyRouter = createRouter();
|
||||
|
||||
export type ServerEntry = { proc: Subprocess; port: number; slug: string; proxyId: string; logs: string[]; idleTimer: Timer | null };
|
||||
|
||||
const IDLE_TIMEOUT_MS = 5 * 60 * 1000;
|
||||
|
||||
const servers = new Map<string, ServerEntry>();
|
||||
const proxyIdIndex = new Map<string, ServerEntry>();
|
||||
const pendingStarts = new Set<string>();
|
||||
|
||||
const serverKey = (email: string, slug: string) => `${email}:${slug}`;
|
||||
|
||||
export const findEntryByProxyId = (proxyId: string): ServerEntry | undefined => proxyIdIndex.get(proxyId);
|
||||
|
||||
export const touchEntry = (entry: ServerEntry) => {
|
||||
if (entry.idleTimer) clearTimeout(entry.idleTimer);
|
||||
entry.idleTimer = setTimeout(() => {
|
||||
console.log(`[dev-server] ${entry.slug} idle for 5m, stopping`);
|
||||
entry.proc.kill();
|
||||
}, IDLE_TIMEOUT_MS);
|
||||
};
|
||||
|
||||
const killEntry = (entry: ServerEntry, key: string) => {
|
||||
if (entry.idleTimer) clearTimeout(entry.idleTimer);
|
||||
entry.proc.kill();
|
||||
proxyIdIndex.delete(entry.proxyId);
|
||||
servers.delete(key);
|
||||
};
|
||||
|
||||
const findFreePort = (): Promise<number> =>
|
||||
new Promise((resolve, reject) => {
|
||||
const server = createServer();
|
||||
server.listen(0, '127.0.0.1', () => {
|
||||
const addr = server.address();
|
||||
const port = typeof addr === 'object' && addr ? addr.port : 0;
|
||||
server.close(() => resolve(port));
|
||||
});
|
||||
server.on('error', reject);
|
||||
});
|
||||
|
||||
const collectLogs = (entry: ServerEntry, stream: ReadableStream<Uint8Array> | null, prefix: string) => {
|
||||
if (!stream) return;
|
||||
const reader = stream.getReader();
|
||||
const decoder = new TextDecoder();
|
||||
const pump = async () => {
|
||||
while (true) {
|
||||
const { done, value } = await reader.read();
|
||||
if (done) break;
|
||||
const text = decoder.decode(value, { stream: true });
|
||||
for (const line of text.split('\n').filter(Boolean)) {
|
||||
entry.logs.push(`[${prefix}] ${line}`);
|
||||
if (entry.logs.length > 200) entry.logs.shift();
|
||||
}
|
||||
}
|
||||
};
|
||||
pump().catch(() => {});
|
||||
};
|
||||
|
||||
const waitForPort = async (port: number, timeoutMs = 8000) => {
|
||||
const start = Date.now();
|
||||
while (Date.now() - start < timeoutMs) {
|
||||
try {
|
||||
const res = await fetch(`http://localhost:${port}`, { signal: AbortSignal.timeout(500) });
|
||||
await res.arrayBuffer();
|
||||
return true;
|
||||
} catch {
|
||||
await Bun.sleep(300);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
devServerRouter.post('/start', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const { slug } = ctx.get('body') as { slug: string };
|
||||
|
||||
if (!slug) throw errors.BAD_REQUEST('Missing slug');
|
||||
|
||||
const key = serverKey(user.email, slug);
|
||||
|
||||
const existing = servers.get(key);
|
||||
if (existing) {
|
||||
touchEntry(existing);
|
||||
return ctx.json({ url: `/api/dev-server-proxy/${existing.proxyId}/`, port: existing.port });
|
||||
}
|
||||
|
||||
if (pendingStarts.has(key)) throw errors.BAD_REQUEST('Server is already starting');
|
||||
pendingStarts.add(key);
|
||||
|
||||
try {
|
||||
const projectDir = join(getUserProjectsDir(user.email), slug);
|
||||
if (!existsSync(projectDir)) throw errors.BAD_REQUEST(`Project directory not found: ${slug}`);
|
||||
|
||||
const pkgPath = join(projectDir, 'package.json');
|
||||
if (!existsSync(pkgPath)) throw errors.BAD_REQUEST('No package.json found in project');
|
||||
try {
|
||||
const pkg = JSON.parse(await Bun.file(pkgPath).text());
|
||||
if (!pkg.scripts?.dev) throw errors.BAD_REQUEST('No "dev" script in package.json');
|
||||
} catch (err) {
|
||||
if (err instanceof CustomError) throw err;
|
||||
throw errors.BAD_REQUEST('Failed to read package.json');
|
||||
}
|
||||
|
||||
const port = await findFreePort();
|
||||
const proxyId = crypto.randomUUID();
|
||||
|
||||
const proc = Bun.spawn(['bun', 'dev'], {
|
||||
cwd: projectDir,
|
||||
env: { ...process.env, PORT: String(port) },
|
||||
stdout: 'pipe',
|
||||
stderr: 'pipe',
|
||||
});
|
||||
console.log(`[dev-server] started ${slug} on port ${port} (pid ${proc.pid}) proxyId=${proxyId}`);
|
||||
|
||||
const entry: ServerEntry = { proc, port, slug, proxyId, logs: [], idleTimer: null };
|
||||
servers.set(key, entry);
|
||||
proxyIdIndex.set(proxyId, entry);
|
||||
touchEntry(entry);
|
||||
|
||||
collectLogs(entry, proc.stdout, 'stdout');
|
||||
collectLogs(entry, proc.stderr, 'stderr');
|
||||
|
||||
proc.exited.then((code) => {
|
||||
console.log(`[dev-server] ${slug} exited with code ${code}`);
|
||||
entry.logs.push(`[system] Process exited with code ${code}`);
|
||||
if (entry.idleTimer) clearTimeout(entry.idleTimer);
|
||||
proxyIdIndex.delete(entry.proxyId);
|
||||
servers.delete(key);
|
||||
});
|
||||
|
||||
const ready = await waitForPort(port);
|
||||
if (!ready) {
|
||||
const exitCode = proc.exitCode;
|
||||
if (exitCode !== null) {
|
||||
if (entry.idleTimer) clearTimeout(entry.idleTimer);
|
||||
proxyIdIndex.delete(entry.proxyId);
|
||||
servers.delete(key);
|
||||
throw errors.BAD_REQUEST(`Dev server exited with code ${exitCode}. Logs:\n${entry.logs.slice(-20).join('\n')}`);
|
||||
}
|
||||
}
|
||||
|
||||
return ctx.json({ url: `/api/dev-server-proxy/${proxyId}/`, port });
|
||||
} finally {
|
||||
pendingStarts.delete(key);
|
||||
}
|
||||
});
|
||||
|
||||
devServerRouter.post('/stop', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const { slug } = ctx.get('body') as { slug: string };
|
||||
|
||||
if (!slug) throw errors.BAD_REQUEST('Missing slug');
|
||||
|
||||
const key = serverKey(user.email, slug);
|
||||
const entry = servers.get(key);
|
||||
|
||||
if (entry) killEntry(entry, key);
|
||||
|
||||
return ctx.json({ ok: true });
|
||||
});
|
||||
|
||||
devServerRouter.get('/status', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const slug = ctx.req.query('slug');
|
||||
|
||||
if (!slug) throw errors.BAD_REQUEST('Missing slug');
|
||||
|
||||
const key = serverKey(user.email, slug);
|
||||
const entry = servers.get(key);
|
||||
|
||||
if (entry) {
|
||||
return ctx.json({ running: true, url: `/api/dev-server-proxy/${entry.proxyId}/`, port: entry.port });
|
||||
}
|
||||
|
||||
return ctx.json({ running: false });
|
||||
});
|
||||
|
||||
devServerRouter.get('/logs', async (ctx) => {
|
||||
const user = ctx.get('user');
|
||||
const slug = ctx.req.query('slug');
|
||||
|
||||
if (!slug) throw errors.BAD_REQUEST('Missing slug');
|
||||
|
||||
const key = serverKey(user.email, slug);
|
||||
const entry = servers.get(key);
|
||||
|
||||
if (!entry) return ctx.json({ logs: [] });
|
||||
|
||||
return ctx.json({ logs: entry.logs.slice(-100) });
|
||||
});
|
||||
|
||||
// Proxy router — mounted outside protected router (no auth needed for sub-resources).
|
||||
// Security: only proxies to ports that were started via authenticated /start calls.
|
||||
|
||||
type ProxyParams = { entry: ServerEntry; proxyId: string; proxyPath: string; search: string; method: string; rawReq: Request };
|
||||
|
||||
async function proxyRequest({ entry, proxyId, proxyPath, search, method, rawReq }: ProxyParams): Promise<Response> {
|
||||
const prefix = `/api/dev-server-proxy/${proxyId}`;
|
||||
const targetUrl = `http://localhost:${entry.port}${proxyPath}${search}`;
|
||||
|
||||
touchEntry(entry);
|
||||
|
||||
try {
|
||||
const headers = new Headers(rawReq.headers);
|
||||
headers.delete('host');
|
||||
headers.delete('authorization');
|
||||
|
||||
const res = await fetch(targetUrl, {
|
||||
method,
|
||||
headers,
|
||||
body: method !== 'GET' && method !== 'HEAD' ? rawReq.body : undefined,
|
||||
redirect: 'manual',
|
||||
});
|
||||
|
||||
const contentType = res.headers.get('content-type') ?? '';
|
||||
const needsRewrite =
|
||||
contentType.includes('text/html') ||
|
||||
contentType.includes('javascript') ||
|
||||
contentType.includes('text/css');
|
||||
|
||||
if (needsRewrite) {
|
||||
const text = await res.text();
|
||||
const rewritten = contentType.includes('text/html')
|
||||
? rewriteHtml(text, prefix)
|
||||
: rewriteAssetPaths(text, prefix);
|
||||
const newHeaders = new Headers(res.headers);
|
||||
newHeaders.delete('content-length');
|
||||
newHeaders.delete('content-encoding');
|
||||
return new Response(rewritten, { status: res.status, headers: newHeaders });
|
||||
}
|
||||
|
||||
return new Response(res.body, { status: res.status, headers: res.headers });
|
||||
} catch {
|
||||
return new Response('Dev server not reachable', { status: 502 });
|
||||
}
|
||||
}
|
||||
|
||||
const isLikelyHtmlRequest = (req: Request): boolean => {
|
||||
const accept = req.headers.get('accept') ?? '';
|
||||
return accept.includes('text/html');
|
||||
};
|
||||
|
||||
const stripTokenParam = (search: string): string => {
|
||||
if (!search) return search;
|
||||
const params = new URLSearchParams(search);
|
||||
params.delete('token');
|
||||
const result = params.toString();
|
||||
return result ? `?${result}` : '';
|
||||
};
|
||||
|
||||
async function validateJwt(req: Request): Promise<boolean> {
|
||||
const authHeader = req.headers.get('authorization');
|
||||
const token = authHeader?.startsWith('Bearer ') ? authHeader.slice(7) : new URL(req.url).searchParams.get('token');
|
||||
if (!token) return false;
|
||||
try {
|
||||
const payload = await verify(token);
|
||||
if (!payload) return false;
|
||||
if (payload.jti && await isTokenBlacklisted(payload.jti)) return false;
|
||||
return true;
|
||||
} catch {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Proxy handler: tries proxyId from URL first, falls back to Referer for misrouted
|
||||
// chunk requests caused by relative imports resolving at wrong path depth.
|
||||
devServerProxyRouter.all('/:proxyId/*', async (ctx) => {
|
||||
const proxyId = ctx.req.param('proxyId');
|
||||
if (!proxyId) return ctx.text('Not found', 404);
|
||||
|
||||
const originalUrl = new URL(ctx.req.url);
|
||||
const entry = proxyIdIndex.get(proxyId);
|
||||
if (entry) {
|
||||
if (isLikelyHtmlRequest(ctx.req.raw)) {
|
||||
const valid = await validateJwt(ctx.req.raw);
|
||||
if (!valid) return ctx.text('Unauthorized', 401);
|
||||
}
|
||||
const prefix = `/api/dev-server-proxy/${proxyId}`;
|
||||
const proxyPath = originalUrl.pathname.replace(prefix, '') || '/';
|
||||
const search = stripTokenParam(originalUrl.search);
|
||||
return proxyRequest({ entry, proxyId, proxyPath, search, method: ctx.req.method, rawReq: ctx.req.raw });
|
||||
}
|
||||
|
||||
// proxyId didn't match — check Referer for the real proxyId
|
||||
const referer = ctx.req.header('referer');
|
||||
if (referer) {
|
||||
const match = referer.match(/\/api\/dev-server-proxy\/([^/]+)/);
|
||||
if (match) {
|
||||
const realProxyId = match[1]!;
|
||||
const realEntry = proxyIdIndex.get(realProxyId);
|
||||
if (realEntry) {
|
||||
const proxyPath = originalUrl.pathname.replace('/api/dev-server-proxy', '') || '/';
|
||||
const search = stripTokenParam(originalUrl.search);
|
||||
return proxyRequest({ entry: realEntry, proxyId: realProxyId, proxyPath, search, method: ctx.req.method, rawReq: ctx.req.raw });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return ctx.text('No dev server running', 404);
|
||||
});
|
||||
|
||||
@@ -35,8 +35,6 @@ export const getOwnerHomeDir = (email: string): string => process.env.HOME_DIR ?
|
||||
|
||||
export const getUserPiConfigDir = (email: string) => join(DATA_PATH, email, 'home', '.pi', 'agent');
|
||||
|
||||
export const getUserProjectsDir = (email: string) => join(DATA_PATH, email, 'home', 'Projects');
|
||||
|
||||
export const getTmpAttachmentsDir = (email: string) => join(DATA_PATH, email, 'attachments', 'tmp');
|
||||
|
||||
export const getAttachmentsDir = (email: string, sessionId: string) => join(DATA_PATH, email, 'attachments', sessionId);
|
||||
@@ -61,5 +59,3 @@ export const toShellUsername = (username: string, email: string): string => {
|
||||
.slice(0, 32) || 'officer'
|
||||
);
|
||||
};
|
||||
|
||||
export const getUserAppsDir = (email: string) => join(DATA_PATH, email, 'apps');
|
||||
|
||||
@@ -35,7 +35,6 @@ import './api/slskd/sidecar-server'; // side-effect: capture the officer-slskd r
|
||||
import './api/headscale/sidecar-server'; // side-effect: capture the officer-headscale server port
|
||||
import './api/transmission/sidecar-server'; // side-effect: capture the officer-transmission server port
|
||||
import './api/invoiceshelf/sidecar-server'; // side-effect: capture the officer-invoiceshelf server port
|
||||
import { devServerRouter, devServerProxyRouter } from './api/dev-server/router';
|
||||
import { dockRouter } from './api/dock/dock';
|
||||
import { integrationsRouter, googleCallbackHandler } from './api/integrations/integrations';
|
||||
import { queueRouter } from './api/queue/queue';
|
||||
@@ -43,7 +42,6 @@ import { emailRouter } from './api/email/email';
|
||||
import { channelsRouter } from './channels/routes';
|
||||
import { browserRouter } from './api/browser/router';
|
||||
import { desktopRouter } from './api/desktop/rest';
|
||||
import { appsRouter, appServeRouter } from './api/apps';
|
||||
import { bugReportRouter } from './api/bug-report/bug-report';
|
||||
import { chatRouter } from './api/chat/chat';
|
||||
import { pipelineJobsRouter } from './api/tasks/pipeline-jobs-routes';
|
||||
@@ -80,8 +78,6 @@ honoServer.get('/api', (ctx) => ctx.json({ officerAPI: 'ok' }));
|
||||
honoServer.route('/api/auth', authRouter);
|
||||
honoServer.route('/api/landing-page-data', landingPageDataRouter);
|
||||
honoServer.route('/api/waitlist', waitlistRouter);
|
||||
honoServer.route('/api/dev-server-proxy', devServerProxyRouter);
|
||||
honoServer.route('/api/app-serve', appServeRouter);
|
||||
// Vaultwarden reverse-proxy — mounted TOP-LEVEL (not under protectedRouter): the Bitwarden client
|
||||
// carries its own bearer token, not a platform session JWT, so userMiddleware would 401 it. Origin
|
||||
// gating still applies via originScopeMiddleware above (OFFICER_VAULT_ORIGIN → /api/vault). The
|
||||
@@ -124,14 +120,12 @@ protectedRouter.route('/wallet', walletRouter);
|
||||
protectedRouter.route('/vpn', vpnRouter);
|
||||
protectedRouter.route('/system-monitor', systemMonitorRouter);
|
||||
protectedRouter.route('/activity', activityRouter);
|
||||
protectedRouter.route('/dev-server', devServerRouter);
|
||||
protectedRouter.route('/dock', dockRouter);
|
||||
protectedRouter.route('/integrations', integrationsRouter);
|
||||
protectedRouter.route('/queue', queueRouter);
|
||||
protectedRouter.route('/email', emailRouter);
|
||||
protectedRouter.route('/channels', channelsRouter);
|
||||
protectedRouter.route('/browser', browserRouter);
|
||||
protectedRouter.route('/apps', appsRouter);
|
||||
protectedRouter.route('/bug-report', bugReportRouter);
|
||||
protectedRouter.route('/chat', chatRouter);
|
||||
protectedRouter.route('/pipeline-jobs', pipelineJobsRouter);
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { useEffect, useRef } from 'react';
|
||||
import { appRegistryMetas as fileBrowserMetas } from '../apps/FileBrowser';
|
||||
import { appRegistryMetas as terminalMetas } from '../apps/Terminal';
|
||||
import { appRegistryMetas as codeEditorMetas } from '../apps/CodeEditor';
|
||||
@@ -6,7 +5,6 @@ import { appRegistryMetas as chatMetas } from '../apps/Chat';
|
||||
import { appRegistryMetas as fileViewerMetas } from '../apps/FileViewer';
|
||||
import { appRegistryMetas as dashboardMetas } from '../apps/Dashboards';
|
||||
import { appRegistryMetas as chatHistoryMetas } from '../apps/ChatHistory';
|
||||
import { appRegistryMetas as previewMetas } from '../apps/Preview';
|
||||
import { appRegistryMetas as widgetMetas } from '../apps/Widgets';
|
||||
import { appRegistryMetas as desktopMetas } from '../apps/Desktop';
|
||||
import { appRegistryMetas as musicMetas } from '../apps/Music';
|
||||
@@ -17,10 +15,6 @@ import { appRegistryMetas as invoicesMetas } from '../apps/Invoices';
|
||||
import { appRegistryMetas as walletMetas } from '../apps/Wallet';
|
||||
import { appRegistryMetas as monitorMetas } from '../apps/SystemMonitor';
|
||||
import { useAppRegistry } from './useAppRegistry';
|
||||
import { useUserApps } from 'state/useUserApps';
|
||||
import { createUserAppPanel } from '../apps/UserApp/UserAppPanel';
|
||||
import { createUserAppHeader } from '../apps/UserApp/UserAppHeader';
|
||||
import { resolveIcon } from '../utils/resolve-icon';
|
||||
|
||||
const apps = [
|
||||
...fileBrowserMetas,
|
||||
@@ -30,7 +24,6 @@ const apps = [
|
||||
...fileViewerMetas,
|
||||
...dashboardMetas,
|
||||
...chatHistoryMetas,
|
||||
...previewMetas,
|
||||
...widgetMetas,
|
||||
...desktopMetas,
|
||||
...musicMetas,
|
||||
@@ -43,26 +36,6 @@ const apps = [
|
||||
];
|
||||
|
||||
export const AppRegistry = () => {
|
||||
const { registerApp } = useAppRegistry(apps);
|
||||
const { apps: userApps, email } = useUserApps();
|
||||
const registeredRef = useRef(new Set<string>());
|
||||
|
||||
useEffect(() => {
|
||||
if (!email || userApps.length === 0) return;
|
||||
|
||||
for (const app of userApps) {
|
||||
const key = `${email}/${app.slug}`;
|
||||
if (registeredRef.current.has(key)) continue;
|
||||
registeredRef.current.add(key);
|
||||
|
||||
registerApp(key, {
|
||||
name: app.name,
|
||||
icon: resolveIcon(app.icon),
|
||||
component: createUserAppPanel(app.slug),
|
||||
header: createUserAppHeader(app.name, resolveIcon(app.icon)),
|
||||
});
|
||||
}
|
||||
}, [userApps, email, registerApp]);
|
||||
|
||||
useAppRegistry(apps);
|
||||
return null;
|
||||
};
|
||||
|
||||
@@ -1,69 +0,0 @@
|
||||
import { Loader2, FolderKanban } from 'lucide-react';
|
||||
import { usePreview } from './PreviewContext';
|
||||
|
||||
export const PreviewApp = () => {
|
||||
const { slug, cwdSlug, url, loading, error, iframeKey, projects, startServer, setSelectedSlug, clearError } =
|
||||
usePreview();
|
||||
|
||||
if (!slug) {
|
||||
if (projects.length === 0) {
|
||||
return (
|
||||
<div className="flex h-full w-full items-center justify-center text-duck-dark/30 text-sm">
|
||||
No projects found
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="flex h-full w-full flex-col items-center justify-center gap-3">
|
||||
<FolderKanban className="h-6 w-6 text-duck-dark/30" />
|
||||
<span className="text-sm text-duck-dark/40">Select a project to preview</span>
|
||||
<div className="flex flex-col gap-1 w-48">
|
||||
{projects.map((p) => (
|
||||
<button
|
||||
key={p.id}
|
||||
onClick={() => setSelectedSlug(p.id)}
|
||||
className="rounded px-3 py-1.5 text-xs text-left hover:bg-duck-dark/10 transition-colors cursor-pointer"
|
||||
>
|
||||
{p.name}
|
||||
</button>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div className="flex h-full w-full flex-col items-center justify-center gap-2 text-duck-dark/50 text-sm">
|
||||
<Loader2 className="h-5 w-5 animate-spin" />
|
||||
<span>Starting dev server...</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (error) {
|
||||
return (
|
||||
<div className="flex h-full w-full flex-col items-center justify-center gap-2 text-sm">
|
||||
<span className="text-red-500 px-4 text-center">{error}</span>
|
||||
<div className="flex gap-2">
|
||||
<button
|
||||
onClick={() => startServer(slug)}
|
||||
className="rounded px-3 py-1 text-xs bg-duck-dark/10 hover:bg-duck-dark/20 cursor-pointer"
|
||||
>
|
||||
Retry
|
||||
</button>
|
||||
{!cwdSlug && (
|
||||
<button onClick={clearError} className="rounded px-3 py-1 text-xs bg-duck-dark/10 hover:bg-duck-dark/20 cursor-pointer">
|
||||
Back
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (!url) return null;
|
||||
|
||||
return <iframe key={iframeKey} src={url} className="h-full w-full border-none" title="Preview" />;
|
||||
};
|
||||
@@ -1,28 +0,0 @@
|
||||
import { createContext, useContext } from 'react';
|
||||
import type { ProjectDefinition } from '../../components/Workspace';
|
||||
|
||||
export type PreviewContextValue = {
|
||||
slug: string | null;
|
||||
cwdSlug: string | null;
|
||||
url: string | null;
|
||||
port: number | null;
|
||||
loading: boolean;
|
||||
error: string | null;
|
||||
stopped: boolean;
|
||||
iframeKey: number;
|
||||
projects: ProjectDefinition[];
|
||||
startServer: (slug: string) => void;
|
||||
stopServer: () => void;
|
||||
restartServer: () => void;
|
||||
refresh: () => void;
|
||||
setSelectedSlug: (slug: string | null) => void;
|
||||
clearError: () => void;
|
||||
};
|
||||
|
||||
export const PreviewContext = createContext<PreviewContextValue | null>(null);
|
||||
|
||||
export const usePreview = () => {
|
||||
const ctx = useContext(PreviewContext);
|
||||
if (!ctx) throw new Error('usePreview must be used within PreviewProvider');
|
||||
return ctx;
|
||||
};
|
||||
@@ -1,45 +0,0 @@
|
||||
import { Globe, RefreshCw, Square, Play } from 'lucide-react';
|
||||
import { usePreview } from './PreviewContext';
|
||||
|
||||
export const PreviewHeader = () => {
|
||||
const { slug, url, port, stopped, stopServer, restartServer } = usePreview();
|
||||
|
||||
return (
|
||||
<>
|
||||
<Globe className="h-3.5 w-3.5 text-duck-teal shrink-0" />
|
||||
<span className="text-xs font-medium shrink-0">Preview</span>
|
||||
{url && (
|
||||
<>
|
||||
<button
|
||||
type="button"
|
||||
onClick={restartServer}
|
||||
className="p-0.5 rounded hover:bg-black/10 transition-colors cursor-pointer shrink-0"
|
||||
title="Refresh"
|
||||
>
|
||||
<RefreshCw className="h-3 w-3" />
|
||||
</button>
|
||||
<span className="text-[10px] font-mono truncate opacity-60">{slug}</span>
|
||||
{port && <span className="text-[10px] font-mono opacity-40 shrink-0">:{port}</span>}
|
||||
<button
|
||||
type="button"
|
||||
onClick={stopServer}
|
||||
className="p-0.5 rounded hover:bg-black/10 transition-colors cursor-pointer shrink-0"
|
||||
title="Stop server"
|
||||
>
|
||||
<Square className="h-3 w-3" />
|
||||
</button>
|
||||
</>
|
||||
)}
|
||||
{!url && stopped && slug && (
|
||||
<button
|
||||
type="button"
|
||||
onClick={restartServer}
|
||||
className="p-0.5 rounded hover:bg-black/10 transition-colors cursor-pointer shrink-0"
|
||||
title="Start server"
|
||||
>
|
||||
<Play className="h-3 w-3" />
|
||||
</button>
|
||||
)}
|
||||
</>
|
||||
);
|
||||
};
|
||||
@@ -1,164 +0,0 @@
|
||||
import { useState, useEffect, useCallback } from 'react';
|
||||
import type { ReactNode } from 'react';
|
||||
import { useClient } from 'hooks/useClient';
|
||||
import { useAuth } from 'hooks/useAuth';
|
||||
import { usePanelChannel } from 'hooks/usePanelChannel';
|
||||
import { useWorkspace } from '../../components/Workspace';
|
||||
import type { ProjectDefinition } from '../../components/Workspace';
|
||||
import { useDashboardState } from 'state/useDashboardState';
|
||||
import { PreviewContext } from './PreviewContext';
|
||||
|
||||
type DevServerResponse = { url: string; port: number };
|
||||
type DevServerStatus = { running: boolean; url?: string; port?: number };
|
||||
|
||||
type PreviewProviderProps = { panelId: string; children: ReactNode };
|
||||
|
||||
export const PreviewProvider = ({ panelId, children }: PreviewProviderProps) => {
|
||||
const { cwd } = useWorkspace();
|
||||
const client = useClient();
|
||||
const { user } = useAuth();
|
||||
const { value: projects } = useDashboardState<ProjectDefinition[]>('projects', []);
|
||||
const [selectedSlug, setSelectedSlug] = useState<string | null>(null);
|
||||
const [url, setUrl] = useState<string | null>(null);
|
||||
const [port, setPort] = useState<number | null>(null);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
const [iframeKey, setIframeKey] = useState(0);
|
||||
const [stopped, setStopped] = useState(false);
|
||||
|
||||
const cwdSlug = extractSlug(cwd);
|
||||
const slug = cwdSlug ?? selectedSlug;
|
||||
|
||||
const startServer = useCallback(
|
||||
async (targetSlug: string) => {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
setStopped(false);
|
||||
try {
|
||||
const res = await client.post<DevServerResponse>('/dev-server/start', { slug: targetSlug });
|
||||
const token = client.token;
|
||||
setUrl(token ? `${res.url}?token=${encodeURIComponent(token)}` : res.url);
|
||||
setPort(res.port);
|
||||
} catch (err: unknown) {
|
||||
const msg =
|
||||
err && typeof err === 'object' && 'message' in err ? String(err.message) : 'Failed to start dev server';
|
||||
setError(msg);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
},
|
||||
[client],
|
||||
);
|
||||
|
||||
const stopServer = useCallback(async () => {
|
||||
if (!slug) return;
|
||||
try {
|
||||
await client.post('/dev-server/stop', { slug });
|
||||
} catch {
|
||||
// ignore
|
||||
}
|
||||
setUrl(null);
|
||||
setPort(null);
|
||||
setStopped(true);
|
||||
}, [slug, client]);
|
||||
|
||||
const restartServer = useCallback(async () => {
|
||||
if (!slug) return;
|
||||
try {
|
||||
await client.post('/dev-server/stop', { slug });
|
||||
} catch {
|
||||
// ignore — server may not be running
|
||||
}
|
||||
startServer(slug);
|
||||
}, [slug, client, startServer]);
|
||||
|
||||
const refresh = useCallback(() => setIframeKey((k) => k + 1), []);
|
||||
|
||||
const clearError = useCallback(() => {
|
||||
setError(null);
|
||||
setSelectedSlug(null);
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
if (!slug) return;
|
||||
setUrl(null);
|
||||
setPort(null);
|
||||
setError(null);
|
||||
|
||||
let cancelled = false;
|
||||
const check = async () => {
|
||||
try {
|
||||
const status = await client.get<DevServerStatus>(`/dev-server/status?slug=${encodeURIComponent(slug)}`);
|
||||
if (cancelled) return;
|
||||
if (status.running && status.url) {
|
||||
const token = client.token;
|
||||
setUrl(token ? `${status.url}?token=${encodeURIComponent(token)}` : status.url);
|
||||
setPort(status.port ?? null);
|
||||
} else {
|
||||
startServer(slug);
|
||||
}
|
||||
} catch {
|
||||
if (!cancelled) startServer(slug);
|
||||
}
|
||||
};
|
||||
check();
|
||||
|
||||
return () => {
|
||||
cancelled = true;
|
||||
};
|
||||
}, [slug]);
|
||||
|
||||
// Poll status while a server is supposedly running — auto-restart if it died (e.g. idle timeout)
|
||||
useEffect(() => {
|
||||
if (!slug || !url) return;
|
||||
|
||||
const interval = setInterval(async () => {
|
||||
try {
|
||||
const status = await client.get<DevServerStatus>(`/dev-server/status?slug=${encodeURIComponent(slug)}`);
|
||||
if (!status.running) {
|
||||
startServer(slug);
|
||||
}
|
||||
} catch {
|
||||
// ignore transient failures
|
||||
}
|
||||
}, 30_000);
|
||||
|
||||
return () => clearInterval(interval);
|
||||
}, [slug, url]);
|
||||
|
||||
// Listen for preview:refresh signal from chat panel (triggers after tool-call turns)
|
||||
const [refreshSignal] = usePanelChannel<number>('preview:refresh', 0);
|
||||
useEffect(() => {
|
||||
if (refreshSignal && slug && url) restartServer();
|
||||
}, [refreshSignal]);
|
||||
|
||||
return (
|
||||
<PreviewContext
|
||||
value={{
|
||||
slug,
|
||||
cwdSlug,
|
||||
url,
|
||||
port,
|
||||
loading,
|
||||
error,
|
||||
stopped,
|
||||
iframeKey,
|
||||
projects,
|
||||
startServer,
|
||||
stopServer,
|
||||
restartServer,
|
||||
refresh,
|
||||
setSelectedSlug,
|
||||
clearError,
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</PreviewContext>
|
||||
);
|
||||
};
|
||||
|
||||
const extractSlug = (cwd: string): string | null => {
|
||||
if (!cwd || cwd === '~') return null;
|
||||
const match = cwd.match(/^\/Projects\/(.+?)(?:\/|$)/);
|
||||
return match?.[1] ?? null;
|
||||
};
|
||||
@@ -1,16 +0,0 @@
|
||||
import type { AppRegistryMeta } from '../../AppRegistry';
|
||||
import { Globe } from 'lucide-react';
|
||||
import { PreviewApp } from './PreviewApp';
|
||||
import { PreviewHeader } from './PreviewHeader';
|
||||
import { PreviewProvider } from './PreviewProvider';
|
||||
|
||||
export const appRegistryMetas: AppRegistryMeta[] = [
|
||||
{
|
||||
key: 'officerdev/preview',
|
||||
name: 'Preview',
|
||||
icon: Globe,
|
||||
component: PreviewApp,
|
||||
header: PreviewHeader,
|
||||
provider: PreviewProvider,
|
||||
},
|
||||
];
|
||||
@@ -1,31 +0,0 @@
|
||||
import type { ComponentType } from 'react';
|
||||
import type { LucideIcon } from 'lucide-react';
|
||||
import { RefreshCw } from 'lucide-react';
|
||||
import { useGlobal } from 'hooks/useGlobal';
|
||||
|
||||
type UserAppHeaderProps = { panelId: string };
|
||||
|
||||
export const createUserAppHeader = (name: string, Icon: LucideIcon): ComponentType<UserAppHeaderProps> => {
|
||||
const UserAppHeader = ({ panelId }: UserAppHeaderProps) => {
|
||||
const iframeRefreshKey = `USER_APP_REFRESH_${panelId}`;
|
||||
const [, setRefresh] = useGlobal<number>(iframeRefreshKey, 0);
|
||||
|
||||
return (
|
||||
<>
|
||||
<Icon className="h-3.5 w-3.5 text-duck-teal shrink-0" />
|
||||
<span className="text-xs font-medium shrink-0">{name}</span>
|
||||
<button
|
||||
type="button"
|
||||
onClick={() => setRefresh((k) => k + 1)}
|
||||
className="p-0.5 rounded hover:bg-black/10 transition-colors cursor-pointer shrink-0"
|
||||
title="Refresh"
|
||||
>
|
||||
<RefreshCw className="h-3 w-3" />
|
||||
</button>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
UserAppHeader.displayName = `UserAppHeader(${name})`;
|
||||
return UserAppHeader;
|
||||
};
|
||||
@@ -1,41 +0,0 @@
|
||||
import type { ComponentType } from 'react';
|
||||
import { useState, useCallback } from 'react';
|
||||
import { Loader2 } from 'lucide-react';
|
||||
import { useClient } from 'hooks/useClient';
|
||||
|
||||
type UserAppPanelProps = { panelId: string };
|
||||
|
||||
export const createUserAppPanel = (slug: string): ComponentType<UserAppPanelProps> => {
|
||||
const UserAppPanel = ({ panelId }: UserAppPanelProps) => {
|
||||
const client = useClient();
|
||||
const [iframeKey, setIframeKey] = useState(0);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
const token = client.token;
|
||||
const src = token
|
||||
? `/api/app-serve/${slug}/?token=${encodeURIComponent(token)}`
|
||||
: `/api/app-serve/${slug}/`;
|
||||
|
||||
const handleLoad = useCallback(() => setLoading(false), []);
|
||||
|
||||
return (
|
||||
<div className="relative h-full w-full">
|
||||
{loading && (
|
||||
<div className="absolute inset-0 flex items-center justify-center text-duck-dark/50">
|
||||
<Loader2 className="h-5 w-5 animate-spin" />
|
||||
</div>
|
||||
)}
|
||||
<iframe
|
||||
key={iframeKey}
|
||||
src={src}
|
||||
className="h-full w-full border-none"
|
||||
title={slug}
|
||||
onLoad={handleLoad}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
UserAppPanel.displayName = `UserAppPanel(${slug})`;
|
||||
return UserAppPanel;
|
||||
};
|
||||
@@ -1,2 +0,0 @@
|
||||
export { createUserAppPanel } from './UserAppPanel';
|
||||
export { createUserAppHeader } from './UserAppHeader';
|
||||
@@ -1,6 +1,29 @@
|
||||
export type { LayoutNode, LayoutGroup, LayoutPanel, DashboardDefinition, DashboardState, ProjectType, ProjectDefinition, AppRegistryMap, AppRegistryEntry, PanelComponents, PanelComponentEntry, EphemeralPanels, HomeRoot } from './types';
|
||||
export type {
|
||||
LayoutNode,
|
||||
LayoutGroup,
|
||||
LayoutPanel,
|
||||
DashboardDefinition,
|
||||
DashboardState,
|
||||
AppRegistryMap,
|
||||
AppRegistryEntry,
|
||||
PanelComponents,
|
||||
PanelComponentEntry,
|
||||
EphemeralPanels,
|
||||
HomeRoot,
|
||||
} from './types';
|
||||
export type { DropPosition } from './layout-utils';
|
||||
export { createDefaultLayout, splitPanel, removePanel, setApp, updateSizes, swapPanels, movePanel, pruneEmptyPanels, countPanels, hasAnyApp } from './layout-utils';
|
||||
export {
|
||||
createDefaultLayout,
|
||||
splitPanel,
|
||||
removePanel,
|
||||
setApp,
|
||||
updateSizes,
|
||||
swapPanels,
|
||||
movePanel,
|
||||
pruneEmptyPanels,
|
||||
countPanels,
|
||||
hasAnyApp,
|
||||
} from './layout-utils';
|
||||
export type { DefaultFileSort } from './WorkspaceContext';
|
||||
export { WorkspaceProvider, useWorkspace } from './WorkspaceContext';
|
||||
export { WorkspaceView } from './WorkspaceView';
|
||||
|
||||
@@ -35,20 +35,6 @@ export type DashboardState = {
|
||||
isLoaded: boolean;
|
||||
};
|
||||
|
||||
export type ProjectType = 'landing-page' | 'website' | 'app';
|
||||
|
||||
export type ProjectDefinition = {
|
||||
id: string;
|
||||
name: string;
|
||||
cwd: string;
|
||||
description?: string;
|
||||
projectType: ProjectType;
|
||||
hasBackend?: boolean;
|
||||
hasAuth?: boolean;
|
||||
gitRepo?: string;
|
||||
templateIdx?: number;
|
||||
};
|
||||
|
||||
export type AppRegistryEntry = {
|
||||
name: string;
|
||||
icon: LucideIcon;
|
||||
|
||||
@@ -86,7 +86,6 @@ export {
|
||||
NEW_DASH_DESC_KEY,
|
||||
NEW_DASH_TEMPLATE_KEY,
|
||||
} from './apps/Dashboards';
|
||||
export { createUserAppPanel, createUserAppHeader } from './apps/UserApp';
|
||||
export { resolveIcon, availableIconNames } from './utils/resolve-icon';
|
||||
|
||||
// Workspace
|
||||
@@ -109,8 +108,6 @@ export type {
|
||||
LayoutPanel,
|
||||
DashboardDefinition,
|
||||
DashboardState,
|
||||
ProjectType,
|
||||
ProjectDefinition,
|
||||
AppRegistryMap,
|
||||
AppRegistryEntry,
|
||||
PanelComponents,
|
||||
|
||||
@@ -11,7 +11,5 @@ export { useRecentModels } from './useRecentModels';
|
||||
export { usePlans } from './usePlans';
|
||||
export { useLandingPage } from './useLandingPage';
|
||||
export { useServerSettings } from './useServerSettings';
|
||||
export { useUserApps } from './useUserApps';
|
||||
export type { AppManifest } from './useUserApps';
|
||||
export { useServerEnvironment } from './useServerEnvironment';
|
||||
export type { ServerEnvironment } from './useServerEnvironment';
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
import { useAuth } from 'hooks/useAuth';
|
||||
import { useClient } from 'hooks/useClient';
|
||||
import { useQuery, useQueryClient } from '@tanstack/react-query';
|
||||
|
||||
export type AppManifest = {
|
||||
slug: string;
|
||||
name: string;
|
||||
version: string;
|
||||
icon: string;
|
||||
description: string;
|
||||
sourceProject: string;
|
||||
commitHash: string;
|
||||
publishedAt: string;
|
||||
buildDir: string;
|
||||
};
|
||||
|
||||
const QUERY_KEY = ['USER_APPS'] as const;
|
||||
|
||||
export function useUserApps() {
|
||||
const client = useClient();
|
||||
const queryClient = useQueryClient();
|
||||
const { user, isAuthenticated } = useAuth();
|
||||
|
||||
const { data: apps = [], isLoading } = useQuery<AppManifest[]>({
|
||||
queryKey: QUERY_KEY,
|
||||
enabled: isAuthenticated,
|
||||
queryFn: () => client.get<{ apps: AppManifest[] }>('/apps').then((r) => r.apps),
|
||||
staleTime: 30_000,
|
||||
});
|
||||
|
||||
const refetch = () => queryClient.invalidateQueries({ queryKey: QUERY_KEY });
|
||||
|
||||
return { apps, isLoading, refetch, email: user?.email ?? '' };
|
||||
}
|
||||
Reference in New Issue
Block a user