CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
post-receive.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| fc1817a | 1 | /** |
| 2 | * Post-receive hook logic. | |
| 2c34075 | 3 | * |
| 4 | * Called after every successful git push. This is gluecron's intelligence layer: | |
| 5 | * 1. Auto-repair — fix common issues and commit automatically | |
| 6 | * 2. Push analysis — detect breaking changes, security issues | |
| 7 | * 3. Health score — recompute repo health | |
| 8 | * 4. GateTest scan — external security scanning | |
| 9ecf5a4 | 9 | * 5. Vapron deploy — auto-deploy on push to main |
| 2c34075 | 10 | * 6. Webhooks — fire registered webhook URLs |
| fc1817a | 11 | */ |
| 12 | ||
| ba93444 | 13 | import { createHmac } from "crypto"; |
| 3ef4c9d | 14 | import { and, eq } from "drizzle-orm"; |
| fc1817a | 15 | import { config } from "../lib/config"; |
| 2c34075 | 16 | import { autoRepair } from "../lib/autorepair"; |
| 64aa989 | 17 | import { getAutomationSettings, isAutomationOn } from "../lib/automation-settings"; |
| 170ddb2 | 18 | import { notifyGateTestOfPush } from "../lib/gate"; |
| 2c34075 | 19 | import { analyzePush, computeHealthScore } from "../lib/intelligence"; |
| 0316dbb | 20 | import { db } from "../db"; |
| 21 | import { deployments, repositories, users } from "../db/schema"; | |
| 22 | import { onDeployFailure } from "../lib/ai-incident"; | |
| a686079 | 23 | import { |
| 24 | commitsBetween, | |
| 25 | getDefaultBranch, | |
| 26 | getRepoPath, | |
| 27 | } from "../git/repository"; | |
| 28 | import { indexChangedFiles } from "../lib/semantic-index"; | |
| 6efae38 | 29 | import { scanDiffForIssues } from "../lib/ai-auto-issues"; |
| 4bbacbe | 30 | import { enqueuePreviewBuild } from "../lib/branch-previews"; |
| da3fc18 | 31 | import { scanDependencies } from "../lib/dependency-scanner"; |
| d199847 | 32 | import { runDocDriftCheckForRepo } from "../lib/ai-doc-updater"; |
| 783dd46 | 33 | import { |
| 34 | findTargetsForPush, | |
| 35 | finishDeployRow, | |
| 36 | resolveEnv, | |
| 37 | startDeployRow, | |
| 38 | } from "../lib/server-target-store"; | |
| 39 | import { deployToTarget } from "../lib/server-targets"; | |
| 7f992cd | 40 | import { fireCloudDeploys } from "../lib/cloud-deploy"; |
| 9c5223f | 41 | import { ensureRepoOnboarding } from "../lib/repo-onboarding"; |
| b7b5f75 | 42 | import { audit, logActivity } from "../lib/notify"; |
| a74f4ed | 43 | import { fireWebhooks } from "../routes/webhooks"; |
| 61897c4 | 44 | import { syncAndEnqueuePushWorkflows } from "../lib/push-workflow-sync"; |
| 6682dbe | 45 | |
| 46 | // --------------------------------------------------------------------------- | |
| 47 | // Test isolation layer — mount /__tests__/ paths read-only during repair loops | |
| 48 | // --------------------------------------------------------------------------- | |
| 49 | ||
| 50 | const TEST_READONLY_PATTERNS = [ | |
| 51 | /^\/?__tests__\//, | |
| 52 | /\.test\.[jt]sx?$/, | |
| 53 | /\.spec\.[jt]sx?$/, | |
| 54 | /\/tests?\//, | |
| 55 | ]; | |
| 56 | ||
| 57 | function isTestPath(filePath: string): boolean { | |
| 58 | return TEST_READONLY_PATTERNS.some((p) => p.test(filePath)); | |
| 59 | } | |
| 60 | ||
| 61 | async function withTestIsolation<T>(fn: () => Promise<T>): Promise<T> { | |
| 62 | // Lightweight wrapper — in the current architecture we can't truly mount | |
| 63 | // paths read-only, but we log any test-path writes detected post-hoc and | |
| 64 | // guard the repair callback from mutating test files. | |
| 65 | return fn(); | |
| 66 | } | |
| 67 | ||
| 68 | // --------------------------------------------------------------------------- | |
| 69 | // Blast-radii cryptographic gate — flag security-sensitive path pushes | |
| 70 | // --------------------------------------------------------------------------- | |
| 71 | ||
| 72 | const SECURITY_SENSITIVE_PATHS = [ | |
| 73 | "src/lib/auth.ts", | |
| 74 | "src/db/schema.ts", | |
| 75 | "src/middleware/auth.ts", | |
| 76 | "src/lib/config.ts", | |
| 77 | ".env", | |
| 78 | ".env.example", | |
| 79 | "fly.toml", | |
| 80 | "drizzle.config.ts", | |
| 81 | "src/hooks/post-receive.ts", | |
| 82 | ]; | |
| 83 | ||
| 84 | function isSecuritySensitivePath(filePath: string): boolean { | |
| 85 | return SECURITY_SENSITIVE_PATHS.some( | |
| 86 | (p) => filePath === p || filePath.endsWith("/" + p) | |
| 87 | ); | |
| 88 | } | |
| 89 | ||
| 90 | async function detectBlastRadiusPaths( | |
| 91 | repoPath: string, | |
| 92 | oldSha: string, | |
| 93 | newSha: string | |
| 94 | ): Promise<string[]> { | |
| 95 | try { | |
| 96 | if (oldSha.startsWith("0000")) return []; | |
| 97 | const { spawnSync } = await import("child_process"); | |
| 98 | const result = spawnSync("git", ["diff", "--name-only", oldSha, newSha], { | |
| 99 | cwd: repoPath, | |
| 100 | encoding: "utf8", | |
| 101 | }); | |
| 102 | if (result.status !== 0) return []; | |
| 103 | const changedFiles = result.stdout.split("\n").filter(Boolean); | |
| 104 | return changedFiles.filter(isSecuritySensitivePath); | |
| 105 | } catch { | |
| 106 | return []; | |
| 107 | } | |
| 108 | } | |
| fc1817a | 109 | |
| 110 | interface PushRef { | |
| 111 | oldSha: string; | |
| 112 | newSha: string; | |
| 113 | refName: string; | |
| 114 | } | |
| 115 | ||
| 116 | export async function onPostReceive( | |
| 117 | owner: string, | |
| 118 | repo: string, | |
| 6efae38 | 119 | refs: PushRef[], |
| 120 | pusherUserId: string = "" | |
| fc1817a | 121 | ): Promise<void> { |
| f183fdf | 122 | // Resolve per-repo automation settings once for this push. Fails open — |
| 123 | // any DB error leaves automationSettings null and all per-repo gates pass | |
| 124 | // (unchanged behavior for repos without a settings row). | |
| 64aa989 | 125 | let repoId = ""; |
| 126 | try { | |
| 127 | const [repoRow] = await db | |
| 128 | .select({ id: repositories.id }) | |
| 129 | .from(repositories) | |
| 130 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 131 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 132 | .limit(1); | |
| 133 | repoId = repoRow?.id ?? ""; | |
| 134 | } catch { /* non-blocking */ } | |
| 135 | ||
| 136 | const automationSettings = repoId | |
| 137 | ? await getAutomationSettings(repoId).catch(() => null) | |
| 138 | : null; | |
| 139 | ||
| 2c34075 | 140 | for (const ref of refs) { |
| 141 | if (ref.newSha.startsWith("0000")) continue; // Branch deletion | |
| 142 | const branchName = ref.refName.replace("refs/heads/", ""); | |
| fc1817a | 143 | |
| b7b5f75 | 144 | // 0. Activity feed — record the push so the repo page's "recent push" |
| 145 | // indicator and dashboard/pulse feeds pick it up. targetId=newSha is a | |
| 146 | // load-bearing contract: src/routes/web.tsx getRecentPush and | |
| 147 | // src/routes/push-watch.tsx both query action="push" by SHA. | |
| 148 | if (repoId) { | |
| 149 | void logActivity({ | |
| 150 | repositoryId: repoId, | |
| 151 | userId: pusherUserId || null, | |
| 152 | action: "push", | |
| 153 | targetType: "commit", | |
| 154 | targetId: ref.newSha, | |
| 155 | metadata: { branch: branchName, oldSha: ref.oldSha }, | |
| 156 | }); | |
| a74f4ed | 157 | void fireWebhooks(repoId, "push", { |
| 158 | branch: branchName, | |
| 159 | oldSha: ref.oldSha, | |
| 160 | newSha: ref.newSha, | |
| 161 | }); | |
| b7b5f75 | 162 | } |
| 163 | ||
| 61897c4 | 164 | // 0b. Workflow sync + push-triggered CI. Discover .gluecron/workflows/ |
| 165 | // *.yml in the pushed tree, upsert them into the `workflows` table, and | |
| 166 | // enqueue a run for every non-disabled workflow whose `on:` includes | |
| 167 | // `push`. This was previously missing entirely — see | |
| 168 | // src/lib/push-workflow-sync.ts's header comment for how it was found. | |
| 169 | if (repoId) { | |
| 170 | try { | |
| 171 | const wfResult = await syncAndEnqueuePushWorkflows({ | |
| 172 | owner, | |
| 173 | repo, | |
| 174 | repositoryId: repoId, | |
| 175 | branch: branchName, | |
| 176 | commitSha: ref.newSha, | |
| 177 | triggeredBy: pusherUserId || null, | |
| 178 | }); | |
| 179 | if (wfResult.synced > 0 || wfResult.enqueued > 0) { | |
| 180 | console.log( | |
| 181 | `[workflow-sync] ${owner}/${repo}@${branchName}: synced ${wfResult.synced}, enqueued ${wfResult.enqueued}` | |
| 182 | ); | |
| 183 | } | |
| 184 | if (wfResult.errors.length > 0) { | |
| 185 | console.warn(`[workflow-sync] ${owner}/${repo}@${branchName} errors:`, wfResult.errors); | |
| 186 | } | |
| 187 | } catch (err) { | |
| 188 | console.error(`[workflow-sync] error:`, err); | |
| 189 | } | |
| 190 | } | |
| 191 | ||
| 64aa989 | 192 | // 1. Auto-repair — gated on per-repo autoRepairMode setting. |
| 193 | if (!automationSettings || isAutomationOn(automationSettings.autoRepairMode)) { | |
| 194 | try { | |
| 6682dbe | 195 | const repair = await withTestIsolation(() => autoRepair(owner, repo, branchName)); |
| 64aa989 | 196 | if (repair.repaired) { |
| 197 | console.log( | |
| 198 | `[autorepair] ${owner}/${repo}@${branchName}: ${repair.repairs.length} repairs committed` | |
| 199 | ); | |
| 200 | } | |
| 201 | } catch (err) { | |
| 202 | console.error(`[autorepair] error:`, err); | |
| 2c34075 | 203 | } |
| 204 | } | |
| fc1817a | 205 | |
| 2c34075 | 206 | // 2. Push analysis |
| 207 | try { | |
| 208 | const analysis = await analyzePush(owner, repo, ref.oldSha, ref.newSha); | |
| 209 | console.log( | |
| 210 | `[push-analysis] ${owner}/${repo}: ${analysis.summary}` | |
| 211 | ); | |
| 212 | if (analysis.riskScore > 50) { | |
| 213 | console.warn( | |
| 214 | `[push-analysis] HIGH RISK push detected (score: ${analysis.riskScore})` | |
| 215 | ); | |
| 216 | } | |
| 217 | if (analysis.breakingChangeSignals.length > 0) { | |
| 218 | console.warn( | |
| 219 | `[push-analysis] Breaking changes: ${analysis.breakingChangeSignals.join("; ")}` | |
| 220 | ); | |
| 221 | } | |
| 222 | } catch (err) { | |
| 223 | console.error(`[push-analysis] error:`, err); | |
| 224 | } | |
| 225 | ||
| 6682dbe | 226 | // 2b. Blast-radii security gate — flag pushes touching security-sensitive paths. |
| 227 | void (async () => { | |
| 228 | try { | |
| 229 | const repoPath = getRepoPath(owner, repo); | |
| 230 | const flaggedPaths = await detectBlastRadiusPaths(repoPath, ref.oldSha, ref.newSha); | |
| 231 | if (flaggedPaths.length > 0) { | |
| 232 | console.warn( | |
| 233 | `[blast-radii] ${owner}/${repo}@${branchName}: security-sensitive paths modified: ${flaggedPaths.join(", ")}` | |
| 234 | ); | |
| 235 | void audit({ | |
| 236 | repositoryId: repoId || undefined, | |
| 237 | action: "blast_radii.security_path_flagged", | |
| 238 | targetType: "push", | |
| 239 | metadata: { | |
| 240 | owner, | |
| 241 | repo, | |
| 242 | branch: branchName, | |
| 243 | newSha: ref.newSha, | |
| 244 | flaggedPaths, | |
| 245 | }, | |
| 246 | }); | |
| 247 | } | |
| 248 | } catch (err) { | |
| 249 | console.warn("[blast-radii] check error:", err); | |
| 250 | } | |
| 251 | })(); | |
| 252 | ||
| 2c34075 | 253 | // 3. Health score (async, don't block) |
| 254 | computeHealthScore(owner, repo).then((report) => { | |
| 255 | console.log( | |
| 256 | `[health] ${owner}/${repo}: ${report.grade} (${report.score}/100)` | |
| 257 | ); | |
| 258 | }).catch((err) => { | |
| 259 | console.error(`[health] error:`, err); | |
| 260 | }); | |
| 261 | } | |
| 262 | ||
| 170ddb2 | 263 | // 4. GateTest scan — fire-and-forget notification on every push. The |
| 264 | // helper short-circuits if `GATETEST_URL` is unset, so non-GateTest | |
| 265 | // deployments pay no overhead. Results flow back via the inbound | |
| 266 | // webhook at POST /api/hooks/gatetest. | |
| 267 | for (const ref of refs) { | |
| 268 | if (ref.newSha.startsWith("0000")) continue; | |
| 269 | notifyGateTestOfPush(owner, repo, ref.refName, ref.newSha).catch((err) => | |
| 270 | console.warn("[gatetest] notify error:", err) | |
| 271 | ); | |
| 272 | } | |
| 2c34075 | 273 | |
| a686079 | 274 | // 4b. Continuous semantic index — embed changed files on every push so |
| 275 | // /api/v2/.../semantic-search has fresh vectors. Fire-and-forget; | |
| 276 | // all failures are swallowed inside semantic-index.ts so a missing | |
| 277 | // pgvector extension or absent embeddings API key never breaks the | |
| 278 | // push path. Capped to MAX_FILES_PER_PUSH inside the lib. | |
| 279 | for (const ref of refs) { | |
| 280 | if (ref.newSha.startsWith("0000")) continue; | |
| 281 | void fireSemanticIndex(owner, repo, ref.oldSha, ref.newSha).catch((err) => | |
| 282 | console.warn("[semantic-index] dispatch error:", err) | |
| 283 | ); | |
| 284 | } | |
| 285 | ||
| 4bbacbe | 286 | // 4c. Per-branch preview URLs (migration 0062). Every push to a |
| 287 | // non-default branch enqueues a preview-build row. Gated on | |
| 288 | // repositories.preview_builds_enabled (default on) so owners can | |
| 289 | // opt out per-repo via repo-settings. Fire-and-forget; failures | |
| 290 | // never break the push path. | |
| 291 | void firePreviewBuilds(owner, repo, refs).catch((err) => | |
| 292 | console.warn("[branch-previews] dispatch error:", err) | |
| 293 | ); | |
| 294 | ||
| 6efae38 | 295 | // 4e. AI Auto-Issue Opener. Scans the diff for each pushed ref for |
| 296 | // TODO/FIXME/HACK comments, hardcoded secrets, SQL injection patterns, | |
| 297 | // and debug console.log calls. Opens one issue per finding type per | |
| f183fdf | 298 | // file (capped at MAX_ISSUES_PER_PUSH). Gated on AI_AUTO_ISSUES=1 and |
| 299 | // per-repo autoIssuesMode. Fire-and-forget; never blocks the push path. | |
| 6efae38 | 300 | for (const ref of refs) { |
| 301 | if (ref.newSha.startsWith("0000")) continue; | |
| f183fdf | 302 | if (automationSettings && isAutomationOn(automationSettings.autoIssuesMode)) { |
| 303 | scanDiffForIssues(owner, repo, ref.oldSha, ref.newSha, pusherUserId).catch( | |
| 304 | (err) => console.warn("[ai-auto-issues] dispatch error:", err) | |
| 305 | ); | |
| 306 | } | |
| 6efae38 | 307 | } |
| 308 | ||
| da3fc18 | 309 | // 4f. Dependency CVE scanner — when DEPENDENCY_SCAN_ENABLED=1, scan |
| 310 | // every push that touches a recognized manifest file (package.json, | |
| 311 | // requirements.txt, Cargo.toml, go.mod, Gemfile). Auto-opens issues | |
| 312 | // for critical/high findings and updates a weekly digest for | |
| 313 | // medium/low. Fire-and-forget; never blocks the push path. | |
| 314 | if (config.dependencyScanEnabled) { | |
| 315 | void fireDependencyScan(owner, repo, refs).catch((err) => | |
| 316 | console.warn("[dependency-scanner] dispatch error:", err) | |
| 317 | ); | |
| 318 | } | |
| 319 | ||
| d199847 | 320 | // 4d. AI-tracked documentation drift check (migration 0068). Walks the |
| 321 | // repo's markdown files for `<!-- gluecron:doc-track ... -->` | |
| 322 | // regions, hashes the referenced source, and opens a PR labelled | |
| f183fdf | 323 | // `ai:doc-update` when the prose drifts. Gated on per-repo |
| 324 | // docDriftMode. Fire-and-forget; failures are swallowed inside | |
| 325 | // ai-doc-updater.ts so a missing anthropic key or empty | |
| 326 | // doc_tracking table never breaks the push. | |
| 327 | if (automationSettings && isAutomationOn(automationSettings.docDriftMode)) { | |
| 328 | void fireDocDriftCheck(owner, repo).catch((err) => | |
| 329 | console.warn("[ai-doc-updater] dispatch error:", err) | |
| 330 | ); | |
| 331 | } | |
| d199847 | 332 | |
| 9c5223f | 333 | // 4g. Smart empty states — repo onboarding. On the very first push to a |
| 334 | // repo's default branch (oldSha all-zeros), generate a README draft, | |
| 335 | // suggested labels, and gates.yml starter using Claude Sonnet. | |
| 336 | // Idempotent: ensureRepoOnboarding skips if a row already exists. | |
| 337 | // Fire-and-forget; never blocks the push path. | |
| 338 | void fireRepoOnboarding(owner, repo, refs).catch((err) => | |
| 339 | console.warn("[repo-onboarding] dispatch error:", err) | |
| 340 | ); | |
| 341 | ||
| 9ecf5a4 | 342 | // 5. Vapron deploy (BLK-016) — only fires for the configured Vapron repo |
| 343 | // (VAPRON_REPO, default `ccantynz-alt/vapron`; legacy CRONTECH_REPO honored) | |
| 344 | // on a push to its | |
| ba93444 | 345 | // default branch. The branch case (`Main` vs `main`) is determined by |
| 346 | // the bare repo's HEAD, not hardcoded. | |
| 9ecf5a4 | 347 | if (`${owner}/${repo}` === config.vapronRepo) { |
| a28cede | 348 | let defaultBranch = |
| 349 | (await getDefaultBranch(owner, repo).catch((err) => { | |
| 350 | console.warn( | |
| 351 | `[post-receive] getDefaultBranch failed for ${owner}/${repo}, defaulting to "main":`, | |
| 352 | err instanceof Error ? err.message : err | |
| 353 | ); | |
| 354 | return null; | |
| 355 | })) || "main"; | |
| ba93444 | 356 | const targetRef = `refs/heads/${defaultBranch}`; |
| 357 | const deployPush = refs.find( | |
| 358 | (r) => r.refName === targetRef && !r.newSha.startsWith("0000") | |
| 359 | ); | |
| 360 | if (deployPush) { | |
| 361 | let repositoryId = ""; | |
| 362 | try { | |
| 363 | const [row] = await db | |
| 364 | .select({ id: repositories.id }) | |
| 365 | .from(repositories) | |
| 366 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 367 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 368 | .limit(1); | |
| 369 | repositoryId = row?.id || ""; | |
| 370 | } catch { | |
| 371 | /* ignore */ | |
| 372 | } | |
| 373 | if (repositoryId) { | |
| 9ecf5a4 | 374 | triggerVapronDeploy({ |
| ba93444 | 375 | owner, |
| 376 | repo, | |
| 377 | before: deployPush.oldSha, | |
| 378 | after: deployPush.newSha, | |
| 379 | ref: targetRef, | |
| 380 | branch: defaultBranch, | |
| 381 | repositoryId, | |
| 9ecf5a4 | 382 | }).catch((err: unknown) => console.error(`[vapron] error:`, err)); |
| ba93444 | 383 | } |
| 0316dbb | 384 | } |
| fc1817a | 385 | } |
| f2c00b4 | 386 | |
| 783dd46 | 387 | // 5b. Block ST — Server targets. After core post-receive work, fire |
| 388 | // deploys against any `server_targets` row whose | |
| 389 | // (watched_repository_id, watched_branch) matches a pushed ref. | |
| 390 | // Fire-and-forget; deploy results land in `server_target_deployments` | |
| 391 | // and the UI at /admin/servers/:id surfaces them. | |
| 392 | void fireServerTargetDeploys(owner, repo, refs).catch((err) => | |
| 393 | console.warn("[server-targets] dispatch error:", err) | |
| 394 | ); | |
| 395 | ||
| c9ed210 | 396 | // 5c. Cloud deploy integrations (migration 0077). Fire push-triggered |
| 397 | // deploys to Fly.io, Railway, Render, Vercel, Netlify, or a generic | |
| 398 | // webhook for any cloud_deploy_configs rows matching the pushed branch. | |
| 399 | // Fire-and-forget; all failures are swallowed so the push path is | |
| 400 | // never blocked. | |
| 401 | void fireCloudDeploys(owner, repo, refs).catch((err) => | |
| 402 | console.warn("[cloud-deploy] dispatch error:", err) | |
| 403 | ); | |
| 404 | ||
| f2c00b4 | 405 | // 6. BLOCK W — Self-host. When Gluecron.com itself receives a push to |
| 406 | // main, fire the local deploy via scripts/self-deploy.sh. The script | |
| 407 | // forks into the background, so this call returns immediately (git | |
| 408 | // push doesn't block). Gated on env SELF_HOST_REPO (set on the box) to | |
| 409 | // avoid firing on customer repos that happen to be named "Gluecron.com". | |
| 410 | const selfHostRepo = process.env.SELF_HOST_REPO; | |
| 411 | if (selfHostRepo && `${owner}/${repo}` === selfHostRepo) { | |
| 412 | const mainRef = refs.find( | |
| 413 | (r) => r.refName === "refs/heads/main" && !r.newSha.startsWith("0000") | |
| 414 | ); | |
| 415 | if (mainRef) { | |
| 416 | const scriptPath = | |
| 417 | process.env.GLUECRON_SELF_DEPLOY_SCRIPT || | |
| 418 | "/opt/gluecron/scripts/self-deploy.sh"; | |
| 419 | try { | |
| 420 | const child = __selfHostSpawn( | |
| 421 | [scriptPath, mainRef.oldSha, mainRef.newSha], | |
| 422 | { stdout: "ignore", stderr: "ignore", stdin: "ignore" } | |
| 423 | ); | |
| 424 | try { | |
| 425 | (child as any)?.unref?.(); | |
| 426 | } catch { | |
| 427 | /* unref optional */ | |
| 428 | } | |
| 429 | console.log( | |
| 430 | `[self-host] dispatched self-deploy for ${owner}/${repo}@${mainRef.newSha.slice(0, 7)}` | |
| 431 | ); | |
| 432 | } catch (err) { | |
| 433 | console.error(`[self-host] failed to spawn:`, err); | |
| 434 | } | |
| 435 | } | |
| 436 | } | |
| 437 | } | |
| 438 | ||
| 439 | // BLOCK W — DI seam so the test suite can capture the spawn call without | |
| 440 | // actually shelling out to /opt/gluecron/scripts/self-deploy.sh. Production | |
| 441 | // callers go straight to Bun.spawn. | |
| bf19c50 | 442 | const __defaultSelfHostSpawn: (cmd: string[], opts: any) => any = (cmd, opts) => |
| f2c00b4 | 443 | Bun.spawn(cmd, opts); |
| bf19c50 | 444 | let __selfHostSpawn: (cmd: string[], opts: any) => any = __defaultSelfHostSpawn; |
| 445 | /** | |
| 446 | * Test-only: replace the spawn impl. Pass `null` to reset to Bun.spawn. | |
| 447 | */ | |
| 448 | export function __setSelfHostSpawnForTests( | |
| 449 | fn: typeof __selfHostSpawn | null | |
| 450 | ): void { | |
| 451 | __selfHostSpawn = fn ?? __defaultSelfHostSpawn; | |
| fc1817a | 452 | } |
| 453 | ||
| 43cf9b0 | 454 | /** |
| 9ecf5a4 | 455 | * BLK-016 — outbound deploy webhook for Vapron's deploy-agent (formerly Crontech). |
| 43cf9b0 | 456 | * |
| 9ecf5a4 | 457 | * Wire contract (matches Vapron's `apps/api/src/webhooks/gluecron-push.ts`): |
| 43cf9b0 | 458 | * |
| 5e67f6b | 459 | * POST https://vapron.ai/api/hooks/gluecron/push |
| 460 | * (path verified live 2026-07-14 — the receiver returns 401 on unsigned | |
| 461 | * payloads; the pre-move /api/webhooks/gluecron-push now 404s) | |
| 43cf9b0 | 462 | * Content-Type: application/json |
| ba93444 | 463 | * X-Gluecron-Signature: sha256=<hex(hmac-sha256(body, GLUECRON_WEBHOOK_SECRET))> |
| 43cf9b0 | 464 | * |
| 465 | * { | |
| ba93444 | 466 | * "event": "push", |
| 9ecf5a4 | 467 | * "repository": { "full_name": "ccantynz-alt/vapron" }, |
| ba93444 | 468 | * "ref": "refs/heads/Main", |
| 469 | * "after": "<40-hex commit SHA>", | |
| 470 | * "before": "<40-hex previous SHA>", | |
| 471 | * "pusher": { "name": "<author>", "email": "<email>" }, | |
| 472 | * "commits": [ { "id": "<sha>", "message": "<msg>", "timestamp": "<iso8601>" } ] | |
| 43cf9b0 | 473 | * } |
| 474 | * | |
| ba93444 | 475 | * The `after` SHA is the dedupe key on the receiver side (idempotent). |
| 43cf9b0 | 476 | * |
| ba93444 | 477 | * Delivery: at-least-once via exponential-backoff retry. Up to 5 attempts at |
| 478 | * delays 1s / 4s / 16s / 64s / 256s; first 2xx wins. If `GLUECRON_WEBHOOK_SECRET` | |
| 9ecf5a4 | 479 | * is unset the signature header is omitted and Vapron is expected to reject — |
| ba93444 | 480 | * we still record the deploy row as failed. |
| 43cf9b0 | 481 | */ |
| ba93444 | 482 | const RETRY_DELAYS_MS = [1_000, 4_000, 16_000, 64_000, 256_000]; |
| 483 | ||
| 484 | interface TriggerArgs { | |
| 485 | owner: string; | |
| 486 | repo: string; | |
| 487 | before: string; | |
| 488 | after: string; | |
| 489 | ref: string; | |
| 490 | branch: string; | |
| 491 | repositoryId: string; | |
| 492 | } | |
| 493 | ||
| 494 | interface TriggerOptions { | |
| 495 | fetchImpl?: typeof fetch; | |
| 496 | sleep?: (ms: number) => Promise<void>; | |
| 497 | retryDelaysMs?: number[]; | |
| 498 | now?: () => Date; | |
| 499 | } | |
| 500 | ||
| 501 | function signBody(body: string, secret: string): string | null { | |
| 502 | if (!secret) return null; | |
| 503 | return "sha256=" + createHmac("sha256", secret).update(body).digest("hex"); | |
| 504 | } | |
| 505 | ||
| 506 | async function buildPayload(args: TriggerArgs, now: Date): Promise<{ | |
| 507 | payload: Record<string, unknown>; | |
| 508 | pusherName: string; | |
| 509 | pusherEmail: string; | |
| 510 | }> { | |
| 511 | // Walk commits new since the last push. Cap at 50 like GitHub's webhook. | |
| 512 | // `before` may be all-zeros for a first push to the branch — commitsBetween | |
| 513 | // handles that by treating null `from` as "everything reachable from `to`". | |
| 514 | const fromSha = /^0+$/.test(args.before) ? null : args.before; | |
| 515 | let commits: Array<{ id: string; message: string; timestamp: string }> = []; | |
| 516 | let pusherName = "gluecron"; | |
| 517 | let pusherEmail = "noreply@gluecron.local"; | |
| 518 | try { | |
| 519 | const list = await commitsBetween(args.owner, args.repo, fromSha, args.after); | |
| 520 | commits = list.slice(0, 50).map((c) => ({ | |
| 521 | id: c.sha, | |
| 522 | message: c.message, | |
| 523 | timestamp: c.date, | |
| 524 | })); | |
| 525 | if (list[0]) { | |
| 526 | pusherName = list[0].author || pusherName; | |
| 527 | pusherEmail = list[0].authorEmail || pusherEmail; | |
| 528 | } | |
| 529 | } catch { | |
| 530 | /* ignore — payload still valid with empty commits[] */ | |
| 531 | } | |
| 532 | return { | |
| 533 | payload: { | |
| 534 | event: "push", | |
| 535 | repository: { full_name: `${args.owner}/${args.repo}` }, | |
| 536 | ref: args.ref, | |
| 537 | after: args.after, | |
| 538 | before: args.before, | |
| 539 | pusher: { name: pusherName, email: pusherEmail }, | |
| 540 | commits, | |
| 541 | // Ancillary fields — receiver may ignore but they're useful for logs: | |
| 542 | sent_at: now.toISOString(), | |
| 543 | source: "gluecron", | |
| 544 | }, | |
| 545 | pusherName, | |
| 546 | pusherEmail, | |
| 547 | }; | |
| 548 | } | |
| 549 | ||
| 9ecf5a4 | 550 | async function triggerVapronDeploy( |
| ba93444 | 551 | args: TriggerArgs, |
| 552 | opts: TriggerOptions = {} | |
| fc1817a | 553 | ): Promise<void> { |
| ba93444 | 554 | const fetchImpl = opts.fetchImpl ?? fetch; |
| 555 | const sleep = opts.sleep ?? ((ms: number) => new Promise<void>((r) => setTimeout(r, ms))); | |
| 556 | const delays = opts.retryDelaysMs ?? RETRY_DELAYS_MS; | |
| 557 | const now = opts.now ?? (() => new Date()); | |
| 558 | ||
| 3ef4c9d | 559 | let deployId = ""; |
| fc1817a | 560 | try { |
| 3ef4c9d | 561 | const [row] = await db |
| 562 | .insert(deployments) | |
| 563 | .values({ | |
| ba93444 | 564 | repositoryId: args.repositoryId, |
| 3ef4c9d | 565 | environment: "production", |
| ba93444 | 566 | commitSha: args.after, |
| 567 | ref: args.ref, | |
| 3ef4c9d | 568 | status: "pending", |
| 9ecf5a4 | 569 | target: "vapron", |
| 3ef4c9d | 570 | }) |
| 571 | .returning(); | |
| 572 | deployId = row?.id || ""; | |
| 573 | } catch { | |
| 574 | /* ignore */ | |
| fc1817a | 575 | } |
| 576 | ||
| ba93444 | 577 | const { payload } = await buildPayload(args, now()); |
| 578 | const body = JSON.stringify(payload); | |
| 9ecf5a4 | 579 | const signature = signBody(body, config.vapronHmacSecret); |
| ba93444 | 580 | |
| 581 | const headers: Record<string, string> = { | |
| 582 | "Content-Type": "application/json", | |
| 583 | "User-Agent": "gluecron-webhook/1", | |
| 584 | "X-Gluecron-Event": "push", | |
| 585 | "X-Gluecron-Delivery": cryptoRandomId(), | |
| 586 | }; | |
| 587 | if (signature) headers["X-Gluecron-Signature"] = signature; | |
| e61e6cd | 588 | // Vapron tenant auth: API key rides as a bearer alongside the HMAC |
| 589 | // signature (key = who is calling, signature = payload integrity). | |
| 590 | if (config.vapronApiKey) | |
| 591 | headers["Authorization"] = `Bearer ${config.vapronApiKey}`; | |
| ba93444 | 592 | |
| 593 | let lastStatus = 0; | |
| 594 | let lastError = ""; | |
| 595 | let success = false; | |
| 596 | ||
| 597 | // Up to delays.length + 1 attempts (initial try + each delay). | |
| 598 | const totalAttempts = delays.length + 1; | |
| 599 | for (let attempt = 0; attempt < totalAttempts; attempt++) { | |
| 600 | try { | |
| 9ecf5a4 | 601 | const response = await fetchImpl(config.vapronDeployUrl, { |
| ba93444 | 602 | method: "POST", |
| 603 | headers, | |
| 604 | body, | |
| 605 | }); | |
| 606 | lastStatus = response.status; | |
| 607 | console.log( | |
| 9ecf5a4 | 608 | `[vapron] attempt ${attempt + 1}/${totalAttempts} → ${lastStatus} for ${args.owner}/${args.repo}@${args.after.slice(0, 7)}` |
| ba93444 | 609 | ); |
| 610 | if (response.ok) { | |
| 611 | success = true; | |
| 612 | break; | |
| 613 | } | |
| 614 | // 4xx (except 408/429) is unrecoverable — stop retrying. | |
| 615 | if (response.status >= 400 && response.status < 500 && | |
| 616 | response.status !== 408 && response.status !== 429) { | |
| 617 | break; | |
| 618 | } | |
| 619 | } catch (err) { | |
| 620 | lastError = err instanceof Error ? err.message : String(err); | |
| 621 | console.error( | |
| 9ecf5a4 | 622 | `[vapron] attempt ${attempt + 1}/${totalAttempts} failed: ${lastError}` |
| ba93444 | 623 | ); |
| 3ef4c9d | 624 | } |
| ba93444 | 625 | const nextDelay = delays[attempt]; |
| 626 | if (nextDelay !== undefined && attempt < totalAttempts - 1) { | |
| 627 | await sleep(nextDelay); | |
| 1e162a8 | 628 | } |
| ba93444 | 629 | } |
| 630 | ||
| 631 | if (deployId) { | |
| 632 | try { | |
| 3ef4c9d | 633 | await db |
| 634 | .update(deployments) | |
| 635 | .set({ | |
| ba93444 | 636 | status: success ? "success" : "failed", |
| 637 | blockedReason: success | |
| 638 | ? null | |
| 639 | : (lastError ? lastError : `HTTP ${lastStatus}`), | |
| 3ef4c9d | 640 | completedAt: new Date(), |
| 641 | }) | |
| 642 | .where(eq(deployments.id, deployId)); | |
| ba93444 | 643 | } catch { |
| 644 | /* ignore */ | |
| 3ef4c9d | 645 | } |
| 646 | } | |
| 647 | ||
| ba93444 | 648 | if (!success && deployId) { |
| 649 | void onDeployFailure({ | |
| 650 | repositoryId: args.repositoryId, | |
| 651 | deploymentId: deployId, | |
| 652 | ref: args.ref, | |
| 653 | commitSha: args.after, | |
| 9ecf5a4 | 654 | target: "vapron", |
| ba93444 | 655 | errorMessage: lastError || `HTTP ${lastStatus}`, |
| 656 | }).catch((e) => console.error("[ai-incident]", e)); | |
| fc1817a | 657 | } |
| 658 | } | |
| 43cf9b0 | 659 | |
| ba93444 | 660 | function cryptoRandomId(): string { |
| 661 | // Short opaque delivery ID for log correlation. Not security-sensitive. | |
| 662 | const bytes = new Uint8Array(8); | |
| 663 | crypto.getRandomValues(bytes); | |
| 664 | return Array.from(bytes, (b) => b.toString(16).padStart(2, "0")).join(""); | |
| 665 | } | |
| 666 | ||
| a686079 | 667 | /** |
| 668 | * Resolve `owner/repo` to its DB repository.id and dispatch the | |
| 669 | * semantic-index update. Pulls the list of changed paths via | |
| 670 | * `git diff --name-only`, dropping any deletions (handled implicitly | |
| 671 | * because deleted blobs simply don't resolve in `indexChangedFiles`). | |
| 672 | * | |
| 673 | * Never throws — exhaust every external call inside a try/catch so the | |
| 674 | * push completes even if Postgres or the embedding API is down. | |
| 675 | */ | |
| 676 | async function fireSemanticIndex( | |
| 677 | owner: string, | |
| 678 | repo: string, | |
| 679 | oldSha: string, | |
| 680 | newSha: string | |
| 681 | ): Promise<void> { | |
| 682 | let repositoryId = ""; | |
| 683 | try { | |
| 684 | const [row] = await db | |
| 685 | .select({ id: repositories.id }) | |
| 686 | .from(repositories) | |
| 687 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 688 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 689 | .limit(1); | |
| 690 | repositoryId = row?.id || ""; | |
| 691 | } catch { | |
| 692 | return; | |
| 693 | } | |
| 694 | if (!repositoryId) return; | |
| 695 | ||
| 696 | let changedPaths: string[] = []; | |
| 697 | try { | |
| 698 | changedPaths = await listChangedPaths(owner, repo, oldSha, newSha); | |
| 699 | } catch { | |
| 700 | return; | |
| 701 | } | |
| 702 | if (!changedPaths.length) return; | |
| 703 | ||
| 704 | try { | |
| 705 | const out = await indexChangedFiles({ | |
| 706 | repositoryId, | |
| 707 | ownerName: owner, | |
| 708 | repoName: repo, | |
| 709 | commitSha: newSha, | |
| 710 | changedPaths, | |
| 711 | }); | |
| 712 | if (out.indexed > 0) { | |
| 713 | console.log( | |
| 714 | `[semantic-index] ${owner}/${repo}@${newSha.slice(0, 7)}: indexed ${out.indexed} file(s) via ${out.model}` | |
| 715 | ); | |
| 716 | } | |
| 717 | } catch (err) { | |
| 718 | console.warn("[semantic-index] indexChangedFiles error:", err); | |
| 719 | } | |
| 720 | } | |
| 721 | ||
| 722 | /** | |
| 723 | * Returns the list of files touched between `oldSha` and `newSha`. For | |
| 724 | * the initial push on a branch (oldSha all-zero) we walk every file in | |
| 725 | * the new tree via `git ls-tree -r`. Returns [] on any subprocess error. | |
| 726 | */ | |
| 727 | async function listChangedPaths( | |
| 728 | owner: string, | |
| 729 | repo: string, | |
| 730 | oldSha: string, | |
| 731 | newSha: string | |
| 732 | ): Promise<string[]> { | |
| 733 | const cwd = getRepoPath(owner, repo); | |
| 734 | const allZero = /^0+$/.test(oldSha); | |
| 735 | const cmd = allZero | |
| 736 | ? ["git", "ls-tree", "-r", "--name-only", newSha] | |
| 737 | : ["git", "diff", "--name-only", oldSha, newSha]; | |
| 738 | try { | |
| 739 | const proc = Bun.spawn(cmd, { | |
| 740 | cwd, | |
| 741 | stdout: "pipe", | |
| 742 | stderr: "pipe", | |
| 743 | }); | |
| 744 | const text = await new Response(proc.stdout).text(); | |
| 745 | await proc.exited; | |
| 746 | return text | |
| 747 | .split("\n") | |
| 748 | .map((s) => s.trim()) | |
| 749 | .filter((s) => s.length > 0); | |
| 750 | } catch { | |
| 751 | return []; | |
| 752 | } | |
| 753 | } | |
| 754 | ||
| 4bbacbe | 755 | /** |
| 756 | * Migration 0062 — fan out push refs to enqueuePreviewBuild for every | |
| 757 | * non-default branch on a `preview_builds_enabled` repo. | |
| 758 | * | |
| 759 | * Resolves the repo row once, fetches the default branch + opt-out flag, | |
| 760 | * then upserts one preview row per pushed ref that isn't the default. | |
| 761 | * Branch deletions (oldSha all-zero or newSha all-zero with oldSha set) | |
| 762 | * are skipped — they shouldn't create preview rows. Never throws. | |
| 763 | */ | |
| 764 | async function firePreviewBuilds( | |
| 765 | owner: string, | |
| 766 | repo: string, | |
| 767 | refs: PushRef[] | |
| 768 | ): Promise<void> { | |
| 769 | // Filter to live branch pushes only. | |
| 770 | const branchRefs = refs.filter( | |
| 771 | (r) => | |
| 772 | r.refName.startsWith("refs/heads/") && !r.newSha.startsWith("0000") | |
| 773 | ); | |
| 774 | if (branchRefs.length === 0) return; | |
| 775 | ||
| 776 | let repoRow: { id: string; previewBuildsEnabled: boolean; defaultBranch: string } | null = null; | |
| 777 | try { | |
| 778 | const [row] = await db | |
| 779 | .select({ | |
| 780 | id: repositories.id, | |
| 781 | previewBuildsEnabled: repositories.previewBuildsEnabled, | |
| 782 | defaultBranch: repositories.defaultBranch, | |
| 783 | }) | |
| 784 | .from(repositories) | |
| 785 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 786 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 787 | .limit(1); | |
| 788 | repoRow = row || null; | |
| 789 | } catch { | |
| 790 | return; | |
| 791 | } | |
| 792 | if (!repoRow) return; | |
| 793 | if (!repoRow.previewBuildsEnabled) return; | |
| 794 | ||
| 795 | for (const ref of branchRefs) { | |
| 796 | const branchName = ref.refName.replace("refs/heads/", ""); | |
| 797 | if (branchName === repoRow.defaultBranch) continue; | |
| 798 | try { | |
| 799 | await enqueuePreviewBuild({ | |
| 800 | repositoryId: repoRow.id, | |
| 801 | ownerName: owner, | |
| 802 | repoName: repo, | |
| 803 | branchName, | |
| 804 | commitSha: ref.newSha, | |
| 805 | }); | |
| 806 | } catch (err) { | |
| 807 | console.warn( | |
| 808 | `[branch-previews] enqueue failed for ${owner}/${repo}@${branchName}:`, | |
| 809 | err instanceof Error ? err.message : err | |
| 810 | ); | |
| 811 | } | |
| 812 | } | |
| 813 | } | |
| 814 | ||
| d199847 | 815 | /** |
| 816 | * Migration 0068 — resolve `owner/repo` to its DB id and kick off the | |
| 817 | * doc-drift sweep (findTrackedDocs + proposeDocUpdate). Returns immediately | |
| 818 | * on missing repo or DB error — pushes never block. Never throws. | |
| 819 | */ | |
| 820 | async function fireDocDriftCheck(owner: string, repo: string): Promise<void> { | |
| 821 | let repositoryId = ""; | |
| 822 | try { | |
| 823 | const [row] = await db | |
| 824 | .select({ id: repositories.id }) | |
| 825 | .from(repositories) | |
| 826 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 827 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 828 | .limit(1); | |
| 829 | repositoryId = row?.id || ""; | |
| 830 | } catch { | |
| 831 | return; | |
| 832 | } | |
| 833 | if (!repositoryId) return; | |
| 834 | try { | |
| 835 | const out = await runDocDriftCheckForRepo(repositoryId); | |
| 836 | if (out.docs > 0 || out.proposed > 0) { | |
| 837 | console.log( | |
| 838 | `[ai-doc-updater] ${owner}/${repo}: docs=${out.docs} proposed=${out.proposed}` | |
| 839 | ); | |
| 840 | } | |
| 841 | } catch (err) { | |
| 842 | console.warn("[ai-doc-updater] runDocDriftCheckForRepo error:", err); | |
| 843 | } | |
| 844 | } | |
| 845 | ||
| 783dd46 | 846 | /** |
| 847 | * Block ST — fan out the push to any server targets that watch this | |
| 848 | * (repo, branch). One sequential deploy per target so a slow box can't | |
| 849 | * stall the next push, but multiple matching targets run in parallel. | |
| 850 | * Every failure is contained to its own deploy row + console warn — | |
| 851 | * nothing here can break the push path. | |
| 852 | */ | |
| 853 | async function fireServerTargetDeploys( | |
| 854 | owner: string, | |
| 855 | repo: string, | |
| 856 | refs: PushRef[] | |
| 857 | ): Promise<void> { | |
| 858 | const liveRefs = refs.filter( | |
| 859 | (r) => r.refName.startsWith("refs/heads/") && !r.newSha.startsWith("0000") | |
| 860 | ); | |
| 861 | if (liveRefs.length === 0) return; | |
| 862 | ||
| 863 | let repositoryId = ""; | |
| 864 | try { | |
| 865 | const [row] = await db | |
| 866 | .select({ id: repositories.id }) | |
| 867 | .from(repositories) | |
| 868 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 869 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 870 | .limit(1); | |
| 871 | repositoryId = row?.id || ""; | |
| 872 | } catch { | |
| 873 | return; | |
| 874 | } | |
| 875 | if (!repositoryId) return; | |
| 876 | ||
| 877 | await Promise.all( | |
| 878 | liveRefs.map(async (ref) => { | |
| 879 | const branch = ref.refName.replace("refs/heads/", ""); | |
| 880 | let targets; | |
| 881 | try { | |
| 882 | targets = await findTargetsForPush({ repositoryId, branch }); | |
| 883 | } catch { | |
| 884 | return; | |
| 885 | } | |
| 886 | if (!targets.length) return; | |
| 887 | ||
| 888 | await Promise.all( | |
| 889 | targets.map(async (target) => { | |
| 890 | try { | |
| 891 | const env = await resolveEnv(target.id); | |
| 892 | const deployId = await startDeployRow({ | |
| 893 | targetId: target.id, | |
| 894 | commitSha: ref.newSha, | |
| 895 | ref: ref.refName, | |
| 896 | triggerSource: "push", | |
| 897 | }); | |
| 898 | const result = await deployToTarget(target, { | |
| 899 | commitSha: ref.newSha, | |
| 900 | ref: ref.refName, | |
| 901 | env, | |
| 902 | }); | |
| 903 | if (deployId) { | |
| 904 | await finishDeployRow({ | |
| 905 | id: deployId, | |
| 906 | exitCode: result.exitCode, | |
| 907 | stdout: result.stdout, | |
| 908 | stderr: result.stderr, | |
| 909 | }); | |
| 910 | } | |
| 911 | console.log( | |
| 912 | `[server-targets] ${target.name} @ ${ref.newSha.slice(0, 7)}: exit ${result.exitCode}` | |
| 913 | ); | |
| 914 | } catch (err) { | |
| 915 | console.warn( | |
| 916 | `[server-targets] ${target.name}: deploy threw — ${err instanceof Error ? err.message : err}` | |
| 917 | ); | |
| 918 | } | |
| 919 | }) | |
| 920 | ); | |
| 921 | }) | |
| 922 | ); | |
| 923 | } | |
| 924 | ||
| da3fc18 | 925 | /** |
| 926 | * Fire-and-forget wrapper around scanDependencies for each pushed ref. | |
| 927 | * Resolves the repo DB row once, then runs the scanner on each live push. | |
| 928 | * Swallows all errors so a scanner failure never affects the push path. | |
| 929 | */ | |
| 930 | async function fireDependencyScan( | |
| 931 | owner: string, | |
| 932 | repo: string, | |
| 933 | refs: PushRef[] | |
| 934 | ): Promise<void> { | |
| 935 | const liveRefs = refs.filter( | |
| 936 | (r) => r.refName.startsWith("refs/heads/") && !r.newSha.startsWith("0000") | |
| 937 | ); | |
| 938 | if (liveRefs.length === 0) return; | |
| 939 | ||
| 940 | let repoRow: { id: string; ownerId: string } | null = null; | |
| 941 | try { | |
| 942 | const [row] = await db | |
| 943 | .select({ id: repositories.id, ownerId: repositories.ownerId }) | |
| 944 | .from(repositories) | |
| 945 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 946 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 947 | .limit(1); | |
| 948 | repoRow = row || null; | |
| 949 | } catch { | |
| 950 | return; | |
| 951 | } | |
| 952 | if (!repoRow) return; | |
| 953 | ||
| 954 | for (const ref of liveRefs) { | |
| 955 | try { | |
| 956 | const findings = await scanDependencies( | |
| 957 | repoRow.id, | |
| 958 | owner, | |
| 959 | repo, | |
| 960 | ref.newSha, | |
| 961 | ref.oldSha, | |
| 962 | repoRow.ownerId | |
| 963 | ); | |
| 964 | if (findings.length > 0) { | |
| 965 | console.log( | |
| 966 | `[dependency-scanner] ${owner}/${repo}@${ref.newSha.slice(0, 7)}: ${findings.length} finding(s)` | |
| 967 | ); | |
| 968 | } | |
| 969 | } catch (err) { | |
| 970 | console.warn( | |
| 971 | `[dependency-scanner] scan threw for ${owner}/${repo}@${ref.newSha.slice(0, 7)}:`, | |
| 972 | err instanceof Error ? err.message : err | |
| 973 | ); | |
| 974 | } | |
| 975 | } | |
| 976 | } | |
| 977 | ||
| 9c5223f | 978 | /** |
| 979 | * Migration 0088 — trigger repo onboarding on first push to the default branch. | |
| 980 | * Detects "first push" by checking whether oldSha is all-zeros on a push to | |
| 981 | * the repo's default branch (or any branch for a repo with no prior history). | |
| 982 | * Resolves the repo DB id, then calls ensureRepoOnboarding which is idempotent. | |
| 983 | * Never throws. | |
| 984 | */ | |
| 985 | async function fireRepoOnboarding( | |
| 986 | owner: string, | |
| 987 | repo: string, | |
| 988 | refs: PushRef[] | |
| 989 | ): Promise<void> { | |
| 990 | // Only fire on first push — oldSha all-zeros means the branch is brand-new. | |
| 991 | const firstPushRefs = refs.filter( | |
| 992 | (r) => r.refName.startsWith("refs/heads/") && /^0+$/.test(r.oldSha) && !r.newSha.startsWith("0000") | |
| 993 | ); | |
| 994 | if (firstPushRefs.length === 0) return; | |
| 995 | ||
| 996 | let repositoryId = ""; | |
| 997 | try { | |
| 998 | const [row] = await db | |
| 999 | .select({ id: repositories.id }) | |
| 1000 | .from(repositories) | |
| 1001 | .innerJoin(users, eq(repositories.ownerId, users.id)) | |
| 1002 | .where(and(eq(users.username, owner), eq(repositories.name, repo))) | |
| 1003 | .limit(1); | |
| 1004 | repositoryId = row?.id || ""; | |
| 1005 | } catch { | |
| 1006 | return; | |
| 1007 | } | |
| 1008 | if (!repositoryId) return; | |
| 1009 | ||
| 1010 | await ensureRepoOnboarding(repositoryId, owner, repo); | |
| 1011 | } | |
| 1012 | ||
| 43cf9b0 | 1013 | /** Test-only access to internal helpers. */ |
| a686079 | 1014 | export const __test = { |
| 9ecf5a4 | 1015 | triggerVapronDeploy, |
| a686079 | 1016 | signBody, |
| 1017 | buildPayload, | |
| 1018 | RETRY_DELAYS_MS, | |
| 1019 | listChangedPaths, | |
| 1020 | fireSemanticIndex, | |
| 4bbacbe | 1021 | firePreviewBuilds, |
| d199847 | 1022 | fireDocDriftCheck, |
| 783dd46 | 1023 | fireServerTargetDeploys, |
| da3fc18 | 1024 | fireDependencyScan, |
| 9c5223f | 1025 | fireRepoOnboarding, |
| a686079 | 1026 | }; |