-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathgetSignedURL.ts
More file actions
94 lines (85 loc) · 2.89 KB
/
getSignedURL.ts
File metadata and controls
94 lines (85 loc) · 2.89 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
89
90
91
92
93
94
import { FastifyInstance } from 'fastify'
import { FromSchema } from 'json-schema-to-ts'
import { createDefaultSchema } from '../../routes-helper'
import { AuthenticatedRequest } from '../../types'
import { ImageRenderer } from '@storage/renderer'
import { transformationOptionsSchema } from '../../schemas/transformations'
import { isImageTransformationEnabled } from '@storage/limits'
import { ROUTE_OPERATIONS } from '../operations'
const getSignedURLParamsSchema = {
type: 'object',
properties: {
bucketName: { type: 'string', examples: ['avatars'] },
'*': { type: 'string', examples: ['folder/cat.png'] },
},
required: ['bucketName', '*'],
} as const
const getSignedURLBodySchema = {
type: 'object',
properties: {
expiresIn: { type: 'integer', minimum: 1, examples: [60000] },
transform: {
type: 'object',
properties: transformationOptionsSchema,
},
},
required: ['expiresIn'],
} as const
const successResponseSchema = {
type: 'object',
properties: {
signedURL: {
type: 'string',
examples: [
'/object/sign/avatars/folder/cat.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJhdmF0YXJzL2ZvbGRlci9jYXQucG5nIiwiaWF0IjoxNjE3NzI2MjczLCJleHAiOjE2MTc3MjcyNzN9.s7Gt8ME80iREVxPhH01ZNv8oUn4XtaWsmiQ5csiUHn4',
],
},
},
required: ['signedURL'],
}
interface getSignedURLRequestInterface extends AuthenticatedRequest {
Params: FromSchema<typeof getSignedURLParamsSchema>
Body: FromSchema<typeof getSignedURLBodySchema>
}
export default async function routes(fastify: FastifyInstance) {
const summary = 'Generate a presigned url to retrieve an object'
const schema = createDefaultSchema(successResponseSchema, {
body: getSignedURLBodySchema,
params: getSignedURLParamsSchema,
summary,
tags: ['object'],
})
fastify.post<getSignedURLRequestInterface>(
'/sign/:bucketName/*',
{
schema,
config: {
operation: { type: ROUTE_OPERATIONS.SIGN_OBJECT_URL },
},
},
async (request, response) => {
const { bucketName } = request.params
const objectName = request.params['*']
const { expiresIn } = request.body
const urlPath = request.url.split('?').shift()
const imageTransformationEnabled = await isImageTransformationEnabled(request.tenantId)
const transformationOptions = imageTransformationEnabled
? {
transformations: ImageRenderer.applyTransformation(
request.body.transform || {},
true
).join(','),
format: request.body.transform?.format || '',
}
: undefined
const signedURL = await request.storage.from(bucketName).signObjectUrl({
objectName,
url: urlPath as string,
expiresIn,
metadata: transformationOptions,
signal: request.signals.disconnect.signal,
})
return response.status(200).send({ signedURL })
}
)
}