mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-26 22:32:23 +02:00
146 lines
4.4 KiB
TypeScript
146 lines
4.4 KiB
TypeScript
//
|
|
// 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 { setMetadata } from '@hcengineering/platform'
|
|
import serverClient from '@hcengineering/server-client'
|
|
import { initStatisticsContext, type StorageConfiguration } from '@hcengineering/server-core'
|
|
import { buildStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage'
|
|
import serverToken, { decodeToken } from '@hcengineering/server-token'
|
|
import { type IncomingHttpHeaders } from 'http'
|
|
import { decode64 } from './base64'
|
|
import config from './config'
|
|
import { GmailController } from './gmailController'
|
|
import { createServer, listen } from './server'
|
|
import { closeDB, getDB } from './storage'
|
|
import { type Endpoint, type State } from './types'
|
|
|
|
const extractToken = (header: IncomingHttpHeaders): any => {
|
|
try {
|
|
return header.authorization?.slice(7) ?? ''
|
|
} catch {
|
|
return undefined
|
|
}
|
|
}
|
|
|
|
export const main = async (): Promise<void> => {
|
|
const ctx = initStatisticsContext('gmail', {})
|
|
|
|
setMetadata(serverClient.metadata.Endpoint, config.AccountsURL)
|
|
setMetadata(serverClient.metadata.UserAgent, config.ServiceID)
|
|
setMetadata(serverToken.metadata.Secret, config.Secret)
|
|
|
|
const storageConfig: StorageConfiguration = storageConfigFromEnv()
|
|
const storageAdapter = buildStorageFromConfig(storageConfig)
|
|
|
|
const db = await getDB()
|
|
const gmailController = GmailController.create(ctx, db, storageAdapter)
|
|
await gmailController.startAll()
|
|
const endpoints: Endpoint[] = [
|
|
{
|
|
endpoint: '/signin',
|
|
type: 'get',
|
|
handler: async (req, res) => {
|
|
try {
|
|
const token = extractToken(req.headers)
|
|
|
|
if (token === undefined) {
|
|
res.status(401).send()
|
|
return
|
|
}
|
|
const redirectURL = req.query.redirectURL as string
|
|
|
|
const { email, workspace } = decodeToken(token)
|
|
const gmail = await gmailController.getGmailClient(email, workspace.name, token)
|
|
const url = gmail.getAutUrl(redirectURL)
|
|
res.send(url)
|
|
} catch (err) {
|
|
console.log('signin error', (err as any).message)
|
|
res.status(500).send()
|
|
}
|
|
}
|
|
},
|
|
{
|
|
endpoint: '/signin/code',
|
|
type: 'get',
|
|
handler: async (req, res) => {
|
|
const code = req.query.code as string
|
|
const state = JSON.parse(decode64(req.query.state as string)) as unknown as State
|
|
const gmail = await gmailController.createClient(state)
|
|
await gmail.authorize(code)
|
|
res.redirect(state.redirectURL)
|
|
}
|
|
},
|
|
{
|
|
endpoint: '/signout',
|
|
type: 'get',
|
|
handler: async (req, res) => {
|
|
try {
|
|
const token = extractToken(req.headers)
|
|
|
|
if (token === undefined) {
|
|
res.status(401).send()
|
|
return
|
|
}
|
|
|
|
const { email, workspace } = decodeToken(token)
|
|
await gmailController.signout(workspace.name, email)
|
|
} catch (err) {
|
|
console.log('signout error', JSON.stringify(err))
|
|
}
|
|
|
|
res.send()
|
|
}
|
|
},
|
|
{
|
|
endpoint: '/push',
|
|
type: 'post',
|
|
handler: async (req, res) => {
|
|
const data = req.body?.message?.data
|
|
if (data === undefined) {
|
|
res.status(400).send({ err: "'data' is missing" })
|
|
return
|
|
}
|
|
gmailController.push(data)
|
|
|
|
res.send()
|
|
}
|
|
}
|
|
]
|
|
|
|
const server = listen(createServer(endpoints), config.Port)
|
|
|
|
const asyncClose = async (): Promise<void> => {
|
|
await gmailController.close()
|
|
await storageAdapter.close()
|
|
await closeDB()
|
|
}
|
|
|
|
const shutdown = (): void => {
|
|
server.close(() => {
|
|
void asyncClose().then(() => process.exit())
|
|
})
|
|
}
|
|
|
|
process.on('SIGINT', shutdown)
|
|
process.on('SIGTERM', shutdown)
|
|
process.on('uncaughtException', (e) => {
|
|
console.error(e)
|
|
})
|
|
process.on('unhandledRejection', (e) => {
|
|
console.error(e)
|
|
})
|
|
}
|