mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-22 17:45:02 +02:00
1. Put 'secret' into one place, server-token 2. Fix server crash on rare unknown workspaces cases. 3. Upgrade now kick all clients and reload transactions. 4. Fix Front shutdown Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
49 lines
1.8 KiB
TypeScript
49 lines
1.8 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 type { Request, Response } from '@anticrm/platform'
|
|
import platform, { Status, Severity } from '@anticrm/platform'
|
|
|
|
import { generateToken } from '@anticrm/server-token'
|
|
|
|
interface LoginInfo {
|
|
token: string
|
|
endpoint: string
|
|
}
|
|
|
|
function login (endpoint: string, email: string, password: string, workspace: string): Response<LoginInfo> {
|
|
if (email !== 'rosamund@hc.engineering' && email !== 'elon@hc.engineering') {
|
|
return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) }
|
|
}
|
|
|
|
if (password !== '1111') {
|
|
return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) }
|
|
}
|
|
|
|
if (workspace !== 'ws1' && workspace !== 'ws2') {
|
|
return { error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) }
|
|
}
|
|
|
|
const token = generateToken(email, workspace)
|
|
return { result: { token, endpoint } }
|
|
}
|
|
|
|
export function handleRequest (req: Request<any[]>, serverEndpoint: string): Response<any> {
|
|
if (req.method === 'login') { return login(serverEndpoint, ...(req as Request<[string, string, string]>).params) }
|
|
|
|
return { error: new Status(Severity.ERROR, platform.status.BadRequest, {}) }
|
|
}
|