platform/pods/server/src/server.ts
2024-07-02 18:12:39 +07:00

80 lines
2.4 KiB
TypeScript

/* eslint-disable @typescript-eslint/unbound-method */
//
// Copyright © 2022 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 { type BrandingMap } from '@hcengineering/core'
import { BackupClientSession, buildStorageFromConfig, getMetricsContext } from '@hcengineering/server'
import { type Pipeline, type StorageConfiguration } from '@hcengineering/server-core'
import { type Token } from '@hcengineering/server-token'
import { ClientSession, start as startJsonRpc, type ServerFactory, type Session } from '@hcengineering/server-ws'
import { createServerPipeline, registerServerPlugins, registerStringLoaders } from '@hcengineering/server-pipeline'
registerStringLoaders()
/**
* @public
*/
export function start (
dbUrl: string,
opt: {
fullTextUrl: string
storageConfig: StorageConfiguration
rekoniUrl: string
port: number
productId: string
brandingMap: BrandingMap
serverFactory: ServerFactory
indexProcessing: number // 1000
indexParallel: number // 2
enableCompression?: boolean
accountsUrl: string
}
): () => Promise<void> {
const metrics = getMetricsContext()
registerServerPlugins()
const externalStorage = buildStorageFromConfig(opt.storageConfig, dbUrl)
const pipelineFactory = createServerPipeline(metrics, dbUrl, { ...opt, externalStorage })
const sessionFactory = (token: Token, pipeline: Pipeline): Session => {
if (token.extra?.mode === 'backup') {
return new BackupClientSession(token, pipeline)
}
return new ClientSession(token, pipeline)
}
const onClose = startJsonRpc(getMetricsContext(), {
pipelineFactory,
sessionFactory,
port: opt.port,
productId: opt.productId,
brandingMap: opt.brandingMap,
serverFactory: opt.serverFactory,
enableCompression: opt.enableCompression,
accountsUrl: opt.accountsUrl,
externalStorage
})
return async () => {
await externalStorage.close()
await onClose()
}
}