2022-08-16 23:30:23 +08:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
2023-01-29 16:38:34 +08:00
|
|
|
"fmt"
|
2023-06-05 18:31:26 +08:00
|
|
|
"strings"
|
2022-09-09 17:17:02 +08:00
|
|
|
"time"
|
|
|
|
|
2022-10-17 16:32:31 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/app/model"
|
2022-12-18 23:00:24 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/constant"
|
2023-01-29 16:38:34 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/global"
|
2023-02-10 16:10:40 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/utils/common"
|
2023-05-04 14:14:38 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/backend/utils/encrypt"
|
2022-08-16 23:30:23 +08:00
|
|
|
|
|
|
|
"github.com/go-gormigrate/gormigrate/v2"
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
var AddTableOperationLog = &gormigrate.Migration{
|
|
|
|
ID: "20200809-add-table-operation-log",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2022-11-15 17:20:57 +08:00
|
|
|
return tx.AutoMigrate(&model.OperationLog{}, &model.LoginLog{})
|
2022-08-16 23:30:23 +08:00
|
|
|
},
|
|
|
|
}
|
2022-08-18 18:54:21 +08:00
|
|
|
|
|
|
|
var AddTableHost = &gormigrate.Migration{
|
|
|
|
ID: "20200818-add-table-host",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2022-08-31 23:16:10 +08:00
|
|
|
if err := tx.AutoMigrate(&model.Host{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.AutoMigrate(&model.Group{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.AutoMigrate(&model.Command{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-01 16:48:43 +08:00
|
|
|
group := model.Group{
|
2023-03-07 10:19:12 +08:00
|
|
|
Name: "default", Type: "host", IsDefault: true,
|
2022-09-01 16:48:43 +08:00
|
|
|
}
|
|
|
|
if err := tx.Create(&group).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-01-03 14:37:17 +08:00
|
|
|
host := model.Host{
|
2023-03-11 17:51:42 +08:00
|
|
|
Name: "localhost", Addr: "127.0.0.1", User: "root", Port: 22, AuthMode: "password", GroupID: group.ID,
|
2023-01-03 14:37:17 +08:00
|
|
|
}
|
|
|
|
if err := tx.Create(&host).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-08-31 23:16:10 +08:00
|
|
|
return nil
|
2022-08-18 18:54:21 +08:00
|
|
|
},
|
|
|
|
}
|
2022-09-08 11:39:14 +08:00
|
|
|
|
2022-09-15 10:44:43 +08:00
|
|
|
var AddTableMonitor = &gormigrate.Migration{
|
2022-09-08 11:39:14 +08:00
|
|
|
ID: "20200905-add-table-monitor",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
return tx.AutoMigrate(&model.MonitorBase{}, &model.MonitorIO{}, &model.MonitorNetwork{})
|
|
|
|
},
|
|
|
|
}
|
2022-09-15 10:44:43 +08:00
|
|
|
|
|
|
|
var AddTableSetting = &gormigrate.Migration{
|
|
|
|
ID: "20200908-add-table-setting",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.Setting{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-04 14:14:38 +08:00
|
|
|
encryptKey := common.RandStr(16)
|
2023-04-27 22:44:16 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "UserName", Value: global.CONF.System.Username}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-05-04 14:14:38 +08:00
|
|
|
global.CONF.System.EncryptKey = encryptKey
|
|
|
|
pass, _ := encrypt.StringEncrypt(global.CONF.System.Password)
|
|
|
|
if err := tx.Create(&model.Setting{Key: "Password", Value: pass}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-11-21 15:20:04 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "Email", Value: ""}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := tx.Create(&model.Setting{Key: "PanelName", Value: "1Panel"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-13 18:45:03 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "Language", Value: "zh"}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-11-16 18:27:22 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "Theme", Value: "light"}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := tx.Create(&model.Setting{Key: "SessionTimeout", Value: "86400"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-09 17:17:02 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "LocalTime", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-15 10:44:43 +08:00
|
|
|
|
2023-03-10 13:47:31 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "ServerPort", Value: global.CONF.System.Port}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-04-27 22:44:16 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "SecurityEntrance", Value: global.CONF.System.Entrance}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-02-10 16:10:40 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "JWTSigningKey", Value: common.RandStr(16)}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-04 14:14:38 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "EncryptKey", Value: encryptKey}).Error; err != nil {
|
2023-02-13 11:04:14 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-02-10 16:10:40 +08:00
|
|
|
|
2022-12-02 10:23:35 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "ExpirationTime", Value: time.Now().AddDate(0, 0, 10).Format("2006-01-02 15:04:05")}).Error; err != nil {
|
2022-09-29 16:15:59 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-11-23 19:23:41 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "ExpirationDays", Value: "0"}).Error; err != nil {
|
2022-09-09 17:17:02 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-03-01 14:05:55 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "ComplexityVerification", Value: "enable"}).Error; err != nil {
|
2022-09-15 10:44:43 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "MFAStatus", Value: "disable"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-14 23:27:17 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "MFASecret", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-15 10:44:43 +08:00
|
|
|
|
|
|
|
if err := tx.Create(&model.Setting{Key: "MonitorStatus", Value: "enable"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "MonitorStoreDays", Value: "30"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := tx.Create(&model.Setting{Key: "MessageType", Value: "none"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "EmailVars", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "WeChatVars", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "DingVars", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-14 17:14:57 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "SystemVersion", Value: global.CONF.System.Version}).Error; err != nil {
|
2023-01-09 22:55:10 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-02-02 15:01:37 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "SystemStatus", Value: "Free"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-02-17 17:19:35 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "AppStoreVersion", Value: ""}).Error; err != nil {
|
2023-02-10 18:07:29 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-09-15 10:44:43 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2022-09-16 18:53:45 +08:00
|
|
|
|
|
|
|
var AddTableBackupAccount = &gormigrate.Migration{
|
|
|
|
ID: "20200916-add-table-backup",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2022-10-27 23:09:39 +08:00
|
|
|
if err := tx.AutoMigrate(&model.BackupAccount{}, &model.BackupRecord{}); err != nil {
|
2022-09-16 18:53:45 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-01-29 16:38:34 +08:00
|
|
|
|
2022-09-16 18:53:45 +08:00
|
|
|
item := &model.BackupAccount{
|
2022-09-19 19:42:06 +08:00
|
|
|
Type: "LOCAL",
|
2023-01-29 16:38:34 +08:00
|
|
|
Vars: fmt.Sprintf("{\"dir\":\"%s\"}", global.CONF.System.Backup),
|
2022-09-16 18:53:45 +08:00
|
|
|
}
|
|
|
|
if err := tx.Create(item).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2022-09-20 19:12:48 +08:00
|
|
|
|
|
|
|
var AddTableCronjob = &gormigrate.Migration{
|
|
|
|
ID: "20200921-add-table-cronjob",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2022-09-23 17:21:27 +08:00
|
|
|
return tx.AutoMigrate(&model.Cronjob{}, &model.JobRecords{})
|
2022-09-20 19:12:48 +08:00
|
|
|
},
|
|
|
|
}
|
2022-09-22 16:16:04 +08:00
|
|
|
|
|
|
|
var AddTableApp = &gormigrate.Migration{
|
|
|
|
ID: "20200921-add-table-app",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-03-02 13:54:07 +08:00
|
|
|
return tx.AutoMigrate(&model.App{}, &model.AppDetail{}, &model.Tag{}, &model.AppTag{}, &model.AppInstall{}, &model.AppInstallResource{})
|
2022-09-22 16:16:04 +08:00
|
|
|
},
|
|
|
|
}
|
2022-10-09 16:17:15 +08:00
|
|
|
|
|
|
|
var AddTableImageRepo = &gormigrate.Migration{
|
|
|
|
ID: "20201009-add-table-imagerepo",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2022-12-06 15:06:42 +08:00
|
|
|
if err := tx.AutoMigrate(&model.ImageRepo{}, &model.ComposeTemplate{}, &model.Compose{}); err != nil {
|
2022-10-09 16:17:15 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
item := &model.ImageRepo{
|
|
|
|
Name: "Docker Hub",
|
2023-02-01 16:46:13 +08:00
|
|
|
Protocol: "https",
|
2022-10-09 16:17:15 +08:00
|
|
|
DownloadUrl: "docker.io",
|
2022-12-18 23:00:24 +08:00
|
|
|
Status: constant.StatusSuccess,
|
2022-10-09 16:17:15 +08:00
|
|
|
}
|
|
|
|
if err := tx.Create(item).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2022-10-20 18:45:47 +08:00
|
|
|
|
|
|
|
var AddTableDatabaseMysql = &gormigrate.Migration{
|
|
|
|
ID: "20201020-add-table-database_mysql",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
return tx.AutoMigrate(&model.DatabaseMysql{})
|
|
|
|
},
|
|
|
|
}
|
2022-10-28 17:04:57 +08:00
|
|
|
|
|
|
|
var AddTableWebsite = &gormigrate.Migration{
|
|
|
|
ID: "20201009-add-table-website",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-03-22 21:42:30 +08:00
|
|
|
if err := tx.AutoMigrate(&model.Website{}, &model.WebsiteDomain{}, &model.WebsiteDnsAccount{}, &model.WebsiteSSL{}, &model.WebsiteAcmeAccount{}); err != nil {
|
2022-10-28 17:04:57 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-01-06 18:53:25 +08:00
|
|
|
|
2023-01-09 22:55:10 +08:00
|
|
|
var AddTableSnap = &gormigrate.Migration{
|
|
|
|
ID: "20230106-add-table-snap",
|
2023-01-06 18:53:25 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.Snapshot{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-03-22 21:42:30 +08:00
|
|
|
|
|
|
|
var AddDefaultGroup = &gormigrate.Migration{
|
|
|
|
ID: "2023022-change-default-group",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
defaultGroup := &model.Group{
|
|
|
|
Name: "默认",
|
|
|
|
IsDefault: true,
|
|
|
|
Type: "website",
|
|
|
|
}
|
2023-03-23 16:26:33 +08:00
|
|
|
if err := tx.Create(defaultGroup).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Model(&model.Group{}).Where("name = ? AND type = ?", "default", "host").Update("name", "默认").Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Model(&model.Website{}).Where("1 = 1").Update("website_group_id", defaultGroup.ID).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-03-22 21:42:30 +08:00
|
|
|
return tx.Migrator().DropTable("website_groups")
|
|
|
|
},
|
|
|
|
}
|
2023-03-29 14:58:28 +08:00
|
|
|
|
|
|
|
var AddTableRuntime = &gormigrate.Migration{
|
2023-04-06 16:38:16 +08:00
|
|
|
ID: "20230406-add-table-runtime",
|
2023-03-29 14:58:28 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-04-12 21:52:30 +08:00
|
|
|
return tx.AutoMigrate(&model.Runtime{})
|
2023-03-29 14:58:28 +08:00
|
|
|
},
|
|
|
|
}
|
2023-04-08 14:02:14 +08:00
|
|
|
|
|
|
|
var UpdateTableApp = &gormigrate.Migration{
|
|
|
|
ID: "20230408-update-table-app",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.App{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-04-10 21:50:24 +08:00
|
|
|
|
|
|
|
var UpdateTableHost = &gormigrate.Migration{
|
|
|
|
ID: "20230410-update-table-host",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.Host{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-04-12 21:52:30 +08:00
|
|
|
|
|
|
|
var UpdateTableWebsite = &gormigrate.Migration{
|
2023-04-18 18:46:58 +08:00
|
|
|
ID: "20230418-update-table-website",
|
2023-04-12 21:52:30 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-04-17 16:54:34 +08:00
|
|
|
if err := tx.AutoMigrate(&model.Website{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Model(&model.Website{}).Where("1 = 1").Update("site_dir", "/").Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2023-04-12 21:52:30 +08:00
|
|
|
},
|
|
|
|
}
|
2023-04-14 18:54:34 +08:00
|
|
|
|
2023-04-25 14:34:16 +08:00
|
|
|
var AddEntranceAndSSL = &gormigrate.Migration{
|
|
|
|
ID: "20230414-add-entrance-and-ssl",
|
2023-04-14 18:54:34 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-04-27 22:44:16 +08:00
|
|
|
if err := tx.Model(&model.Setting{}).
|
|
|
|
Where("key = ? AND value = ?", "SecurityEntrance", "onepanel").
|
|
|
|
Updates(map[string]interface{}{"value": ""}).Error; err != nil {
|
2023-04-14 18:54:34 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-04-25 14:34:16 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "SSLType", Value: "self"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "SSLID", Value: "0"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "SSL", Value: "disable"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-04-14 18:54:34 +08:00
|
|
|
return tx.AutoMigrate(&model.Website{})
|
|
|
|
},
|
|
|
|
}
|
2023-05-15 22:40:05 +08:00
|
|
|
|
|
|
|
var UpdateTableSetting = &gormigrate.Migration{
|
2023-05-16 17:31:47 +08:00
|
|
|
ID: "20200516-update-table-setting",
|
2023-05-15 22:40:05 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-05-16 17:31:47 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "AppStoreLastModified", Value: "0"}).Error; err != nil {
|
2023-05-15 22:40:05 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
var UpdateTableAppDetail = &gormigrate.Migration{
|
2023-05-16 17:31:47 +08:00
|
|
|
ID: "20200517-update-table-app-detail",
|
2023-05-15 22:40:05 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-05-16 17:31:47 +08:00
|
|
|
if err := tx.AutoMigrate(&model.App{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-15 22:40:05 +08:00
|
|
|
if err := tx.AutoMigrate(&model.AppDetail{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-05-19 21:47:46 +08:00
|
|
|
|
|
|
|
var AddBindAndAllowIPs = &gormigrate.Migration{
|
2023-05-24 18:36:41 +08:00
|
|
|
ID: "20230517-add-bind-and-allow",
|
2023-05-19 21:47:46 +08:00
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.Create(&model.Setting{Key: "BindDomain", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Create(&model.Setting{Key: "AllowIPs", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-31 14:03:04 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "TimeZone", Value: common.LoadTimeZoneByCmd()}).Error; err != nil {
|
2023-05-22 17:45:39 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-05-24 15:43:21 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "NtpSite", Value: "pool.ntp.org"}).Error; err != nil {
|
2023-05-22 17:45:39 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-05-25 18:02:17 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "MonitorInterval", Value: "1"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-05-19 21:47:46 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-05-24 18:36:41 +08:00
|
|
|
|
|
|
|
var UpdateCronjobWithSecond = &gormigrate.Migration{
|
|
|
|
ID: "20200524-update-table-cronjob",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.Cronjob{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-05 18:31:26 +08:00
|
|
|
var jobs []model.Cronjob
|
|
|
|
if err := tx.Where("exclusion_rules != ?", "").Find(&jobs).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, job := range jobs {
|
|
|
|
if strings.Contains(job.ExclusionRules, ";") {
|
|
|
|
newRules := strings.ReplaceAll(job.ExclusionRules, ";", ",")
|
|
|
|
if err := tx.Model(&model.Cronjob{}).Where("id = ?", job.ID).Update("exclusion_rules", newRules).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-24 18:36:41 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-05-30 14:22:57 +08:00
|
|
|
|
|
|
|
var UpdateWebsite = &gormigrate.Migration{
|
|
|
|
ID: "20200530-update-table-website",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.Website{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-06-23 23:06:13 +08:00
|
|
|
|
|
|
|
var AddBackupAccountDir = &gormigrate.Migration{
|
|
|
|
ID: "20200620-add-backup-dir",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
2023-06-28 14:30:11 +08:00
|
|
|
if err := tx.AutoMigrate(&model.BackupAccount{}, &model.Cronjob{}); err != nil {
|
2023-06-23 23:06:13 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-06-25 17:52:13 +08:00
|
|
|
|
|
|
|
var AddMfaInterval = &gormigrate.Migration{
|
|
|
|
ID: "20230625-add-mfa-interval",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.Create(&model.Setting{Key: "MFAInterval", Value: "30"}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-29 11:18:15 +08:00
|
|
|
if err := tx.Create(&model.Setting{Key: "SystemIP", Value: ""}).Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-25 17:52:13 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2023-07-03 16:36:18 +08:00
|
|
|
|
|
|
|
var UpdateAppDetail = &gormigrate.Migration{
|
|
|
|
ID: "20230704-update-app-detail",
|
|
|
|
Migrate: func(tx *gorm.DB) error {
|
|
|
|
if err := tx.AutoMigrate(&model.AppDetail{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := tx.Model(&model.AppDetail{}).Where("1 = 1").Update("ignore_upgrade", "0").Error; err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|