2023-12-12 08:16:06 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 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 { MinioService } from '@hcengineering/minio'
|
|
|
|
import { setMetadata } from '@hcengineering/platform'
|
|
|
|
import serverToken from '@hcengineering/server-token'
|
2023-12-25 09:49:08 +00:00
|
|
|
import { MongoClient } from 'mongodb'
|
2023-12-12 08:16:06 +00:00
|
|
|
|
|
|
|
import config from './config'
|
|
|
|
import { metricsContext } from './metrics'
|
|
|
|
import { start } from './server'
|
|
|
|
|
2023-12-25 09:49:08 +00:00
|
|
|
export async function startCollaborator (): Promise<void> {
|
2023-12-12 08:16:06 +00:00
|
|
|
setMetadata(serverToken.metadata.Secret, config.Secret)
|
|
|
|
|
|
|
|
let minioPort = 9000
|
|
|
|
let minioEndpoint = config.MinioEndpoint
|
|
|
|
const sp = minioEndpoint.split(':')
|
|
|
|
if (sp.length > 1) {
|
|
|
|
minioEndpoint = sp[0]
|
|
|
|
minioPort = parseInt(sp[1])
|
|
|
|
}
|
|
|
|
|
2023-12-25 09:49:08 +00:00
|
|
|
const minioClient = new MinioService({
|
2023-12-12 08:16:06 +00:00
|
|
|
endPoint: minioEndpoint,
|
|
|
|
port: minioPort,
|
|
|
|
useSSL: false,
|
|
|
|
accessKey: config.MinioAccessKey,
|
|
|
|
secretKey: config.MinioSecretKey
|
|
|
|
})
|
|
|
|
|
2023-12-25 09:49:08 +00:00
|
|
|
const mongoClient = await MongoClient.connect(config.MongoUrl)
|
|
|
|
|
|
|
|
const shutdown = await start(metricsContext, config, minioClient, mongoClient)
|
2023-12-12 08:16:06 +00:00
|
|
|
|
|
|
|
const close = (): void => {
|
2024-02-07 04:48:44 +00:00
|
|
|
void shutdown().then(() => {
|
|
|
|
void mongoClient.close()
|
|
|
|
})
|
2024-04-25 15:15:11 +00:00
|
|
|
metricsContext.info('closed')
|
2023-12-12 08:16:06 +00:00
|
|
|
}
|
|
|
|
|
2024-01-04 08:36:40 +00:00
|
|
|
process.on('uncaughtException', (e) => {
|
2024-04-25 15:15:11 +00:00
|
|
|
metricsContext.error('UncaughtException', { error: e })
|
2024-01-04 08:36:40 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
process.on('unhandledRejection', (reason, promise) => {
|
2024-04-25 15:15:11 +00:00
|
|
|
metricsContext.error('Unhandled Rejection at:', { promise, reason })
|
2024-01-04 08:36:40 +00:00
|
|
|
})
|
|
|
|
|
2023-12-12 08:16:06 +00:00
|
|
|
process.on('SIGINT', close)
|
|
|
|
process.on('SIGTERM', close)
|
|
|
|
process.on('exit', close)
|
|
|
|
}
|