platform/server/middleware/src/txPush.ts
Andrey Sobolev 55b51b0fd0
UBERF-7922: Split Server Storage to middlewares (#6464)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-09-09 13:40:49 +05:00

78 lines
2.6 KiB
TypeScript

//
// Copyright © 2024 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
import core, {
DOMAIN_TRANSIENT,
DOMAIN_TX,
TxProcessor,
type Doc,
type MeasureContext,
type Tx,
type TxCUD,
type TxResult
} from '@hcengineering/core'
import { PlatformError, unknownError } from '@hcengineering/platform'
import type { DBAdapterManager, Middleware, PipelineContext, TxMiddlewareResult } from '@hcengineering/server-core'
import { BaseMiddleware } from '@hcengineering/server-core'
/**
* Will store transactions to tx adapter
* @public
*/
export class TxMiddleware extends BaseMiddleware implements Middleware {
adapterManager!: DBAdapterManager
static async create (ctx: MeasureContext, context: PipelineContext, next?: Middleware): Promise<Middleware> {
const middleware = new TxMiddleware(context, next)
if (context.adapterManager == null) {
throw new PlatformError(unknownError('Adapter manager should be specified'))
}
middleware.adapterManager = context.adapterManager
return middleware
}
async init (ctx: MeasureContext): Promise<void> {}
async tx (ctx: MeasureContext, txes: Tx[]): Promise<TxMiddlewareResult> {
const txToStore: Tx[] = []
for (const tx of txes) {
if (tx.space !== core.space.DerivedTx && TxProcessor.isExtendsCUD(tx._class)) {
const objectClass = (tx as TxCUD<Doc>).objectClass
if (
objectClass !== core.class.BenchmarkDoc &&
this.context.hierarchy.findDomain(objectClass) !== DOMAIN_TRANSIENT
) {
txToStore.push(tx)
}
}
}
let txPromise: Promise<TxResult[]> | undefined
if (txToStore.length > 0) {
txPromise = ctx.with(
'domain-tx',
{},
async (ctx) => await this.adapterManager.getAdapter(DOMAIN_TX, true).tx(ctx, ...txToStore),
{
count: txToStore.length,
txes: Array.from(new Set(txToStore.map((it) => it._class)))
}
)
}
if (txPromise !== undefined) {
return (await Promise.all([txPromise, this.provideTx(ctx, txes)]))[1]
}
return await this.provideTx(ctx, txes)
}
}