45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import type { UpdateGlobalVersion } from 'payload/database'
|
|
import type { PayloadRequest, SanitizedGlobalConfig } from 'payload/types'
|
|
|
|
import { buildVersionGlobalFields } from 'payload/versions'
|
|
import toSnakeCase from 'to-snake-case'
|
|
|
|
import type { PostgresAdapter } from './types'
|
|
|
|
import buildQuery from './queries/buildQuery'
|
|
import { upsertRow } from './upsertRow'
|
|
|
|
export const updateGlobalVersion: UpdateGlobalVersion = async function updateVersion(
|
|
this: PostgresAdapter,
|
|
{ id, global, locale, req = {} as PayloadRequest, versionData, where: whereArg },
|
|
) {
|
|
const db = this.sessions?.[req.transactionID] || this.db
|
|
const globalConfig: SanitizedGlobalConfig = this.payload.globals.config.find(
|
|
({ slug }) => slug === global,
|
|
)
|
|
const whereToUse = whereArg || { id: { equals: id } }
|
|
const tableName = `_${toSnakeCase(global)}_v`
|
|
const fields = buildVersionGlobalFields(globalConfig)
|
|
|
|
const { where } = await buildQuery({
|
|
adapter: this,
|
|
fields,
|
|
locale,
|
|
tableName,
|
|
where: whereToUse,
|
|
})
|
|
|
|
const result = await upsertRow({
|
|
id,
|
|
adapter: this,
|
|
data: versionData,
|
|
db,
|
|
fields,
|
|
operation: 'update',
|
|
tableName,
|
|
where,
|
|
})
|
|
|
|
return result
|
|
}
|