mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-08 16:33:16 +00:00
74 lines
2.8 KiB
TypeScript
74 lines
2.8 KiB
TypeScript
//
|
|
// 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 { MeasureContext, systemAccountEmail, type Branding, type WorkspaceIdWithUrl } from '@hcengineering/core'
|
|
import { setMetadata } from '@hcengineering/platform'
|
|
import { backupService } from '@hcengineering/server-backup'
|
|
import serverClientPlugin from '@hcengineering/server-client'
|
|
import { type DbConfiguration, type PipelineFactory, type StorageAdapter } from '@hcengineering/server-core'
|
|
import { buildStorageFromConfig, createStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage'
|
|
import serverToken, { generateToken } from '@hcengineering/server-token'
|
|
import config from './config'
|
|
|
|
export function startBackup (
|
|
ctx: MeasureContext,
|
|
pipelineFactoryFactory: (mongoUrl: string, storage: StorageAdapter) => PipelineFactory,
|
|
getConfig: (
|
|
ctx: MeasureContext,
|
|
dbUrls: string,
|
|
workspace: WorkspaceIdWithUrl,
|
|
branding: Branding | null,
|
|
externalStorage: StorageAdapter
|
|
) => DbConfiguration
|
|
): void {
|
|
setMetadata(serverToken.metadata.Secret, config.Secret)
|
|
setMetadata(serverClientPlugin.metadata.Endpoint, config.AccountsURL)
|
|
setMetadata(serverClientPlugin.metadata.UserAgent, config.ServiceID)
|
|
|
|
const mainDbUrl = config.DbURL
|
|
const rawDbUrl = config.MongoURL
|
|
|
|
const backupStorageConfig = storageConfigFromEnv(config.Storage)
|
|
const workspaceStorageConfig = storageConfigFromEnv(config.WorkspaceStorage)
|
|
|
|
const storageAdapter = createStorageFromConfig(backupStorageConfig.storages[0])
|
|
const workspaceStorageAdapter = buildStorageFromConfig(workspaceStorageConfig, rawDbUrl ?? mainDbUrl)
|
|
|
|
const pipelineFactory = pipelineFactoryFactory(mainDbUrl, workspaceStorageAdapter)
|
|
|
|
// A token to access account service
|
|
const token = generateToken(systemAccountEmail, { name: 'backup' })
|
|
|
|
const shutdown = backupService(
|
|
ctx,
|
|
storageAdapter,
|
|
{ ...config, Token: token },
|
|
pipelineFactory,
|
|
workspaceStorageAdapter,
|
|
(ctx, workspace, branding, externalStorage) => {
|
|
return getConfig(ctx, mainDbUrl, workspace, branding, externalStorage)
|
|
}
|
|
)
|
|
|
|
process.on('SIGINT', shutdown)
|
|
process.on('SIGTERM', shutdown)
|
|
process.on('uncaughtException', (e) => {
|
|
ctx.error('uncaughtException', { err: e })
|
|
})
|
|
process.on('unhandledRejection', (e) => {
|
|
ctx.error('unhandledRejection', { err: e })
|
|
})
|
|
}
|