CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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 | /**
* Per-repo integrations management.
*
* UI lives at `/:owner/:repo/settings/integrations`:
* - List existing connectors with status / last delivery
* - Add a connector (kind + name + config + events)
* - Toggle enable, edit, delete
* - "Send test" button → fires a synthetic event through the connector
*
* Owner-only via requireRepoAccess("admin"). Reads redact secret config
* fields before rendering.
*/
import { Hono } from "hono";
import { and, eq } from "drizzle-orm";
import { db } from "../db";
import { repositories, users } from "../db/schema";
import { Layout } from "../views/layout";
import { RepoHeader } from "../views/components";
import { softAuth, requireAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import { requireRepoAccess } from "../middleware/repo-access";
import {
Container,
Form,
FormGroup,
Input,
Button,
Alert,
Select,
} from "../views/ui";
import {
CONNECTORS,
INTEGRATION_EVENTS,
createIntegration,
deleteIntegration,
deliverOne,
getById,
getConnector,
isValidEvent,
isValidKind,
listDeliveries,
listForRepo,
redactConfig,
updateIntegration,
type IntegrationEvent,
type IntegrationKind,
} from "../lib/integrations";
const app = new Hono<AuthEnv>();
app.use("*", softAuth);
async function ownedRepo(ownerName: string, repoName: string, userId: string) {
const [owner] = await db
.select()
.from(users)
.where(eq(users.username, ownerName))
.limit(1);
if (!owner || owner.id !== userId) return null;
const [repo] = await db
.select()
.from(repositories)
.where(
and(eq(repositories.ownerId, owner.id), eq(repositories.name, repoName))
)
.limit(1);
return repo ?? null;
}
app.get(
"/:owner/:repo/settings/integrations",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const user = c.get("user")!;
const success = c.req.query("success");
const error = c.req.query("error");
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const integrations = await listForRepo(repo.id);
return c.html(
<Layout title={`Integrations — ${ownerName}/${repoName}`} user={user}>
<RepoHeader owner={ownerName} repo={repoName} />
<Container maxWidth={760}>
<h2 style="margin-bottom: 6px">Integrations</h2>
<p style="color: var(--text-muted); margin-bottom: 16px">
Forward gluecron events into Slack, Discord, Linear, Vercel, Jira,
PagerDuty, Sentry, Datadog, and any custom webhook target.
</p>
{success && <Alert variant="success">{decodeURIComponent(success)}</Alert>}
{error && <Alert variant="error">{decodeURIComponent(error)}</Alert>}
{integrations.length === 0 && (
<div
style="
background: var(--bg-secondary);
border: 1px dashed var(--border);
border-radius: 6px;
padding: 16px;
margin-bottom: 24px;
color: var(--text-muted);
"
>
No integrations yet. Add one below.
</div>
)}
{integrations.map((row) => {
const meta = getConnector(row.kind as IntegrationKind);
const evs = Array.isArray(row.events) ? (row.events as string[]) : [];
const config = redactConfig(
row.kind as IntegrationKind,
(row.config as Record<string, unknown>) ?? {}
);
return (
<div
style="
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 6px;
padding: 14px;
margin-bottom: 12px;
"
>
<div style="display:flex; justify-content:space-between; gap:12px; align-items:flex-start;">
<div>
<strong>{row.name}</strong>
<span style="margin-left:8px; padding:2px 6px; background:rgba(99,102,241,0.15); color:#a5b4fc; border-radius:4px; font-size:11px;">
{meta?.label ?? row.kind}
</span>
{!row.enabled && (
<span style="margin-left:6px; color: var(--red); font-size:11px">
disabled
</span>
)}
<div style="font-size:12px; color: var(--text-muted); margin-top:4px;">
Events: {evs.length > 0 ? evs.join(", ") : "(none)"}
</div>
<div style="font-size:11px; color: var(--text-muted); margin-top:4px; font-family:ui-monospace,monospace;">
{Object.entries(config)
.map(([k, v]) => `${k}=${v}`)
.join(" ")}
</div>
<div style="font-size:11px; color: var(--text-muted); margin-top:4px;">
{row.lastDeliveryAt
? `last: ${new Date(row.lastDeliveryAt).toISOString()} (${row.lastStatus ?? "unknown"})`
: "never delivered"}
</div>
</div>
<div style="display:flex; gap:6px; flex-direction:column; align-items:flex-end;">
<form
method="post"
action={`/${ownerName}/${repoName}/settings/integrations/${row.id}/test`}
>
<Button type="submit" size="sm">Send test</Button>
</form>
<form
method="post"
action={`/${ownerName}/${repoName}/settings/integrations/${row.id}/toggle`}
>
<Button type="submit" size="sm">
{row.enabled ? "Disable" : "Enable"}
</Button>
</form>
<form
method="post"
action={`/${ownerName}/${repoName}/settings/integrations/${row.id}/delete`}
>
<Button type="submit" variant="danger" size="sm">
Delete
</Button>
</form>
</div>
</div>
</div>
);
})}
<h3 style="margin-top: 24px; margin-bottom: 12px">Add integration</h3>
<Form
method="post"
action={`/${ownerName}/${repoName}/settings/integrations`}
>
<FormGroup label="Connector">
<Select name="kind">
{CONNECTORS.map((c) => (
<option value={c.kind}>
{c.label} — {c.description}
</option>
))}
</Select>
</FormGroup>
<FormGroup label="Name (free-form label)">
<Input
type="text"
name="name"
required
placeholder="Engineering channel"
/>
</FormGroup>
<FormGroup label="Config (JSON)">
<textarea
name="config"
rows={5}
style="width:100%; font-family: ui-monospace, monospace; padding:8px; background: var(--bg); color: var(--text); border:1px solid var(--border); border-radius:6px"
placeholder='{"webhookUrl": "https://hooks.slack.com/..."}'
required
></textarea>
</FormGroup>
<FormGroup label="Events">
<div style="display:flex; flex-wrap:wrap; gap:8px">
{INTEGRATION_EVENTS.map((e) => (
<label style="display:inline-flex; align-items:center; gap:4px; font-size:12px; background: var(--bg); padding:4px 8px; border-radius:4px; border:1px solid var(--border);">
<input type="checkbox" name="events" value={e} />
<span style="font-family: ui-monospace, monospace">{e}</span>
</label>
))}
</div>
</FormGroup>
<Button type="submit" variant="primary">Add integration</Button>
</Form>
</Container>
</Layout>
);
}
);
app.post(
"/:owner/:repo/settings/integrations",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const user = c.get("user")!;
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const form = await c.req.formData();
const kindRaw = String(form.get("kind") ?? "");
const name = String(form.get("name") ?? "").trim();
const configRaw = String(form.get("config") ?? "{}");
const events = form
.getAll("events")
.map(String)
.filter(isValidEvent) as IntegrationEvent[];
if (!isValidKind(kindRaw)) {
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=Invalid+connector`
);
}
let config: Record<string, unknown> = {};
try {
config = JSON.parse(configRaw) as Record<string, unknown>;
} catch {
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=Config+must+be+valid+JSON`
);
}
try {
await createIntegration({
repositoryId: repo.id,
kind: kindRaw,
name,
config,
events,
createdBy: user.id,
});
} catch (err) {
const msg = err instanceof Error ? err.message : "Create failed";
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=${encodeURIComponent(msg)}`
);
}
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?success=Integration+added`
);
}
);
app.post(
"/:owner/:repo/settings/integrations/:id/toggle",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName, id } = c.req.param();
const user = c.get("user")!;
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const row = await getById(id);
if (!row || row.repositoryId !== repo.id) {
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=Not+found`
);
}
await updateIntegration(id, { enabled: !row.enabled });
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?success=Updated`
);
}
);
app.post(
"/:owner/:repo/settings/integrations/:id/delete",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName, id } = c.req.param();
const user = c.get("user")!;
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const row = await getById(id);
if (!row || row.repositoryId !== repo.id) {
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=Not+found`
);
}
await deleteIntegration(id);
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?success=Deleted`
);
}
);
app.post(
"/:owner/:repo/settings/integrations/:id/test",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName, id } = c.req.param();
const user = c.get("user")!;
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const row = await getById(id);
if (!row || row.repositoryId !== repo.id) {
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?error=Not+found`
);
}
const result = await deliverOne(row, "push", {
repository: `${ownerName}/${repoName}`,
title: "test event from gluecron",
synthetic: true,
});
const msg =
result.status === "ok"
? `Test delivered (${result.httpStatus ?? "?"}) in ${result.durationMs}ms`
: `Test failed: ${result.error ?? result.httpStatus ?? "unknown"}`;
return c.redirect(
`/${ownerName}/${repoName}/settings/integrations?${
result.status === "ok" ? "success" : "error"
}=${encodeURIComponent(msg)}`
);
}
);
app.get(
"/:owner/:repo/settings/integrations/:id/deliveries",
requireAuth,
requireRepoAccess("admin"),
async (c) => {
const { owner: ownerName, repo: repoName, id } = c.req.param();
const user = c.get("user")!;
const repo = await ownedRepo(ownerName, repoName, user.id);
if (!repo) return c.text("Unauthorized", 403);
const row = await getById(id);
if (!row || row.repositoryId !== repo.id) return c.notFound();
const deliveries = await listDeliveries(id, 50);
return c.json({ deliveries });
}
);
export default app;
|