-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathgetSignedUploadURL.ts
More file actions
86 lines (76 loc) · 2.5 KB
/
getSignedUploadURL.ts
File metadata and controls
86 lines (76 loc) · 2.5 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
import { FastifyInstance } from 'fastify'
import { FromSchema } from 'json-schema-to-ts'
import { createDefaultSchema } from '../../routes-helper'
import { AuthenticatedRequest } from '../../types'
import { getConfig } from '../../../config'
import { ROUTE_OPERATIONS } from '../operations'
const { uploadSignedUrlExpirationTime } = getConfig()
const getSignedUploadURLParamsSchema = {
type: 'object',
properties: {
bucketName: { type: 'string', examples: ['avatars'] },
'*': { type: 'string', examples: ['folder/cat.png'] },
},
required: ['bucketName', '*'],
} as const
const getSignedUploadURLHeadersSchema = {
type: 'object',
properties: {
'x-upsert': { type: 'string' },
authorization: { type: 'string' },
},
required: ['authorization'],
} as const
const successResponseSchema = {
type: 'object',
properties: {
url: {
type: 'string',
examples: [
'/object/sign/upload/avatars/folder/cat.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJhdmF0YXJzL2ZvbGRlci9jYXQucG5nIiwiaWF0IjoxNjE3NzI2MjczLCJleHAiOjE2MTc3MjcyNzN9.s7Gt8ME80iREVxPhH01ZNv8oUn4XtaWsmiQ5csiUHn4',
],
},
token: {
type: 'string',
},
},
required: ['url'],
}
interface getSignedURLRequestInterface extends AuthenticatedRequest {
Params: FromSchema<typeof getSignedUploadURLParamsSchema>
Headers: FromSchema<typeof getSignedUploadURLHeadersSchema>
}
export default async function routes(fastify: FastifyInstance) {
const summary = 'Generate a presigned url to upload an object'
const schema = createDefaultSchema(successResponseSchema, {
params: getSignedUploadURLParamsSchema,
summary,
tags: ['object'],
})
fastify.post<getSignedURLRequestInterface>(
'/upload/sign/:bucketName/*',
{
schema,
config: {
operation: { type: ROUTE_OPERATIONS.SIGN_UPLOAD_URL },
},
},
async (request, response) => {
const { bucketName } = request.params
const objectName = request.params['*']
const owner = request.owner
const urlPath = `${bucketName}/${objectName}`
const signedUpload = await request.storage.from(bucketName).signUploadObjectUrl({
objectName,
url: urlPath as string,
expiresIn: uploadSignedUrlExpirationTime,
owner,
options: {
upsert: request.headers['x-upsert'] === 'true',
},
signal: request.signals.disconnect.signal,
})
return response.status(200).send({ url: signedUpload.url, token: signedUpload.token })
}
)
}