mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-22 17:45:02 +02:00
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
120 lines
3.6 KiB
TypeScript
120 lines
3.6 KiB
TypeScript
//
|
|
// Copyright © 2024 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 attachment, { Attachment } from '@hcengineering/attachment'
|
|
import core, {
|
|
Client,
|
|
Data,
|
|
MeasureContext,
|
|
Ref,
|
|
systemAccountUuid,
|
|
TxOperations,
|
|
type WorkspaceUuid,
|
|
type Blob
|
|
} from '@hcengineering/core'
|
|
import drive, { createFile } from '@hcengineering/drive'
|
|
import love, { MeetingMinutes } from '@hcengineering/love'
|
|
import { generateToken } from '@hcengineering/server-token'
|
|
import { getClient } from './client'
|
|
import { RecordingPreset } from './preset'
|
|
|
|
export class WorkspaceClient {
|
|
private client!: TxOperations
|
|
|
|
private constructor (
|
|
private readonly workspace: WorkspaceUuid,
|
|
private readonly ctx: MeasureContext
|
|
) {}
|
|
|
|
static async create (workspace: WorkspaceUuid, ctx: MeasureContext): Promise<WorkspaceClient> {
|
|
const instance = new WorkspaceClient(workspace, ctx)
|
|
await instance.initClient(workspace)
|
|
return instance
|
|
}
|
|
|
|
async close (): Promise<void> {
|
|
await this.client.close()
|
|
}
|
|
|
|
private async initClient (workspace: WorkspaceUuid): Promise<Client> {
|
|
const token = generateToken(systemAccountUuid, workspace, { service: 'love' })
|
|
const client = await getClient(token)
|
|
this.client = new TxOperations(client, core.account.System)
|
|
return this.client
|
|
}
|
|
|
|
async saveFile (
|
|
uuid: string,
|
|
name: string,
|
|
blob: Blob,
|
|
preset: RecordingPreset,
|
|
meetingMinutes?: Ref<MeetingMinutes>
|
|
): Promise<void> {
|
|
this.ctx.info('Save recording', { workspace: this.workspace, meetingMinutes })
|
|
const current = await this.client.findOne(drive.class.Drive, { _id: love.space.Drive })
|
|
if (current === undefined) {
|
|
await this.client.createDoc(
|
|
drive.class.Drive,
|
|
core.space.Space,
|
|
{
|
|
private: false,
|
|
archived: false,
|
|
members: [],
|
|
name: 'Records',
|
|
description: 'Office records',
|
|
type: drive.spaceType.DefaultDrive,
|
|
autoJoin: true
|
|
},
|
|
love.space.Drive
|
|
)
|
|
}
|
|
const data = {
|
|
file: uuid as Ref<Blob>,
|
|
size: blob.size,
|
|
type: blob.contentType,
|
|
lastModified: blob.modifiedOn,
|
|
// hardcoded values from preset we use
|
|
// https://docs.livekit.io/realtime/egress/overview/#EncodingOptionsPreset
|
|
metadata: {
|
|
originalHeight: preset.height,
|
|
originalWidth: preset.width
|
|
}
|
|
}
|
|
await createFile(this.client, love.space.Drive, drive.ids.Root, { ...data, title: name })
|
|
await this.attachToMeetingMinutes({ ...data, name }, meetingMinutes)
|
|
}
|
|
|
|
async attachToMeetingMinutes (
|
|
data: Omit<Data<Attachment>, 'attachedToClass' | 'attachedTo' | 'collection'>,
|
|
ref?: Ref<MeetingMinutes>
|
|
): Promise<void> {
|
|
if (ref === undefined) return
|
|
|
|
const meeting = await this.client.findOne(love.class.MeetingMinutes, { _id: ref })
|
|
if (meeting === undefined) {
|
|
this.ctx.error('Meeting not found', { _id: ref })
|
|
return
|
|
}
|
|
|
|
await this.client.addCollection(
|
|
attachment.class.Attachment,
|
|
meeting.space,
|
|
meeting._id,
|
|
meeting._class,
|
|
'attachments',
|
|
data
|
|
)
|
|
}
|
|
}
|