Files
2025-10-14 21:17:08 +07:00

176 lines
6.0 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 type { SessionData as CommunicationSession, Event, ServerApi } from '@hcengineering/communication-sdk-types'
import core, {
generateId,
type DomainParams,
type DomainResult,
type MeasureContext,
type OperationDomain,
type SessionData,
type TxDomainEvent,
type WorkspaceIds
} from '@hcengineering/core'
import {
type CommunicationCallbacks,
type Middleware,
type MiddlewareCreator,
type PipelineContext,
BaseMiddleware
} from '@hcengineering/server-core'
export const COMMUNICATION_DOMAIN = 'communication' as OperationDomain
export type CommunicationApiFactory = (
ctx: MeasureContext,
ws: WorkspaceIds,
callbacks: CommunicationCallbacks
) => Promise<ServerApi>
/**
* @public
*/
export class CommunicationMiddleware extends BaseMiddleware implements Middleware {
constructor (
readonly ctx: MeasureContext,
context: PipelineContext,
readonly next: Middleware | undefined,
readonly communicationApi: ServerApi
) {
super(context, next)
}
static create (communicationApiFactory: CommunicationApiFactory): MiddlewareCreator {
return async (ctx, context, next): Promise<Middleware> => {
const communicationApi = await communicationApiFactory(ctx, context.workspace, {
registerAsyncRequest: (ctx, promise) => {
const contextData = ctx.contextData as SessionData
contextData.asyncRequests = [
...(contextData.asyncRequests ?? []),
async (_ctx) => {
await promise(_ctx)
}
]
},
broadcast: (ctx, result) => {
const contextData = ctx.contextData as SessionData
contextData.hasDomainBroadcast = true
for (const [sessionId, events] of Object.entries(result)) {
const txEvents = CommunicationMiddleware.wrapEvents(contextData, events)
contextData.broadcast.sessions[sessionId] = (contextData.broadcast.sessions[sessionId] ?? []).concat(
txEvents
)
}
},
enqueue: (ctx, result: Event[]) => {
const contextData = ctx.contextData as SessionData
const txEvents = CommunicationMiddleware.wrapEvents(contextData, result)
contextData.hasDomainBroadcast = true
contextData.broadcast.queue.push(...txEvents)
}
})
return new CommunicationMiddleware(ctx, context, next, communicationApi)
}
}
private static wrapEvents (ctx: SessionData, result: Event[]): TxDomainEvent[] {
return result.map((it) => ({
_id: generateId(),
space: core.space.Tx,
objectSpace: core.space.Domain,
_class: core.class.TxDomainEvent,
domain: COMMUNICATION_DOMAIN,
event: it,
modifiedBy: ctx.account.primarySocialId,
modifiedOn: Date.now()
}))
}
async domainRequest (ctx: MeasureContext, domain: OperationDomain, params: DomainParams): Promise<DomainResult> {
if (domain === COMMUNICATION_DOMAIN) {
return {
domain,
value: await this.handleCommand(ctx, params)
}
} else {
return await this.provideDomainRequest(ctx, domain, params)
}
}
async close (): Promise<void> {
await this.communicationApi.close()
}
async handleCommand (_ctx: MeasureContext<SessionData>, args: DomainParams): Promise<any> {
const ctx = this.getCommunicationCtx(_ctx)
if (args.findMessagesMeta !== undefined) {
const { params } = args.findMessagesMeta
return await this.communicationApi.findMessagesMeta(ctx, params)
}
if (args.findMessagesGroups !== undefined) {
const { params } = args.findMessagesGroups
return await this.communicationApi.findMessagesGroups(ctx, params)
}
if (args.findNotificationContexts !== undefined) {
const { params, subscription } = args.findNotificationContexts
return await this.communicationApi.findNotificationContexts(ctx, params, subscription)
}
if (args.findNotifications !== undefined) {
const { params, subscription } = args.findNotifications
return await this.communicationApi.findNotifications(ctx, params, subscription)
}
if (args.findLabels !== undefined) {
const { params } = args.findLabels
return await this.communicationApi.findLabels(ctx, params)
}
if (args.findCollaborators !== undefined) {
const { params } = args.findCollaborators
return await this.communicationApi.findCollaborators(ctx, params)
}
if (args.findPeers !== undefined) {
const { params } = args.findPeers
return await this.communicationApi.findPeers(ctx, params)
}
if (args.subscribeCard !== undefined) {
const { cardId, subscription } = args.subscribeCard
this.communicationApi.subscribeCard(ctx, cardId, subscription)
return
}
if (args.unsubscribeCard !== undefined) {
const { cardId, subscription } = args.unsubscribeCard
this.communicationApi.unsubscribeCard(ctx, cardId, subscription)
return
}
if (args.event !== undefined) {
const event = args.event
return await this.communicationApi.event(ctx, event)
}
return {}
}
private getCommunicationCtx (ctx: MeasureContext<SessionData>): CommunicationSession {
return {
...ctx,
sessionId: ctx.contextData.sessionId,
asyncData: [],
derived: ctx.contextData.isTriggerCtx === true,
// TODO: We should decide what to do with communications package and remove this workaround
account: ctx.contextData.account
}
}
}