mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-29 11:19:44 +02:00
166 lines
5.1 KiB
TypeScript
166 lines
5.1 KiB
TypeScript
//
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// 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 clientPlugin from '@hcengineering/client'
|
|
import core, {
|
|
AccountClient,
|
|
ClientConnectEvent,
|
|
LoadModelResponse,
|
|
Tx,
|
|
TxHandler,
|
|
TxPersistenceStore,
|
|
TxWorkspaceEvent,
|
|
WorkspaceEvent,
|
|
createClient
|
|
} from '@hcengineering/core'
|
|
import platform, {
|
|
Severity,
|
|
Status,
|
|
getMetadata,
|
|
getPlugins,
|
|
getResource,
|
|
setPlatformStatus
|
|
} from '@hcengineering/platform'
|
|
import { connect } from './connection'
|
|
|
|
export { connect }
|
|
|
|
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
|
export default async () => {
|
|
return {
|
|
function: {
|
|
GetClient: async (
|
|
token: string,
|
|
endpoint: string,
|
|
onUpgrade?: () => void,
|
|
onUnauthorized?: () => void,
|
|
onConnect?: (event: ClientConnectEvent) => void
|
|
): Promise<AccountClient> => {
|
|
const filterModel = getMetadata(clientPlugin.metadata.FilterModel) ?? false
|
|
|
|
let client = createClient(
|
|
(handler: TxHandler) => {
|
|
const url = new URL(`/${token}`, endpoint)
|
|
|
|
const upgradeHandler: TxHandler = (...txes: Tx[]) => {
|
|
for (const tx of txes) {
|
|
if (tx?._class === core.class.TxWorkspaceEvent) {
|
|
const event = tx as TxWorkspaceEvent
|
|
if (event.event === WorkspaceEvent.Upgrade) {
|
|
onUpgrade?.()
|
|
} else if (event.event === WorkspaceEvent.MaintenanceNotification) {
|
|
void setPlatformStatus(
|
|
new Status(Severity.WARNING, platform.status.MaintenanceWarning, {
|
|
time: event.params.timeMinutes
|
|
})
|
|
)
|
|
}
|
|
}
|
|
}
|
|
handler(...txes)
|
|
}
|
|
|
|
return connect(url.href, upgradeHandler, onUpgrade, onUnauthorized, onConnect)
|
|
},
|
|
filterModel ? [...getPlugins(), ...(getMetadata(clientPlugin.metadata.ExtraPlugins) ?? [])] : undefined,
|
|
createModelPersistence(token)
|
|
)
|
|
// Check if we had dev hook for client.
|
|
client = hookClient(client)
|
|
return await client
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function createModelPersistence (token: string): TxPersistenceStore | undefined {
|
|
let dbRequest: IDBOpenDBRequest | undefined
|
|
let dbPromise: Promise<IDBDatabase | undefined> = Promise.resolve(undefined)
|
|
|
|
if (typeof localStorage !== 'undefined') {
|
|
dbPromise = new Promise<IDBDatabase>((resolve) => {
|
|
dbRequest = indexedDB.open('model.db.persistence', 2)
|
|
|
|
dbRequest.onupgradeneeded = function () {
|
|
const db = (dbRequest as IDBOpenDBRequest).result
|
|
if (!db.objectStoreNames.contains('model')) {
|
|
db.createObjectStore('model', { keyPath: 'id' })
|
|
}
|
|
}
|
|
dbRequest.onsuccess = function () {
|
|
const db = (dbRequest as IDBOpenDBRequest).result
|
|
resolve(db)
|
|
}
|
|
})
|
|
}
|
|
return {
|
|
load: async () => {
|
|
const db = await dbPromise
|
|
if (db !== undefined) {
|
|
const transaction = db.transaction('model', 'readwrite') // (1)
|
|
const models = transaction.objectStore('model') // (2)
|
|
const model = await new Promise<{ id: string, model: LoadModelResponse } | undefined>((resolve) => {
|
|
const storedValue: IDBRequest<{ id: string, model: LoadModelResponse }> = models.get(token)
|
|
storedValue.onsuccess = function () {
|
|
resolve(storedValue.result)
|
|
}
|
|
storedValue.onerror = function () {
|
|
resolve(undefined)
|
|
}
|
|
})
|
|
|
|
if (model == null) {
|
|
return {
|
|
full: false,
|
|
transactions: [],
|
|
hash: ''
|
|
}
|
|
}
|
|
return model.model
|
|
}
|
|
return {
|
|
full: true,
|
|
transactions: [],
|
|
hash: ''
|
|
}
|
|
},
|
|
store: async (model) => {
|
|
const db = await dbPromise
|
|
if (db !== undefined) {
|
|
const transaction = db.transaction('model', 'readwrite') // (1)
|
|
const models = transaction.objectStore('model') // (2)
|
|
models.put({ id: token, model })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async function hookClient (client: Promise<AccountClient>): Promise<AccountClient> {
|
|
const hook = getMetadata(clientPlugin.metadata.ClientHook)
|
|
if (hook !== undefined) {
|
|
const hookProc = await getResource(hook)
|
|
const _client = client
|
|
client = new Promise((resolve, reject) => {
|
|
_client
|
|
.then((res) => {
|
|
resolve(hookProc(res))
|
|
})
|
|
.catch((err) => {
|
|
reject(err)
|
|
})
|
|
})
|
|
}
|
|
return await client
|
|
}
|