File size: 7,009 Bytes
c09f67c | 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 | // Import Sentry instrumentation first, before any other modules
import "./instrument";
import { trpcServer } from "@hono/trpc-server";
import { OpenAPIHono } from "@hono/zod-openapi";
import {
buildDependenciesResponse,
buildReadinessResponse,
checkDependencies,
} from "@midday/health/checker";
import { apiDependencies } from "@midday/health/probes";
import { logger } from "@midday/logger";
import { Scalar } from "@scalar/hono-api-reference";
import * as Sentry from "@sentry/bun";
import { cors } from "hono/cors";
import { secureHeaders } from "hono/secure-headers";
import { routers } from "./rest/routers";
import type { Context } from "./rest/types";
import { createTRPCContext } from "./trpc/init";
import { appRouter } from "./trpc/routers/_app";
import { httpLogger } from "./utils/logger";
const app = new OpenAPIHono<Context>();
app.use(httpLogger());
app.use(
secureHeaders({
crossOriginResourcePolicy: "cross-origin",
}),
);
app.use(
"*",
cors({
origin: process.env.ALLOWED_API_ORIGINS?.split(",") ?? [],
allowMethods: ["GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH"],
allowHeaders: [
"Authorization",
"Content-Type",
"User-Agent",
"accept-language",
"x-trpc-source",
"x-user-locale",
"x-user-timezone",
"x-user-country",
"x-force-primary",
// Slack webhook headers
"x-slack-signature",
"x-slack-request-timestamp",
],
exposeHeaders: [
"Content-Length",
"Content-Type",
"Cache-Control",
"Cross-Origin-Resource-Policy",
],
maxAge: 86400,
}),
);
app.use(
"/trpc/*",
trpcServer({
router: appRouter,
createContext: createTRPCContext,
onError: ({ error, path }) => {
logger.error(`[tRPC] ${path}`, {
message: error.message,
code: error.code,
cause: error.cause instanceof Error ? error.cause.message : undefined,
stack: error.stack,
});
// Send to Sentry (skip client errors like NOT_FOUND, UNAUTHORIZED)
if (error.code === "INTERNAL_SERVER_ERROR") {
Sentry.captureException(error, {
tags: { source: "trpc", path: path ?? "unknown" },
});
}
},
}),
);
app.get("/favicon.ico", (c) => c.body(null, 204));
app.get("/robots.txt", (c) => c.body(null, 204));
app.get("/health", (c) => {
return c.json({ status: "ok" }, 200);
});
app.get("/info", (c) => {
return c.html(`
<html>
<head>
<title>Midday API Info</title>
<style>
body { font-family: sans-serif; line-height: 1.6; max-width: 800px; margin: 40px auto; padding: 20px; }
h1 { color: #333; }
.use-case { margin-bottom: 20px; border-left: 4px solid #333; padding-left: 15px; }
</style>
</head>
<body>
<h1>Midday API</h1>
<p>Welcome to the Midday API. This service provides a suite of business management tools.</p>
<h2>Core Use Cases</h2>
<div class="use-case">
<h3>1. AI-Powered Financial Insights</h3>
<p>Get automated analysis of your revenue, expenses, and profit trends. The API uses Helmholtz Blablador LLMs to provide actionable advice.</p>
</div>
<div class="use-case">
<h3>2. Intelligent Document Extraction</h3>
<p>Upload receipts or invoices and get structured JSON data back. No more manual data entry.</p>
</div>
<div class="use-case">
<h3>3. Seamless Invoicing</h3>
<p>Generate and manage professional invoices via API, integrated with your transaction history.</p>
</div>
<p>Explore the full <a href="/">API Documentation (Scalar)</a> to get started.</p>
</body>
</html>
`);
});
app.get("/health/ready", async (c) => {
const results = await checkDependencies(apiDependencies(), 1);
const response = buildReadinessResponse(results);
return c.json(response, response.status === "ok" ? 200 : 503);
});
app.get("/health/dependencies", async (c) => {
const results = await checkDependencies(apiDependencies());
const response = buildDependenciesResponse(results);
return c.json(response, response.status === "ok" ? 200 : 503);
});
app.doc("/openapi", {
openapi: "3.1.0",
info: {
version: "1.0.0",
title: "Midday API",
description:
"Midday is an all-in-one platform for business management. This API provides access to core features including:\n\n" +
"- **Financial Insights**: AI-generated reports on business performance and spending patterns.\n" +
"- **Document Processing**: Automatic extraction of data from receipts and invoices using advanced LLMs.\n" +
"- **Transaction Management**: Real-time tracking and categorization of business transactions.\n" +
"- **Invoicing**: Create and manage professional invoices for your clients.\n\n" +
"Use this API to integrate Midday's powerful business assistant into your own workflows.",
contact: {
name: "Midday Support",
email: "engineer@midday.ai",
url: "https://midday.ai",
},
license: {
name: "AGPL-3.0 license",
url: "https://github.com/midday-ai/midday/blob/main/LICENSE",
},
},
servers: [
{
url: "https://api.midday.ai",
description: "Production API",
},
],
security: [
{
oauth2: [],
},
{ token: [] },
],
});
// Register security scheme
app.openAPIRegistry.registerComponent("securitySchemes", "token", {
type: "http",
scheme: "bearer",
description: "Default authentication mechanism",
"x-speakeasy-example": "MIDDAY_API_KEY",
});
app.get(
"/",
Scalar({ url: "/openapi", pageTitle: "Midday API", theme: "saturn" }),
);
app.route("/", routers);
// Global error handler — captures unhandled route errors to Sentry
app.onError((err, c) => {
Sentry.captureException(err, {
tags: { source: "hono", path: c.req.path, method: c.req.method },
});
logger.error(`[Hono] ${c.req.method} ${c.req.path}`, {
message: err.message,
stack: err.stack,
});
return c.json({ error: "Internal Server Error" }, 500);
});
/**
* Unhandled exception and rejection handlers
*/
process.on("uncaughtException", (err) => {
logger.error("Uncaught exception", { error: err.message, stack: err.stack });
Sentry.captureException(err, {
tags: { errorType: "uncaught_exception" },
});
});
process.on("unhandledRejection", (reason, promise) => {
logger.error("Unhandled rejection", {
reason: reason instanceof Error ? reason.message : String(reason),
stack: reason instanceof Error ? reason.stack : undefined,
});
Sentry.captureException(
reason instanceof Error ? reason : new Error(String(reason)),
{
tags: { errorType: "unhandled_rejection" },
},
);
});
export default {
port: process.env.PORT ? Number.parseInt(process.env.PORT, 10) : 3000,
fetch: app.fetch,
host: "0.0.0.0", // Listen on all interfaces
idleTimeout: 60,
};
|