platform/server-plugins/guest-resources/src/index.ts
Andrey Sobolev 604e37576a
UBERF-5734: Fix guest mode display of server generated links (#4790)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-02-27 22:42:17 +07:00

120 lines
3.4 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 {
Doc,
Hierarchy,
Ref,
Tx,
TxCreateDoc,
TxOperations,
TxProcessor,
WorkspaceId,
concatLink,
generateId
} from '@hcengineering/core'
import guest, { PublicLink, guestAccountEmail, guestId } from '@hcengineering/guest'
import { getMetadata } from '@hcengineering/platform'
import serverCore, { TriggerControl } from '@hcengineering/server-core'
import { generateToken } from '@hcengineering/server-token'
import view from '@hcengineering/view'
/**
* @public
*/
export async function OnPublicLinkCreate (tx: Tx, control: TriggerControl): Promise<Tx[]> {
const res: Tx[] = []
const extractedTx = TxProcessor.extractTx(tx)
const createTx = extractedTx as TxCreateDoc<PublicLink>
const link = TxProcessor.createDoc2Doc<PublicLink>(createTx)
if (link.url !== '') return res
const resTx = control.txFactory.createTxUpdateDoc(link._class, link.space, link._id, {
url: generateUrl(link._id, control.workspace)
})
res.push(resTx)
return res
}
export function getPublicLinkUrl (workspace: WorkspaceId): string {
const front = getMetadata(serverCore.metadata.FrontUrl) ?? ''
const path = `${guestId}/${workspace.name}`
return concatLink(front, path)
}
function generateUrl (linkId: Ref<PublicLink>, workspace: WorkspaceId): string {
const token = generateToken(guestAccountEmail, workspace, { linkId, guest: 'true' })
return `${getPublicLinkUrl(workspace)}?token=${token}`
}
export async function getPublicLink (
doc: Doc,
client: TxOperations,
workspace: WorkspaceId,
revokable: boolean = true
): Promise<string> {
const current = await client.findOne(guest.class.PublicLink, { attachedTo: doc._id })
if (current !== undefined) {
if (!revokable && current.revokable) {
await client.update(current, { revokable: false })
}
return current.url
}
const id = generateId<PublicLink>()
const url = generateUrl(id, workspace)
const fragment = getDocFragment(doc, client)
await client.createDoc(
guest.class.PublicLink,
guest.space.Links,
{
attachedTo: doc._id,
location: {
path: [],
fragment
},
revokable,
restrictions: {
readonly: true,
disableNavigation: true,
disableActions: true,
disableComments: true
},
url
},
id
)
return url
}
function getDocFragment (object: Doc, client: TxOperations): string {
const panelComponent = client.getHierarchy().classHierarchyMixin(object._class, view.mixin.ObjectPanel)
const comp = panelComponent?.component ?? view.component.EditDoc
const props = [comp, object._id, Hierarchy.mixinOrClass(object), 'content']
return encodeURIComponent(props.join('|'))
}
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export default async () => ({
trigger: {
OnPublicLinkCreate
}
})