File size: 6,841 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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | import type { Context } from "@api/rest/types";
import {
deleteDocumentResponseSchema,
deleteDocumentSchema,
documentResponseSchema,
documentsResponseSchema,
getDocumentPreSignedUrlSchema,
getDocumentSchema,
getDocumentsSchema,
preSignedUrlResponseSchema,
} from "@api/schemas/documents";
import { createAdminClient } from "@api/services/supabase";
import { validateResponse } from "@api/utils/validate-response";
import { createRoute, OpenAPIHono, z } from "@hono/zod-openapi";
const errorResponseSchema = z.object({
error: z.string(),
});
import {
deleteDocument,
getDocumentById,
getDocuments,
} from "@midday/db/queries";
import { signedUrl } from "@midday/supabase/storage";
import { withRequiredScope } from "../middleware";
const app = new OpenAPIHono<Context>();
app.openapi(
createRoute({
method: "get",
path: "/",
summary: "List all documents",
operationId: "listDocuments",
"x-speakeasy-name-override": "list",
description: "Retrieve a list of documents for the authenticated team.",
tags: ["Documents"],
request: {
query: getDocumentsSchema,
},
responses: {
200: {
description: "Retrieve a list of documents for the authenticated team.",
content: {
"application/json": {
schema: documentsResponseSchema,
},
},
},
},
middleware: [withRequiredScope("documents.read")],
}),
async (c) => {
const db = c.get("db");
const teamId = c.get("teamId");
const { pageSize, cursor, sort, ...filter } = c.req.valid("query");
const result = await getDocuments(db, {
teamId,
pageSize,
cursor,
...filter,
});
return c.json(validateResponse(result, documentsResponseSchema));
},
);
app.openapi(
createRoute({
method: "get",
path: "/{id}",
summary: "Retrieve a document",
operationId: "getDocumentById",
"x-speakeasy-name-override": "get",
description:
"Retrieve a document by its unique identifier for the authenticated team.",
tags: ["Documents"],
request: {
params: getDocumentSchema.pick({ id: true }),
},
responses: {
200: {
description: "Retrieve a document by its unique identifier",
content: {
"application/json": {
schema: documentResponseSchema,
},
},
},
},
middleware: [withRequiredScope("documents.read")],
}),
async (c) => {
const db = c.get("db");
const teamId = c.get("teamId");
const id = c.req.valid("param").id;
const result = await getDocumentById(db, {
teamId,
id,
});
return c.json(validateResponse(result, documentResponseSchema));
},
);
app.openapi(
createRoute({
method: "post",
path: "/{id}/presigned-url",
summary: "Generate pre-signed URL for document",
operationId: "getDocumentPreSignedUrl",
"x-speakeasy-name-override": "getPreSignedUrl",
description:
"Generate a pre-signed URL for accessing a document. The URL is valid for 60 seconds and allows secure temporary access to the document file.",
tags: ["Documents"],
request: {
params: getDocumentPreSignedUrlSchema.pick({ id: true }),
query: getDocumentPreSignedUrlSchema.pick({ download: true }),
},
responses: {
200: {
description: "Pre-signed URL generated successfully",
content: {
"application/json": {
schema: preSignedUrlResponseSchema,
},
},
},
400: {
description: "Bad request - Document file path not available",
content: {
"application/json": {
schema: errorResponseSchema,
},
},
},
404: {
description: "Document not found",
content: {
"application/json": {
schema: errorResponseSchema,
},
},
},
500: {
description:
"Internal server error - Failed to generate pre-signed URL",
content: {
"application/json": {
schema: errorResponseSchema,
},
},
},
},
middleware: [withRequiredScope("documents.read")],
}),
async (c) => {
const db = c.get("db");
const teamId = c.get("teamId");
const { id } = c.req.valid("param");
const { download = true } = c.req.valid("query");
try {
// First, verify the document exists and belongs to the team
const document = await getDocumentById(db, {
id,
teamId,
});
if (!document) {
return c.json({ error: "Document not found" }, 404);
}
if (!document.pathTokens || document.pathTokens.length === 0) {
return c.json({ error: "Document file path not available" }, 400);
}
// Create admin supabase client
const supabase = await createAdminClient();
// Generate the pre-signed URL with 60-second expiration
const filePath = document.pathTokens.join("/");
const expireIn = 60; // 60 seconds
const { data, error } = await signedUrl(supabase, {
bucket: "vault",
path: filePath,
expireIn,
options: {
download,
},
});
if (error || !data?.signedUrl) {
return c.json({ error: "Failed to generate pre-signed URL" }, 500);
}
// Calculate expiration timestamp
const expiresAt = new Date(Date.now() + expireIn * 1000).toISOString();
const result = {
url: data.signedUrl,
expiresAt,
fileName:
document.pathTokens?.at(-1) ||
document.name?.split("/").at(-1) ||
null,
};
return c.json(validateResponse(result, preSignedUrlResponseSchema), 200);
} catch (_error) {
return c.json({ error: "Failed to generate pre-signed URL" }, 500);
}
},
);
app.openapi(
createRoute({
method: "delete",
path: "/{id}",
summary: "Delete a document",
operationId: "deleteDocument",
"x-speakeasy-name-override": "delete",
description:
"Delete a document by its unique identifier for the authenticated team.",
tags: ["Documents"],
request: {
params: deleteDocumentSchema,
},
responses: {
200: {
description: "Document deleted successfully",
content: {
"application/json": {
schema: deleteDocumentResponseSchema,
},
},
},
},
middleware: [withRequiredScope("documents.write")],
}),
async (c) => {
const db = c.get("db");
const teamId = c.get("teamId");
const id = c.req.valid("param").id;
const result = await deleteDocument(db, { teamId, id });
return c.json(validateResponse(result, deleteDocumentResponseSchema));
},
);
export const documentsRouter = app;
|