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.
|
|
|
|
//
|
|
|
|
|
2022-03-29 14:32:08 +00:00
|
|
|
import { TxOperations } from '@anticrm/core'
|
2021-12-16 09:06:56 +00:00
|
|
|
import {
|
2022-03-29 14:32:08 +00:00
|
|
|
MigrateOperation, MigrationClient, MigrationUpgradeClient
|
2021-12-16 09:06:56 +00:00
|
|
|
} from '@anticrm/model'
|
2021-12-22 09:25:16 +00:00
|
|
|
import core from '@anticrm/model-core'
|
|
|
|
import task from './plugin'
|
2021-12-07 18:45:11 +00:00
|
|
|
|
2022-03-17 05:05:30 +00:00
|
|
|
async function createDefaultProject (tx: TxOperations): Promise<void> {
|
|
|
|
const createTx = await tx.findOne(core.class.TxCreateDoc, {
|
|
|
|
objectId: task.space.TasksPublic
|
|
|
|
})
|
|
|
|
if (createTx === undefined) {
|
|
|
|
await tx.createDoc(
|
|
|
|
task.class.Project,
|
|
|
|
core.space.Space,
|
|
|
|
{
|
|
|
|
name: 'public',
|
|
|
|
description: 'Public tasks',
|
|
|
|
private: false,
|
|
|
|
archived: false,
|
|
|
|
members: []
|
|
|
|
},
|
|
|
|
task.space.TasksPublic
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function createDefaultSequence (tx: TxOperations): Promise<void> {
|
|
|
|
const current = await tx.findOne(core.class.Space, {
|
|
|
|
_id: task.space.Sequence
|
|
|
|
})
|
|
|
|
if (current === undefined) {
|
|
|
|
await tx.createDoc(
|
|
|
|
core.class.Space,
|
|
|
|
core.space.Space,
|
|
|
|
{
|
|
|
|
name: 'Sequences',
|
|
|
|
description: 'Internal space to store sequence numbers',
|
|
|
|
members: [],
|
|
|
|
private: false,
|
|
|
|
archived: false
|
|
|
|
},
|
|
|
|
task.space.Sequence
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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> {
|
|
|
|
},
|
|
|
|
async upgrade (client: MigrationUpgradeClient): Promise<void> {
|
2022-01-14 09:04:56 +00:00
|
|
|
const tx = new TxOperations(client, core.account.System)
|
2022-03-17 05:05:30 +00:00
|
|
|
await createDefaultSequence(tx)
|
|
|
|
await createDefaultProject(tx)
|
2021-12-22 09:25:16 +00:00
|
|
|
}
|
2021-12-07 18:45:11 +00:00
|
|
|
}
|