-
-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathgetSignedURLs.ts
More file actions
88 lines (82 loc) · 2.65 KB
/
getSignedURLs.ts
File metadata and controls
88 lines (82 loc) · 2.65 KB
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
import { FastifyInstance, FastifyRequest } from 'fastify'
import { FromSchema } from 'json-schema-to-ts'
import { createDefaultSchema } from '../../routes-helper'
import { AuthenticatedRequest } from '../../types'
import { ROUTE_OPERATIONS } from '../operations'
const getSignedURLsParamsSchema = {
type: 'object',
properties: {
bucketName: { type: 'string', examples: ['avatars'] },
},
required: ['bucketName'],
} as const
const getSignedURLsBodySchema = {
type: 'object',
properties: {
expiresIn: { type: 'integer', minimum: 1, examples: [60000] },
paths: {
type: 'array',
items: { type: 'string' },
minItems: 1,
examples: [['folder/cat.png', 'folder/morecats.png']],
},
},
required: ['expiresIn', 'paths'],
} as const
const successResponseSchema = {
type: 'array',
items: {
type: 'object',
properties: {
error: {
error: ['string', 'null'],
examples: ['Either the object does not exist or you do not have access to it'],
},
path: {
type: 'string',
examples: ['folder/cat.png'],
},
signedURL: {
type: ['string', 'null'],
examples: [
'/object/sign/avatars/folder/cat.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJhdmF0YXJzL2ZvbGRlci9jYXQucG5nIiwiaWF0IjoxNjE3NzI2MjczLCJleHAiOjE2MTc3MjcyNzN9.s7Gt8ME80iREVxPhH01ZNv8oUn4XtaWsmiQ5csiUHn4',
],
},
},
required: ['error', 'path', 'signedURL'],
},
}
interface getSignedURLsRequestInterface extends AuthenticatedRequest {
Params: FromSchema<typeof getSignedURLsParamsSchema>
Body: FromSchema<typeof getSignedURLsBodySchema>
}
export default async function routes(fastify: FastifyInstance) {
const summary = 'Generate presigned urls to retrieve objects'
const schema = createDefaultSchema(successResponseSchema, {
body: getSignedURLsBodySchema,
params: getSignedURLsParamsSchema,
summary,
tags: ['object'],
})
fastify.post<getSignedURLsRequestInterface>(
'/sign/:bucketName',
{
schema,
config: {
operation: { type: ROUTE_OPERATIONS.SIGN_OBJECT_URLS },
resources: (req: FastifyRequest<getSignedURLsRequestInterface>) => {
const { paths } = req.body
return paths.map((path) => `${req.params.bucketName}/${path}`)
},
},
},
async (request, response) => {
const { bucketName } = request.params
const { expiresIn, paths } = request.body
const signedURLs = await request.storage
.from(bucketName)
.signObjectUrls({ paths, expiresIn, signal: request.signals.disconnect.signal })
return response.status(200).send(signedURLs)
}
)
}