mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-27007 Add migration of favorited channels to CreateInitialSidebarCategories * MM-27007 Rewrite migrateFavortitesToSidebarT to use ROW_NUMBER() when available * MM-27007 Remove automatic sidebar migration * Remove old i18n strings * Fix typo * Address feedback Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package migrations
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v5/app"
|
|
tjobs "github.com/mattermost/mattermost-server/v5/jobs/interfaces"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/store"
|
|
)
|
|
|
|
const (
|
|
MIGRATION_STATE_UNSCHEDULED = "unscheduled"
|
|
MIGRATION_STATE_IN_PROGRESS = "in_progress"
|
|
MIGRATION_STATE_COMPLETED = "completed"
|
|
|
|
JOB_DATA_KEY_MIGRATION = "migration_key"
|
|
JOB_DATA_KEY_MIGRATION_LAST_DONE = "last_done"
|
|
)
|
|
|
|
type MigrationsJobInterfaceImpl struct {
|
|
srv *app.Server
|
|
}
|
|
|
|
func init() {
|
|
app.RegisterJobsMigrationsJobInterface(func(s *app.Server) tjobs.MigrationsJobInterface {
|
|
return &MigrationsJobInterfaceImpl{s}
|
|
})
|
|
}
|
|
|
|
func MakeMigrationsList() []string {
|
|
return []string{
|
|
model.MIGRATION_KEY_ADVANCED_PERMISSIONS_PHASE_2,
|
|
}
|
|
}
|
|
|
|
func GetMigrationState(migration string, store store.Store) (string, *model.Job, *model.AppError) {
|
|
if _, err := store.System().GetByName(migration); err == nil {
|
|
return MIGRATION_STATE_COMPLETED, nil, nil
|
|
}
|
|
|
|
jobs, err := store.Job().GetAllByType(model.JOB_TYPE_MIGRATIONS)
|
|
if err != nil {
|
|
return "", nil, err
|
|
}
|
|
|
|
for _, job := range jobs {
|
|
if key, ok := job.Data[JOB_DATA_KEY_MIGRATION]; ok {
|
|
if key != migration {
|
|
continue
|
|
}
|
|
|
|
switch job.Status {
|
|
case model.JOB_STATUS_IN_PROGRESS, model.JOB_STATUS_PENDING:
|
|
return MIGRATION_STATE_IN_PROGRESS, job, nil
|
|
default:
|
|
return MIGRATION_STATE_UNSCHEDULED, job, nil
|
|
}
|
|
}
|
|
}
|
|
|
|
return MIGRATION_STATE_UNSCHEDULED, nil, nil
|
|
}
|