Spaces:
Running
Running
File size: 18,775 Bytes
3e8ea5d 76bde47 3e8ea5d 6825c0c e344055 3e8ea5d 4d6d6c8 5599c48 96bdf6c 805101e 3e8ea5d e344055 3e8ea5d 76bde47 3e8ea5d 76bde47 3e8ea5d e344055 76bde47 e344055 3e8ea5d e344055 76bde47 3e8ea5d 96bdf6c 76bde47 9d44811 3e8ea5d 9d44811 3e8ea5d 9d44811 e344055 9d44811 76bde47 9d44811 3e8ea5d 6825c0c 4d6d6c8 6825c0c 4d6d6c8 6825c0c 4d6d6c8 6825c0c 76bde47 6825c0c 76bde47 6825c0c 76bde47 6825c0c 76bde47 6825c0c 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 5599c48 4d6d6c8 e344055 6825c0c 76bde47 96bdf6c e344055 96bdf6c 3e8ea5d a76e03b 6825c0c 3e8ea5d 6825c0c a76e03b 6825c0c a76e03b ecb6084 a76e03b 3e8ea5d 6825c0c 3e8ea5d 6825c0c 3e8ea5d ecb6084 3e8ea5d 6825c0c 4d6d6c8 ecb6084 4d6d6c8 ecb6084 4d6d6c8 3e8ea5d 6825c0c 5599c48 6825c0c 4d6d6c8 3e8ea5d e344055 6825c0c e344055 3e8ea5d e344055 6825c0c 3e8ea5d 96bdf6c 3e8ea5d 76bde47 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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 | #!/usr/bin/env node
import { fetchJsonWithTimeout, parseJsonPayload, runCommandStrict } from './command-center-utils.mjs';
import { assertKnownOptions, HF_SPACE_ID, HF_SPACE_URL, isMainModule } from './hf-space-doctor-utils.mjs';
import { spawnSync } from 'node:child_process';
import { randomUUID } from 'node:crypto';
import { cpSync, mkdirSync, mkdtempSync, readdirSync, readFileSync, rmSync, writeFileSync } from 'node:fs';
import { tmpdir } from 'node:os';
import { join } from 'node:path';
import { setTimeout as delay } from 'node:timers/promises';
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';
const HF_SPACE_GIT_REMOTE_URL = `https://huggingface.co/spaces/${HF_SPACE_ID}`;
export const GIT_DEPLOY_AUTHOR_NAME = 'Visual Journal deploy';
export const GIT_DEPLOY_AUTHOR_EMAIL = 'deploy@visual-journal.local';
export const GIT_ARCHIVE_MAX_BUFFER_BYTES = 256 * 1024 * 1024;
const SPACE_DEPLOY_EXCLUDED_PATH_PREFIXES = ['readme-images/'];
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}.
Existing Docker Spaces use an authenticated Git push. Other Space types try the
official hf CLI first. The script waits for the Space to run the new 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.');
}
}
export function isSpaceDeployPath(filePath) {
const normalized = String(filePath || '')
.replaceAll('\\', '/')
.replace(/^\.\//, '');
return (
normalized.length > 0 && !SPACE_DEPLOY_EXCLUDED_PATH_PREFIXES.some((prefix) => normalized.startsWith(prefix))
);
}
export function rewriteSpaceReadmeImageSources(readme, repoSlug, localSha) {
if (!repoSlug?.trim()) throw new Error('repoSlug is required when rewriting Space README image sources.');
if (!/^[0-9a-f]{40}$/.test(String(localSha || ''))) {
throw new Error('localSha must be a full git commit SHA when rewriting Space README image sources.');
}
return String(readme).replace(/(['"])(?:\.\/)?(readme-images\/[^'"]+)\1/g, (_, quote, imagePath) => {
return `${quote}https://raw.githubusercontent.com/${repoSlug}/${localSha}/${imagePath}${quote}`;
});
}
function prepareSourceTree(repoSlug, localSha) {
const sourceDir = mkdtempSync(join(tmpdir(), 'gpt-image-hf-space-'));
const archive = runBinary('git', ['archive', '--format=tar', 'HEAD']);
runText('tar', ['-x', '-C', sourceDir], { input: archive });
rmSync(join(sourceDir, 'readme-images'), { force: true, recursive: true });
const readmePath = join(sourceDir, 'README.md');
writeFileSync(
readmePath,
rewriteSpaceReadmeImageSources(readFileSync(readmePath, 'utf8'), repoSlug, localSha),
'utf8'
);
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 isHfUploadExistingSpacePolicyError(error) {
const message = error instanceof Error ? error.message : String(error || '');
return (
/\b402 Payment Required\b/i.test(message) &&
/huggingface\.co\/api\/repos\/create/i.test(message) &&
/Docker Spaces?.*(?:PRO|subscription)/is.test(message)
);
}
export function shouldUseGitPushForSpace(spaceInfo) {
return spaceInfo?.sdk === 'docker';
}
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(isSpaceDeployPath));
}
function readRemoteFilePaths(info) {
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, repoSlug) {
writeDeployMarker(sourceDir, deployMarker);
const remoteSpace = readSpaceInfo();
const deletePaths = findRemoteDeletePaths(readLocalGitFilesWithDeployMarker(), readRemoteFilePaths(remoteSpace));
if (shouldUseGitPushForSpace(remoteSpace)) {
console.log('Deploying the existing Docker Space via an authenticated Git push.');
return {
spaceCommitSha: uploadSourceTreeWithGit(sourceDir, deployMarker),
transport: 'git_push_existing_docker_space'
};
}
try {
const output = runText(
'hf',
buildUploadArgs({ sourceDir, localSha: deployMarker.local_sha, repoSlug, deletePaths })
);
return { spaceCommitSha: extractUploadCommitSha(output), transport: 'hf_upload' };
} catch (error) {
if (!isHfUploadExistingSpacePolicyError(error)) throw error;
console.warn(
'hf upload was blocked by the existing Docker Space create policy; falling back to an authenticated Git push.'
);
return { spaceCommitSha: uploadSourceTreeWithGit(sourceDir, deployMarker), transport: 'git_push_fallback' };
}
}
function uploadSourceTreeWithGit(sourceDir, deployMarker) {
const worktreeDir = mkdtempSync(join(tmpdir(), 'gpt-image-hf-space-git-'));
try {
runText('git', ['clone', '--depth', '1', HF_SPACE_GIT_REMOTE_URL, worktreeDir]);
replaceGitWorktreeContents(worktreeDir, sourceDir);
runText('git', ['-C', worktreeDir, 'add', '--all']);
runText('git', [
'-C',
worktreeDir,
'-c',
`user.name=${GIT_DEPLOY_AUTHOR_NAME}`,
'-c',
`user.email=${GIT_DEPLOY_AUTHOR_EMAIL}`,
'commit',
'--no-gpg-sign',
'--message',
`Deploy ${deployMarker.local_sha.slice(0, 7)} to Docker Space`
]);
const spaceCommitSha = runText('git', ['-C', worktreeDir, 'rev-parse', 'HEAD']);
if (!/^[0-9a-f]{40}$/.test(spaceCommitSha)) {
throw new Error('Git fallback did not create a full Space commit SHA.');
}
runText('git', ['-C', worktreeDir, 'push', 'origin', 'HEAD:main']);
return spaceCommitSha;
} finally {
rmSync(worktreeDir, { force: true, recursive: true });
}
}
function replaceGitWorktreeContents(worktreeDir, sourceDir) {
for (const entry of readdirSync(worktreeDir)) {
if (entry === '.git') continue;
rmSync(join(worktreeDir, entry), { force: true, recursive: true });
}
for (const entry of readdirSync(sourceDir)) {
cpSync(join(sourceDir, entry), join(worktreeDir, entry), { force: true, recursive: true });
}
}
function readSpaceInfo() {
const output = runText('hf', ['spaces', 'info', HF_SPACE_ID, '--format', 'json']);
return parseJsonPayload(output, 'hf spaces info');
}
export function isRetryableSpaceInfoReadError(error) {
const message = error instanceof Error ? error.message : String(error || '');
return [
/\b(?:httpcore|httpx)\.(?:ConnectError|ReadError|ReadTimeout|ConnectTimeout|RemoteProtocolError)\b/i,
/\bSSL:\s*(?:UNEXPECTED_EOF_WHILE_READING|SYSCALL)\b/i,
/\bEOF occurred in violation of protocol\b/i,
/\b(?:connection reset by peer|connection aborted|network is unreachable|temporary failure in name resolution)\b/i
].some((pattern) => pattern.test(message));
}
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';
let lastManagementError = 'none';
for (let attempt = 1; attempt <= attempts; attempt += 1) {
let info;
try {
info = await readInfo();
} catch (error) {
lastManagementError = error instanceof Error ? error.message : String(error);
if (!isRetryableSpaceInfoReadError(error)) throw error;
log(`attempt=${attempt} management_status=unavailable error=${lastManagementError}`);
if (attempt < attempts) await sleep(intervalMs);
continue;
}
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}`);
}
}
if (attempt < attempts) await sleep(intervalMs);
}
const marker = await verifyMarker(deployMarker);
return {
stage: lastStage,
sha: lastSha,
management_status: 'target_commit_not_confirmed',
verification_source: 'service_marker_after_management_timeout',
service_marker_verified: true,
warning: `Hugging Face management status did not confirm RUNNING for ${spaceCommitSha}, but the public service returned the exact one-time deploy marker; last stage=${lastStage} sha=${lastSha} marker_error=${lastMarkerError} management_error=${lastManagementError}`,
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 repoSlug = readRepositorySlug();
const deployMarker = buildDeployMarker(localSha);
const sourceDir = prepareSourceTree(repoSlug, localSha);
try {
const { spaceCommitSha, transport } = uploadSourceTree(sourceDir, deployMarker, repoSlug);
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,
transport,
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);
});
}
|