2021-12-07 18:45:11 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
2021-12-22 09:25:16 +00:00
|
|
|
import { AttachedDoc, Class, Doc, Domain, DOMAIN_TX, Ref, TxCollectionCUD, TxCreateDoc, TxCUD, TxOperations } from '@anticrm/core'
|
2021-12-16 09:06:56 +00:00
|
|
|
import {
|
|
|
|
MigrateOperation,
|
2021-12-22 09:25:16 +00:00
|
|
|
MigrateUpdate,
|
2021-12-16 09:06:56 +00:00
|
|
|
MigrationClient,
|
|
|
|
MigrationResult,
|
|
|
|
MigrationUpgradeClient
|
|
|
|
} from '@anticrm/model'
|
2021-12-22 09:25:16 +00:00
|
|
|
import core from '@anticrm/model-core'
|
|
|
|
import { Issue } from '@anticrm/task'
|
|
|
|
import { DOMAIN_TASK, DOMAIN_STATE, DOMAIN_KANBAN } from '.'
|
|
|
|
import task from './plugin'
|
2021-12-07 18:45:11 +00:00
|
|
|
|
2021-12-22 09:04:07 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2021-12-15 09:04:43 +00:00
|
|
|
function logInfo (msg: string, result: MigrationResult): void {
|
|
|
|
if (result.updated > 0) {
|
2021-12-16 09:06:56 +00:00
|
|
|
console.log(`Task: Migrate ${msg} ${result.updated}`)
|
2021-12-15 09:04:43 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-22 09:25:16 +00:00
|
|
|
async function migrateClass<T extends Doc> (
|
|
|
|
client: MigrationClient,
|
|
|
|
domain: Domain,
|
|
|
|
from: Ref<Class<Doc>>,
|
|
|
|
to: Ref<Class<T>>,
|
|
|
|
extraOps: MigrateUpdate<T> = {},
|
|
|
|
txExtraOps: MigrateUpdate<TxCUD<Doc>> = {}
|
|
|
|
): Promise<void> {
|
|
|
|
logInfo(`${from} => ${to}: `, await client.update<Doc>(domain, { _class: from }, { ...extraOps, _class: to }))
|
|
|
|
logInfo(
|
|
|
|
`${from} => ${to} Transactions`,
|
|
|
|
await client.update<TxCUD<Doc>>(DOMAIN_TX, { objectClass: from }, { ...txExtraOps, objectClass: to })
|
|
|
|
)
|
|
|
|
logInfo(
|
|
|
|
`${from} => ${to} Collection transactions`,
|
|
|
|
// eslint-disable-next-line
|
|
|
|
await client.update<TxCollectionCUD<Doc, AttachedDoc>>(DOMAIN_TX, { ['tx.objectClass']: from }, { ['tx.objectClass']: to })
|
|
|
|
)
|
|
|
|
}
|
2021-12-15 09:04:43 +00:00
|
|
|
|
2021-12-07 18:45:11 +00:00
|
|
|
export const taskOperation: MigrateOperation = {
|
2021-12-22 09:25:16 +00:00
|
|
|
async migrate (client: MigrationClient): Promise<void> {
|
|
|
|
// Since we should not have Task class instances, we convert them all to Issue.
|
|
|
|
await migrateClass(client, DOMAIN_TASK, task.class.Task, task.class.Issue)
|
|
|
|
await migrateClass(client, DOMAIN_STATE, 'core:class:State' as Ref<Class<Doc>>, task.class.State)
|
|
|
|
await migrateClass(client, DOMAIN_STATE, 'core:class:WonState' as Ref<Class<Doc>>, task.class.WonState)
|
|
|
|
await migrateClass(client, DOMAIN_STATE, 'core:class:LostState' as Ref<Class<Doc>>, task.class.LostState)
|
|
|
|
await migrateClass(client, DOMAIN_KANBAN, 'view:class:Kanban' as Ref<Class<Doc>>, task.class.Kanban)
|
|
|
|
await migrateClass(
|
|
|
|
client,
|
|
|
|
DOMAIN_KANBAN,
|
|
|
|
'view:class:Sequence' as Ref<Class<Doc>>,
|
|
|
|
task.class.Sequence,
|
|
|
|
{ space: task.space.Sequence },
|
|
|
|
{ objectSpace: task.space.Sequence }
|
|
|
|
)
|
|
|
|
|
|
|
|
await migrateClass(client, DOMAIN_KANBAN, 'view:class:KanbanTemplate' as Ref<Class<Doc>>, task.class.KanbanTemplate)
|
|
|
|
await migrateClass(client, DOMAIN_KANBAN, 'view:class:StateTemplate' as Ref<Class<Doc>>, task.class.StateTemplate)
|
|
|
|
await migrateClass(
|
|
|
|
client,
|
|
|
|
DOMAIN_KANBAN,
|
|
|
|
'view:class:DoneStateTemplate' as Ref<Class<Doc>>,
|
|
|
|
task.class.DoneStateTemplate
|
|
|
|
)
|
|
|
|
await migrateClass(
|
|
|
|
client,
|
|
|
|
DOMAIN_KANBAN,
|
|
|
|
'view:class:WonStateTemplate' as Ref<Class<Doc>>,
|
|
|
|
task.class.WonStateTemplate
|
|
|
|
)
|
|
|
|
await migrateClass(
|
|
|
|
client,
|
|
|
|
DOMAIN_KANBAN,
|
|
|
|
'view:class:LostStateTemplate' as Ref<Class<Doc>>,
|
|
|
|
task.class.LostStateTemplate
|
|
|
|
)
|
|
|
|
|
|
|
|
const txes = await client.find<TxCreateDoc<Issue>>(DOMAIN_TX, {
|
|
|
|
_class: core.class.TxCreateDoc,
|
|
|
|
objectClass: task.class.Issue
|
|
|
|
})
|
|
|
|
for (const tx of txes) {
|
|
|
|
if (tx.attributes.attachedTo !== undefined) continue
|
|
|
|
await client.update<TxCreateDoc<Issue>>(DOMAIN_TX, { _id: tx._id }, {
|
|
|
|
attributes: {
|
|
|
|
...tx.attributes,
|
|
|
|
attachedTo: task.global.Task,
|
|
|
|
attachedToClass: task.class.Issue
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
const nullTxes = await client.find<TxCollectionCUD<Doc, AttachedDoc>>(DOMAIN_TX, {
|
|
|
|
objectClass: null
|
|
|
|
})
|
|
|
|
for (const tx of nullTxes) {
|
|
|
|
const doc = await client.find<TxCreateDoc<AttachedDoc>>(DOMAIN_TX, {
|
|
|
|
objectId: tx.tx.objectId,
|
|
|
|
_class: core.class.TxCreateDoc
|
|
|
|
})
|
|
|
|
await client.update<TxCollectionCUD<Doc, AttachedDoc>>(DOMAIN_TX, { _id: tx._id }, {
|
|
|
|
objectId: doc[0].attributes.attachedTo,
|
|
|
|
objectClass: doc[0].attributes.attachedToClass,
|
|
|
|
collection: doc[0].attributes.collection
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
async upgrade (client: MigrationUpgradeClient): Promise<void> {
|
|
|
|
console.log('Task: Performing model upgrades')
|
|
|
|
|
|
|
|
const ops = new TxOperations(client, core.account.System)
|
|
|
|
|
|
|
|
const tasks = await client.findAll(task.class.Issue, {})
|
|
|
|
for (const doc of tasks) {
|
|
|
|
if (doc.attachedTo === undefined) {
|
|
|
|
await ops.updateDoc(doc._class, doc.space, doc._id, {
|
|
|
|
attachedTo: task.global.Task,
|
|
|
|
attachedToClass: task.class.Issue
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-07 18:45:11 +00:00
|
|
|
}
|