platform/plugins/view-resources/src/visibilityTester.ts
Denis Bykhov 1e0e5de097
Space actions (#5574)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2024-05-10 18:54:34 +07:00

131 lines
3.5 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 core, { checkPermission, type Space, type Doc, type TypedSpace, getCurrentAccount } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
function isTypedSpace (space: Space): space is TypedSpace {
return getClient().getHierarchy().isDerived(space._class, core.class.TypedSpace)
}
export async function canDeleteObject (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined) {
return false
}
const client = getClient()
const targets = Array.isArray(doc) ? doc : [doc]
// Note: allow deleting objects in NOT typed spaces for now
const targetSpaces = (await client.findAll(core.class.Space, { _id: { $in: targets.map((t) => t.space) } })).filter(
isTypedSpace
)
return !(
await Promise.all(
Array.from(new Set(targetSpaces.map((t) => t._id))).map(
async (s) => await checkPermission(client, core.permission.ForbidDeleteObject, s)
)
)
).some((r) => r)
}
export async function canEditSpace (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined || Array.isArray(doc)) {
return false
}
const space = doc as Space
if (space.owners?.includes(getCurrentAccount()._id) ?? false) {
return true
}
const client = getClient()
if (await checkPermission(client, core.permission.UpdateObject, core.space.Space)) {
return true
}
if (isTypedSpace(space) && (await checkPermission(client, core.permission.UpdateSpace, space._id))) {
return true
}
return false
}
export async function canArchiveSpace (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined || Array.isArray(doc)) {
return false
}
const space = doc as Space
if (space.owners?.includes(getCurrentAccount()._id) ?? false) {
return true
}
const client = getClient()
if (await checkPermission(client, core.permission.DeleteObject, core.space.Space)) {
return true
}
if (isTypedSpace(space) && (await checkPermission(client, core.permission.ArchiveSpace, space._id))) {
return true
}
return false
}
export async function canDeleteSpace (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined || Array.isArray(doc)) {
return false
}
const space = doc as Space
if (space.owners?.includes(getCurrentAccount()._id) ?? false) {
return true
}
const client = getClient()
if (await checkPermission(client, core.permission.DeleteObject, core.space.Space)) {
return true
}
return false
}
export async function canJoinSpace (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined || Array.isArray(doc)) {
return false
}
const space = doc as Space
return !space.members?.includes(getCurrentAccount()._id)
}
export async function canLeaveSpace (doc?: Doc | Doc[]): Promise<boolean> {
if (doc === undefined || Array.isArray(doc)) {
return false
}
const space = doc as Space
return space.members?.includes(getCurrentAccount()._id)
}