c0b84595a3
## Summary The server half of hosted webhooks: the public ingress endpoint, signature verification, the delivery pipeline (Postgres partitioned storage + ClickHouse for ordering), the in-app partition manager, the HTTP API, and the dashboard (Deliveries, Endpoints, and the in-app test console). The public SDK and docs half is #4537. That PR carries the user-facing API (`webhook()`, `chat.event` / `chat.channels`, the `@trigger.dev/slack` connector) and builds on the shared `@trigger.dev/core` schemas that ship here. ## Shipping behind a flag A `WEBHOOK_ENABLED` env var (default off) gates the public ingress route and the engine worker plus partition cron, so merging and deploying this changes nothing in production until it is flipped on per environment. The dashboard is separately gated per org by the `hasWebhooksAccess` feature flag. ## Note on packages This PR includes the `@trigger.dev/core` schema additions the server compiles against, but carries no changeset. Core is not consumed independently of the SDK, so it is released together with the SDK via #4537. Keeping its changeset off `main` means no release cut from `main` publishes it early.
65 lines
2.2 KiB
TypeScript
65 lines
2.2 KiB
TypeScript
import { type RuntimeEnvironmentType, type TaskTriggerSource } from "@trigger.dev/database";
|
|
import { sqlDatabaseSchema } from "~/db.server";
|
|
import { findCurrentWorkerDeployment } from "~/v3/models/workerDeployment.server";
|
|
import { BasePresenter } from "./basePresenter.server";
|
|
|
|
type TaskListOptions = {
|
|
userId: string;
|
|
projectId: string;
|
|
environmentId: string;
|
|
environmentType: RuntimeEnvironmentType;
|
|
};
|
|
|
|
export type TaskList = Awaited<ReturnType<TestPresenter["call"]>>;
|
|
export type TaskListItem = NonNullable<TaskList["tasks"]>[0];
|
|
|
|
export class TestPresenter extends BasePresenter {
|
|
public async call({ userId, projectId, environmentId, environmentType }: TaskListOptions) {
|
|
const isDev = environmentType === "DEVELOPMENT";
|
|
const tasks = await this.#getTasks(environmentId, isDev);
|
|
|
|
return {
|
|
tasks: tasks.map((task) => ({
|
|
id: task.id,
|
|
taskIdentifier: task.slug,
|
|
filePath: task.filePath,
|
|
friendlyId: task.friendlyId,
|
|
triggerSource: task.triggerSource,
|
|
})),
|
|
};
|
|
}
|
|
|
|
async #getTasks(envId: string, isDev: boolean) {
|
|
if (isDev) {
|
|
return await this._replica.$queryRaw<
|
|
{
|
|
id: string;
|
|
version: string;
|
|
slug: string;
|
|
filePath: string;
|
|
friendlyId: string;
|
|
triggerSource: TaskTriggerSource;
|
|
}[]
|
|
>`WITH workers AS (
|
|
SELECT
|
|
bw.*,
|
|
ROW_NUMBER() OVER(ORDER BY string_to_array(bw.version, '.')::int[] DESC) AS rn
|
|
FROM
|
|
${sqlDatabaseSchema}."BackgroundWorker" bw
|
|
WHERE "runtimeEnvironmentId" = ${envId}
|
|
),
|
|
latest_workers AS (SELECT * FROM workers WHERE rn = 1)
|
|
SELECT bwt.id, version, slug, "filePath", bwt."friendlyId", bwt."triggerSource"
|
|
FROM latest_workers
|
|
JOIN ${sqlDatabaseSchema}."BackgroundWorkerTask" bwt ON bwt."workerId" = latest_workers.id
|
|
WHERE bwt."triggerSource" NOT IN ('AGENT', 'WEBHOOK')
|
|
ORDER BY slug ASC;`;
|
|
} else {
|
|
const currentDeployment = await findCurrentWorkerDeployment({ environmentId: envId });
|
|
return (currentDeployment?.worker?.tasks ?? []).filter(
|
|
(t) => t.triggerSource !== "AGENT" && t.triggerSource !== "WEBHOOK"
|
|
);
|
|
}
|
|
}
|
|
}
|