platform/models/chunter/src/migration.ts
Andrey Sobolev 2b03c56939
UBERF-9633: More proper fix (#8249)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-03-17 16:37:13 +04:00

324 lines
10 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 { chunterId, type ThreadMessage } from '@hcengineering/chunter'
import core, {
TxOperations,
type Class,
type Doc,
type Domain,
type Ref,
type Space,
DOMAIN_TX,
notEmpty
} from '@hcengineering/core'
import {
tryMigrate,
tryUpgrade,
type MigrateOperation,
type MigrationClient,
type MigrationUpgradeClient
} from '@hcengineering/model'
import activity, { migrateMessagesSpace, DOMAIN_ACTIVITY } from '@hcengineering/model-activity'
import notification from '@hcengineering/notification'
import contact, { getAllAccounts } from '@hcengineering/contact'
import { DOMAIN_DOC_NOTIFY, DOMAIN_NOTIFICATION } from '@hcengineering/model-notification'
import { type DocUpdateMessage } from '@hcengineering/activity'
import { DOMAIN_CHUNTER } from './index'
import chunter from './plugin'
export const DOMAIN_COMMENT = 'comment' as Domain
export async function createDocNotifyContexts (
client: MigrationUpgradeClient,
tx: TxOperations,
objectId: Ref<Doc>,
objectClass: Ref<Class<Doc>>,
objectSpace: Ref<Space>
): Promise<void> {
const employees = await client.findAll(contact.mixin.Employee, { active: true })
const accounts = employees.map((it) => it.personUuid).filter(notEmpty)
const docNotifyContexts = await client.findAll(notification.class.DocNotifyContext, {
user: { $in: accounts },
objectId
})
const existingDNCUsers = new Set(docNotifyContexts.map((it) => it.user))
for (const account of accounts.filter((it) => !existingDNCUsers.has(it))) {
await tx.createDoc(notification.class.DocNotifyContext, core.space.Space, {
user: account,
objectId,
objectClass,
objectSpace,
hidden: false,
isPinned: false
})
}
}
export async function createGeneral (client: MigrationUpgradeClient, tx: TxOperations): Promise<void> {
const current = await tx.findOne(chunter.class.Channel, { _id: chunter.space.General })
if (current !== undefined) {
if (current.autoJoin === undefined) {
await tx.update(current, {
autoJoin: true
})
await joinEmployees(current, tx)
}
} else {
const createTx = await tx.findOne(core.class.TxCreateDoc, {
objectId: chunter.space.General
})
if (createTx === undefined) {
await tx.createDoc(
chunter.class.Channel,
core.space.Space,
{
name: 'general',
description: 'General Channel',
topic: 'General Channel',
private: false,
archived: false,
members: await getAllAccounts(tx),
autoJoin: true
},
chunter.space.General
)
}
}
await createDocNotifyContexts(client, tx, chunter.space.General, chunter.class.Channel, core.space.Space)
}
async function joinEmployees (current: Space, tx: TxOperations): Promise<void> {
const allAccounts = await getAllAccounts(tx)
const newMembers = [...current.members]
for (const account of allAccounts) {
if (!newMembers.includes(account)) {
newMembers.push(account)
}
}
await tx.update(current, {
members: newMembers
})
}
export async function createRandom (client: MigrationUpgradeClient, tx: TxOperations): Promise<void> {
const current = await tx.findOne(chunter.class.Channel, { _id: chunter.space.Random })
if (current !== undefined) {
if (current.autoJoin === undefined) {
await tx.update(current, {
autoJoin: true
})
await joinEmployees(current, tx)
}
} else {
const createTx = await tx.findOne(core.class.TxCreateDoc, {
objectId: chunter.space.Random
})
if (createTx === undefined) {
await tx.createDoc(
chunter.class.Channel,
core.space.Space,
{
name: 'random',
description: 'Random Talks',
topic: 'Random Talks',
private: false,
archived: false,
members: await getAllAccounts(tx),
autoJoin: true
},
chunter.space.Random
)
}
}
await createDocNotifyContexts(client, tx, chunter.space.Random, chunter.class.Channel, core.space.Space)
}
async function convertCommentsToChatMessages (client: MigrationClient): Promise<void> {
await client.update(
DOMAIN_COMMENT,
{ _class: 'chunter:class:Comment' as Ref<Class<Doc>> },
{ _class: chunter.class.ChatMessage }
)
await client.move(DOMAIN_COMMENT, { _class: chunter.class.ChatMessage }, DOMAIN_ACTIVITY)
}
async function removeBacklinks (client: MigrationClient): Promise<void> {
await client.deleteMany(DOMAIN_COMMENT, { _class: 'chunter:class:Backlink' as Ref<Class<Doc>> })
await client.deleteMany(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
objectClass: 'chunter:class:Backlink' as Ref<Class<Doc>>
})
}
async function removeOldClasses (client: MigrationClient): Promise<void> {
const classes = [
'chunter:class:ChunterMessage',
'chunter:class:Message',
'chunter:class:Comment',
'chunter:class:Backlink'
] as Ref<Class<Doc>>[]
for (const _class of classes) {
await client.deleteMany(DOMAIN_CHUNTER, { _class })
await client.deleteMany(DOMAIN_ACTIVITY, { attachedToClass: _class })
await client.deleteMany(DOMAIN_ACTIVITY, { objectClass: _class })
await client.deleteMany(DOMAIN_NOTIFICATION, { attachedToClass: _class })
await client.deleteMany(DOMAIN_TX, { objectClass: _class })
await client.deleteMany(DOMAIN_TX, { 'tx.objectClass': _class })
}
}
async function removeWrongActivity (client: MigrationClient): Promise<void> {
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.Channel,
action: 'update',
'attributeUpdates.attrKey': { $ne: 'members' }
})
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.Channel,
action: 'create',
objectClass: { $ne: chunter.class.Channel }
})
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.Channel,
action: 'remove'
})
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.DirectMessage,
action: 'update',
'attributeUpdates.attrKey': { $ne: 'members' }
})
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.DirectMessage,
action: 'create'
})
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.DirectMessage,
action: 'remove'
})
}
export const chunterOperation: MigrateOperation = {
async migrate (client: MigrationClient, mode): Promise<void> {
await tryMigrate(mode, client, chunterId, [
{
state: 'create-chat-messages',
mode: 'upgrade',
func: convertCommentsToChatMessages
},
{
state: 'remove-backlinks',
mode: 'upgrade',
func: removeBacklinks
},
{
state: 'migrate-chat-messages-space',
mode: 'upgrade',
func: async (client) => {
await migrateMessagesSpace(
client,
chunter.class.ChatMessage,
({ attachedTo }) => attachedTo,
({ attachedToClass }) => attachedToClass
)
}
},
{
state: 'migrate-thread-messages-space',
mode: 'upgrade',
func: async (client) => {
await migrateMessagesSpace(
client,
chunter.class.ThreadMessage,
(msg) => (msg as ThreadMessage).objectId,
(msg) => (msg as ThreadMessage).objectClass
)
}
},
{
state: 'remove-old-classes-v1',
mode: 'upgrade',
func: async (client) => {
await removeOldClasses(client)
}
},
{
state: 'remove-wrong-activity-v1',
mode: 'upgrade',
func: async (client) => {
await removeWrongActivity(client)
}
},
{
state: 'remove-chat-info-v1',
mode: 'upgrade',
func: async (client) => {
await client.deleteMany(DOMAIN_CHUNTER, { _class: 'chunter:class:ChatInfo' as Ref<Class<Doc>> })
await client.deleteMany(DOMAIN_TX, { objectClass: 'chunter:class:ChatInfo' })
await client.update(
DOMAIN_DOC_NOTIFY,
{ 'chunter:mixin:ChannelInfo': { $exists: true } },
{ $unset: { 'chunter:mixin:ChannelInfo': true } }
)
await client.deleteMany(DOMAIN_TX, { mixin: 'chunter:mixin:ChannelInfo' })
}
},
{
state: 'remove-direct-doc-update-messages',
mode: 'upgrade',
func: async (client) => {
await client.deleteMany<DocUpdateMessage>(DOMAIN_ACTIVITY, {
_class: activity.class.DocUpdateMessage,
attachedToClass: chunter.class.DirectMessage
})
}
}
])
},
async upgrade (state: Map<string, Set<string>>, client: () => Promise<MigrationUpgradeClient>, mode): Promise<void> {
await tryUpgrade(mode, state, client, chunterId, [
{
state: 'create-defaults-v2',
func: async (client) => {
const tx = new TxOperations(client, core.account.System)
await createGeneral(client, tx)
await createRandom(client, tx)
}
}
])
}
}