feat(KB-137): add GitHub App webhooks for real-time badge updates

- Add verified POST /api/github/webhooks endpoint with signature verification
- Implement GitHub App installation token authentication for API calls
- Add webhook handlers for pull_request, issues, and issue_comment events
- Support multi-task resource matching by parsed badge URL
- Retire live GitHub polling service in favor of push-based updates
- Add comprehensive webhook integration and unit tests
- Keep 5-minute REST refresh endpoints as fallback
This commit is contained in:
gsxdsm
2026-03-30 13:37:33 -07:00
parent 297013000f
commit f78f01ac5b
12 changed files with 2100 additions and 579 deletions

View File

@@ -0,0 +1,382 @@
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { EventEmitter, once } from "node:events";
import http from "node:http";
import type { Task, TaskStore, PrInfo, IssueInfo } from "@kb/core";
import { createServer } from "../server.js";
import { getGitHubAppConfig } from "../github-webhooks.js";
// Mock the github-webhooks module
vi.mock("../github-webhooks.js", async () => {
const actual = await vi.importActual<typeof import("../github-webhooks.js")>("../github-webhooks.js");
return {
...actual,
getGitHubAppConfig: vi.fn(),
};
});
const mockGetGitHubAppConfig = vi.mocked(getGitHubAppConfig);
class MockStore extends EventEmitter {
private tasks = new Map<string, Task>();
private rootDir: string;
constructor(rootDir: string = process.cwd()) {
super();
this.rootDir = rootDir;
}
getRootDir(): string {
return this.rootDir;
}
async listTasks(): Promise<Task[]> {
return Array.from(this.tasks.values());
}
async getTask(id: string): Promise<Task> {
const task = this.tasks.get(id);
if (!task) {
const error = Object.assign(new Error("Task not found"), { code: "ENOENT" });
throw error;
}
return task;
}
async updatePrInfo(taskId: string, prInfo: PrInfo): Promise<Task> {
const task = await this.getTask(taskId);
const updated = { ...task, prInfo };
this.tasks.set(taskId, updated);
this.emit("task:updated", updated);
return updated;
}
async updateIssueInfo(taskId: string, issueInfo: IssueInfo): Promise<Task> {
const task = await this.getTask(taskId);
const updated = { ...task, issueInfo };
this.tasks.set(taskId, updated);
this.emit("task:updated", updated);
return updated;
}
addTask(task: Task): void {
this.tasks.set(task.id, task);
this.emit("task:created", task);
}
}
function createHmacSignature(payload: string, secret: string): string {
const { createHmac } = require("node:crypto");
return "sha256=" + createHmac("sha256", secret).update(payload).digest("hex");
}
function createPrTask(id: string, url: string, number: number, status: PrInfo["status"] = "open"): Task {
return {
id,
title: "Test task",
description: "Test description",
column: "in-review",
dependencies: [],
steps: [],
currentStep: 0,
log: [],
createdAt: "2026-03-30T00:00:00.000Z",
updatedAt: "2026-03-30T00:00:00.000Z",
columnMovedAt: "2026-03-30T00:00:00.000Z",
prInfo: {
url,
number,
status,
title: "Test PR",
headBranch: "feature",
baseBranch: "main",
commentCount: 0,
lastCheckedAt: "2026-03-30T00:00:00.000Z",
},
};
}
function createIssueTask(id: string, url: string, number: number, state: IssueInfo["state"] = "open"): Task {
return {
id,
title: "Test task",
description: "Test description",
column: "todo",
dependencies: [],
steps: [],
currentStep: 0,
log: [],
createdAt: "2026-03-30T00:00:00.000Z",
updatedAt: "2026-03-30T00:00:00.000Z",
columnMovedAt: "2026-03-30T00:00:00.000Z",
issueInfo: {
url,
number,
state,
title: "Test Issue",
},
};
}
describe("POST /api/github/webhooks", () => {
const mockConfig = {
appId: "12345",
privateKey: "mock-private-key",
webhookSecret: "webhook-secret",
};
beforeEach(() => {
vi.clearAllMocks();
mockGetGitHubAppConfig.mockReturnValue(mockConfig);
});
afterEach(() => {
vi.restoreAllMocks();
});
it("returns 503 when GitHub App is not configured", async () => {
mockGetGitHubAppConfig.mockReturnValue(null);
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{ hostname: "127.0.0.1", port, path: "/api/github/webhooks", method: "POST", headers: { "Content-Type": "application/json" } },
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(JSON.stringify({ action: "opened" }));
req.end();
});
expect(response.status).toBe(503);
expect(response.body.error).toContain("not configured");
server.close();
await once(server, "close");
});
it("returns 403 for invalid signature", async () => {
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
const payload = JSON.stringify({ action: "opened", number: 42 });
const invalidSignature = "sha256=invalid";
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{
hostname: "127.0.0.1",
port,
path: "/api/github/webhooks",
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Hub-Signature-256": invalidSignature,
}
},
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(payload);
req.end();
});
expect(response.status).toBe(403);
expect(response.body.error).toMatch(/Signature mismatch/i);
server.close();
await once(server, "close");
});
it("returns 200 for valid ping event", async () => {
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
const payload = JSON.stringify({ zen: "Keep it logically awesome" });
const signature = createHmacSignature(payload, mockConfig.webhookSecret);
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{
hostname: "127.0.0.1",
port,
path: "/api/github/webhooks",
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Hub-Signature-256": signature,
"X-GitHub-Event": "ping",
}
},
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(payload);
req.end();
});
expect(response.status).toBe(200);
expect(response.body.message).toBe("Pong");
server.close();
await once(server, "close");
});
it("returns 202 for unsupported event types", async () => {
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
const payload = JSON.stringify({ action: "pushed" });
const signature = createHmacSignature(payload, mockConfig.webhookSecret);
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{
hostname: "127.0.0.1",
port,
path: "/api/github/webhooks",
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Hub-Signature-256": signature,
"X-GitHub-Event": "push",
}
},
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(payload);
req.end();
});
expect(response.status).toBe(202);
expect(response.body.message).toContain("not supported");
server.close();
await once(server, "close");
});
it("returns 202 for issue_comment on regular issues (not PRs)", async () => {
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
// Issue comment without pull_request field
const payload = JSON.stringify({
action: "created",
issue: { number: 123 }, // No pull_request field → regular issue
repository: { owner: { login: "owner" }, name: "repo" },
installation: { id: 12345 },
comment: { id: 456, body: "Issue comment" },
});
const signature = createHmacSignature(payload, mockConfig.webhookSecret);
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{
hostname: "127.0.0.1",
port,
path: "/api/github/webhooks",
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Hub-Signature-256": signature,
"X-GitHub-Event": "issue_comment",
}
},
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(payload);
req.end();
});
expect(response.status).toBe(202);
expect(response.body.message).toContain("not relevant");
server.close();
await once(server, "close");
});
it("returns 500 when installation token cannot be fetched", async () => {
const store = new MockStore();
const app = createServer(store as any);
const server = app.listen(0);
await once(server, "listening");
const port = (server.address() as { port: number }).port;
// Valid PR event with missing installation data
const payload = JSON.stringify({
action: "opened",
number: 42,
repository: { owner: { login: "owner" }, name: "repo" },
// No installation field - will cause token fetch to fail
});
const signature = createHmacSignature(payload, mockConfig.webhookSecret);
const response = await new Promise<{ status: number; body: any }>((resolve, reject) => {
const req = http.request(
{
hostname: "127.0.0.1",
port,
path: "/api/github/webhooks",
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Hub-Signature-256": signature,
"X-GitHub-Event": "pull_request",
}
},
(res) => {
let data = "";
res.on("data", (chunk) => (data += chunk));
res.on("end", () => resolve({ status: res.statusCode!, body: JSON.parse(data) }));
}
);
req.on("error", reject);
req.write(payload);
req.end();
});
// Should return 400 for missing installation data
expect([400, 500]).toContain(response.status);
server.close();
await once(server, "close");
});
});