64 lines
1.3 KiB
TypeScript
64 lines
1.3 KiB
TypeScript
import type { Endpoint } from 'payload/config'
|
|
import type { PayloadRequest } from 'payload/types'
|
|
|
|
import httpStatus from 'http-status'
|
|
|
|
import { seedDB } from './seed.js'
|
|
|
|
const handler = async ({ data, payload }: PayloadRequest) => {
|
|
process.env.SEED_IN_CONFIG_ONINIT = 'true'
|
|
|
|
try {
|
|
await seedDB({
|
|
_payload: payload,
|
|
collectionSlugs: payload.config.collections.map(({ slug }) => slug),
|
|
seedFunction: payload.config.onInit,
|
|
snapshotKey: String(data.snapshotKey),
|
|
uploadsDir: String(data.uploadsDir),
|
|
})
|
|
|
|
return Response.json(
|
|
{
|
|
message: 'Database reset and onInit run successfully.',
|
|
},
|
|
{
|
|
status: httpStatus.OK,
|
|
},
|
|
)
|
|
} catch (err) {
|
|
payload.logger.error(err)
|
|
return Response.json(err, {
|
|
status: httpStatus.BAD_REQUEST,
|
|
})
|
|
}
|
|
}
|
|
|
|
const path = '/re-initialize'
|
|
|
|
export const reInitEndpoint: Endpoint = {
|
|
path,
|
|
method: 'post',
|
|
handler,
|
|
}
|
|
|
|
export const reInitializeDB = async ({
|
|
serverURL,
|
|
snapshotKey,
|
|
uploadsDir,
|
|
}: {
|
|
serverURL: string
|
|
snapshotKey: string
|
|
uploadsDir?: string
|
|
}) => {
|
|
await fetch(`${serverURL}/api${path}`, {
|
|
method: 'post',
|
|
body: JSON.stringify({
|
|
snapshotKey,
|
|
uploadsDir,
|
|
}),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
})
|
|
}
|