Spaces:
Running
Running
File size: 13,015 Bytes
3e8ea5d 6825c0c 4d6d6c8 3e8ea5d 4d6d6c8 5599c48 3e8ea5d 9d44811 3e8ea5d 9d44811 3e8ea5d 9d44811 3e8ea5d 6825c0c 4d6d6c8 6825c0c 4d6d6c8 6825c0c 4d6d6c8 6825c0c 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 6825c0c 4d6d6c8 6825c0c 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d 6825c0c 4d6d6c8 6825c0c 4d6d6c8 3e8ea5d 6825c0c 5599c48 6825c0c 4d6d6c8 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | #!/usr/bin/env node
import { spawnSync } from 'node:child_process';
import { randomUUID } from 'node:crypto';
import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs';
import { tmpdir } from 'node:os';
import { join } from 'node:path';
import { setTimeout as delay } from 'node:timers/promises';
import { fetchJsonWithTimeout, parseJsonPayload, runCommandStrict } from './command-center-utils.mjs';
import { assertKnownOptions, HF_SPACE_ID, HF_SPACE_URL, isMainModule } from './hf-space-doctor-utils.mjs';
const STATUS_POLL_ATTEMPTS = 40;
const STATUS_POLL_INTERVAL_MS = 10_000;
const PUBLIC_ENDPOINT_TIMEOUT_MS = 10_000;
const HF_CLI_TIMEOUT_MS = 120_000;
const DEPLOY_MARKER_REPO_PATH = 'public/hf-space-deploy-marker.json';
const DEPLOY_MARKER_API_ROUTE_PATH = 'src/app/api/deploy-marker/route.ts';
const DEPLOY_MARKER_SERVICE_PATH = '/api/deploy-marker';
export const GIT_ARCHIVE_MAX_BUFFER_BYTES = 256 * 1024 * 1024;
function parseArgs(argv) {
assertKnownOptions(argv, ['--help', '-h']);
return {
help: argv.includes('--help') || argv.includes('-h')
};
}
function printHelp() {
console.log(`Usage:
npm run deploy:hf-space
Deploys the current clean git HEAD to ${HF_SPACE_ID} with the official hf CLI.
The script uploads a temporary git archive, waits for the Space to run the new
Space commit, and performs read-only public endpoint checks.`);
}
function runText(command, args, options = {}) {
return runCommandStrict(command, args, {
input: options.input,
timeoutMs: options.timeoutMs || HF_CLI_TIMEOUT_MS
}).trim();
}
function readRepositorySlug() {
const envSlug = process.env.REPO_SLUG?.trim();
if (envSlug) return envSlug;
try {
return parseRepositorySlug(runText('git', ['remote', 'get-url', 'origin']));
} catch (error) {
throw new Error(
`Unable to detect repository slug from git origin. Set REPO_SLUG=owner/repo. ${error instanceof Error ? error.message : String(error)}`
);
}
}
export function parseRepositorySlug(remoteUrl) {
const text = String(remoteUrl || '').trim();
const httpsMatch = text.match(/^https:\/\/github\.com\/([^/\s]+)\/([^/\s]+?)(?:\.git)?$/);
if (httpsMatch) return `${httpsMatch[1]}/${httpsMatch[2]}`;
const sshMatch = text.match(/^git@github\.com:([^/\s]+)\/([^/\s]+?)(?:\.git)?$/);
if (sshMatch) return `${sshMatch[1]}/${sshMatch[2]}`;
throw new Error('Unable to detect repository slug from git origin URL. Set REPO_SLUG=owner/repo.');
}
function runBinary(command, args) {
const result = spawnSync(command, args, {
encoding: 'buffer',
maxBuffer: GIT_ARCHIVE_MAX_BUFFER_BYTES,
stdio: ['ignore', 'pipe', 'pipe']
});
if (result.error) throw new Error(`${command} ${args.join(' ')} failed: ${result.error.message}`);
if (result.status !== 0) {
const output = result.stderr.toString('utf8').trim();
throw new Error(output || `${command} ${args.join(' ')} failed`);
}
return result.stdout;
}
function assertCleanGitWorktree() {
const status = runText('git', ['status', '--porcelain']);
if (status) {
throw new Error('Refusing to deploy a dirty worktree. Commit or revert local changes first.');
}
}
function prepareSourceTree() {
const sourceDir = mkdtempSync(join(tmpdir(), 'gpt-image-hf-space-'));
const archive = runBinary('git', ['archive', '--format=tar', 'HEAD']);
runText('tar', ['-x', '-C', sourceDir], { input: archive });
return sourceDir;
}
export function extractUploadCommitSha(output) {
const payload = parseJsonPayload(output, 'hf upload');
const directSha = [payload.sha, payload.commit, payload.commitSha, payload.commit_sha].find((value) =>
/^[0-9a-f]{40}$/.test(String(value || ''))
);
if (directSha) return directSha;
const match = String(payload.url || '').match(/\/commit\/([0-9a-f]{40})$/);
if (!match) throw new Error('hf upload output did not include a Space commit SHA or commit URL.');
return match[1];
}
export function buildUploadArgs({ sourceDir, localSha, repoSlug, deletePaths = [] }) {
if (!repoSlug?.trim()) throw new Error('REPO_SLUG is required for deploy metadata.');
const args = [
'upload',
HF_SPACE_ID,
sourceDir,
'.',
'--repo-type',
'space',
'--commit-message',
`Deploy ${localSha.slice(0, 7)} to Docker Space`,
'--commit-description',
`Source: ${repoSlug}@${localSha}`,
'--json'
];
for (const deletePath of deletePaths) {
if (!deletePath?.trim() || deletePath.includes('\n') || deletePath.includes('\r')) {
throw new Error('deletePaths must contain non-empty single-line repository paths.');
}
args.push('--delete', deletePath);
}
return args;
}
function readLocalGitFiles() {
const output = runText('git', ['-c', 'core.quotePath=false', 'ls-tree', '-r', '-z', '--name-only', 'HEAD']);
return new Set(output.split('\0').filter(Boolean));
}
function readRemoteFilePaths() {
const info = readSpaceInfo();
return (info.siblings || []).map((sibling) => sibling.rfilename).filter((filename) => typeof filename === 'string' && filename.length > 0);
}
export function findRemoteDeletePaths(localFiles, remoteFiles) {
return [...remoteFiles].filter((filename) => !localFiles.has(filename)).sort();
}
export function buildDeployMarker(localSha, createdAt = new Date(), deployId = randomUUID()) {
if (!/^[0-9a-f]{40}$/.test(String(localSha || ''))) throw new Error('localSha must be a full git commit SHA.');
if (typeof deployId !== 'string' || !deployId.trim() || /[\r\n]/.test(deployId)) {
throw new Error('deployId must be a non-empty single-line string.');
}
return {
schema_version: 1,
local_sha: localSha,
created_at: createdAt.toISOString(),
deploy_id: deployId
};
}
export function assertDeployMarkerMatches(marker, expectedMarker) {
if (!marker || typeof marker !== 'object') throw new Error('deploy marker response was not an object.');
if (marker?.schema_version !== expectedMarker.schema_version) throw new Error('deploy marker schema_version mismatch.');
if (marker.local_sha !== expectedMarker.local_sha) {
throw new Error(`deploy marker local_sha mismatch: expected ${expectedMarker.local_sha}, received ${marker.local_sha || 'missing'}.`);
}
if (marker.created_at !== expectedMarker.created_at) {
throw new Error(`deploy marker created_at mismatch: expected ${expectedMarker.created_at}, received ${marker.created_at || 'missing'}.`);
}
if (marker.deploy_id !== expectedMarker.deploy_id) {
throw new Error(`deploy marker deploy_id mismatch: expected ${expectedMarker.deploy_id}, received ${marker.deploy_id || 'missing'}.`);
}
return marker;
}
export function buildDeployMarkerRouteSource(marker) {
const markerJson = JSON.stringify(marker);
return `import { NextResponse } from 'next/server';
const deployMarker = ${markerJson} as const;
export const dynamic = 'force-dynamic';
export function GET() {
return NextResponse.json(deployMarker, {
headers: {
'Cache-Control': 'no-store'
}
});
}
`;
}
function writeDeployMarker(sourceDir, marker) {
const markerPath = join(sourceDir, DEPLOY_MARKER_REPO_PATH);
const routePath = join(sourceDir, DEPLOY_MARKER_API_ROUTE_PATH);
mkdirSync(join(sourceDir, 'public'), { recursive: true });
mkdirSync(join(sourceDir, 'src', 'app', 'api', 'deploy-marker'), { recursive: true });
writeFileSync(markerPath, `${JSON.stringify(marker, null, 2)}\n`, 'utf8');
writeFileSync(routePath, buildDeployMarkerRouteSource(marker), 'utf8');
}
function readLocalGitFilesWithDeployMarker() {
const files = readLocalGitFiles();
files.add(DEPLOY_MARKER_REPO_PATH);
files.add(DEPLOY_MARKER_API_ROUTE_PATH);
return files;
}
function uploadSourceTree(sourceDir, deployMarker) {
writeDeployMarker(sourceDir, deployMarker);
const deletePaths = findRemoteDeletePaths(readLocalGitFilesWithDeployMarker(), readRemoteFilePaths());
const output = runText('hf', buildUploadArgs({ sourceDir, localSha: deployMarker.local_sha, repoSlug: readRepositorySlug(), deletePaths }));
return extractUploadCommitSha(output);
}
function readSpaceInfo() {
const output = runText('hf', ['spaces', 'info', HF_SPACE_ID, '--format', 'json']);
return parseJsonPayload(output, 'hf spaces info');
}
export async function waitForRunning(spaceCommitSha, deployMarker, options = {}) {
const attempts = options.attempts || STATUS_POLL_ATTEMPTS;
const intervalMs = options.intervalMs ?? STATUS_POLL_INTERVAL_MS;
const readInfo = options.readInfo || readSpaceInfo;
const verifyMarker = options.verifyMarker || verifyDeployMarker;
const sleep = options.sleep || delay;
const log = options.log || console.log;
let lastStage = 'unknown';
let lastSha = 'unknown';
let lastMarkerError = 'unknown';
for (let attempt = 1; attempt <= attempts; attempt += 1) {
const info = readInfo();
lastStage = info.runtime?.stage || 'unknown';
lastSha = info.sha || info.runtime?.raw?.sha || 'unknown';
log(`attempt=${attempt} stage=${lastStage} sha=${lastSha}`);
if (lastStage === 'RUNNING' && lastSha === spaceCommitSha) {
try {
const marker = await verifyMarker(deployMarker);
return { stage: lastStage, sha: lastSha, service_marker_verified: true, marker };
} catch (error) {
lastMarkerError = error instanceof Error ? error.message : String(error);
log(`attempt=${attempt} marker_status=not_ready error=${lastMarkerError}`);
}
}
await sleep(intervalMs);
}
const marker = await verifyMarker(deployMarker);
return {
stage: lastStage,
sha: lastSha,
management_status: 'runtime_stage_not_running',
service_marker_verified: true,
warning: `Space did not reach RUNNING with a matching service marker for ${spaceCommitSha}; last stage=${lastStage} sha=${lastSha} marker_error=${lastMarkerError}`,
marker
};
}
async function fetchJson(path) {
return fetchJsonWithTimeout(new URL(path, HF_SPACE_URL), { timeoutMs: PUBLIC_ENDPOINT_TIMEOUT_MS });
}
async function verifyDeployMarker(expectedMarker) {
const marker = await fetchJson(`${DEPLOY_MARKER_SERVICE_PATH}?t=${Date.now()}`);
return assertDeployMarkerMatches(marker, expectedMarker);
}
async function verifyPublicEndpoints() {
const authStatus = await fetchJson('/api/auth-status');
const capabilities = await fetchJson('/api/agent/capabilities');
const runtime = await fetchJson('/api/runtime-capabilities');
if (authStatus.passwordRequired !== true) {
throw new Error('/api/auth-status did not report passwordRequired=true.');
}
if (capabilities.defaults?.state_backend !== 'memory') {
throw new Error('/api/agent/capabilities did not report state_backend=memory.');
}
if (capabilities.storage?.image_storage_mode !== 'indexeddb') {
throw new Error('/api/agent/capabilities did not report image_storage_mode=indexeddb.');
}
return {
passwordRequired: authStatus.passwordRequired,
agentAuth: capabilities.auth,
stateBackend: capabilities.defaults.state_backend,
imageStorageMode: capabilities.storage.image_storage_mode,
streamingBatch: runtime.streamingBatch
};
}
async function deploy() {
assertCleanGitWorktree();
runText('hf', ['auth', 'whoami']);
const localSha = runText('git', ['rev-parse', 'HEAD']);
const deployMarker = buildDeployMarker(localSha);
const sourceDir = prepareSourceTree();
try {
const spaceCommitSha = uploadSourceTree(sourceDir, deployMarker);
const runtime = await waitForRunning(spaceCommitSha, deployMarker);
const verification = await verifyPublicEndpoints();
console.log(
JSON.stringify(
{
ok: true,
spaceId: HF_SPACE_ID,
spaceUrl: HF_SPACE_URL,
localSha,
spaceCommitSha,
runtime,
verification
},
null,
2
)
);
} finally {
rmSync(sourceDir, { force: true, recursive: true });
}
}
async function main() {
const options = parseArgs(process.argv.slice(2));
if (options.help) {
printHelp();
return;
}
await deploy();
}
if (isMainModule(import.meta.url, process.argv[1])) {
main().catch((error) => {
console.error(JSON.stringify({ ok: false, error: error instanceof Error ? error.message : String(error) }, null, 2));
process.exit(1);
});
}
|