forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrations.go
149 lines (129 loc) · 4.64 KB
/
migrations.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package config
import (
"fmt"
"io/ioutil"
"path/filepath"
"strings"
"github.com/hashicorp/go-version"
"github.com/pydio/cells/common"
)
type (
configMigration func(config *Config) (bool, error)
)
var (
configsMigrations []configMigration
configKeysRenames = map[string]string{
"services/pydio.api.websocket": "services/" + common.SERVICE_GATEWAY_NAMESPACE_ + common.SERVICE_WEBSOCKET,
"services/pydio.grpc.gateway.data": "services/" + common.SERVICE_GATEWAY_DATA,
"services/pydio.grpc.gateway.proxy": "services/" + common.SERVICE_GATEWAY_PROXY,
"services/pydio.rest.gateway.dav": "services/" + common.SERVICE_GATEWAY_DAV,
"services/pydio.rest.gateway.wopi": "services/" + common.SERVICE_GATEWAY_WOPI,
"ports/micro.api": "ports/" + common.SERVICE_MICRO_API,
"services/micro.api": "services/" + common.SERVICE_MICRO_API,
"services/pydio.api.front-plugins": "services/" + common.SERVICE_WEB_NAMESPACE_ + common.SERVICE_FRONT_STATICS,
}
)
func init() {
configsMigrations = append(configsMigrations, renameServices1, setDefaultConfig, forceDefaultConfig, dsnRemoveAllowNativePassword)
}
// UpgradeConfigsIfRequired applies all registered configMigration functions
// Returns true if there was a change and save is required, error if something nasty happened
func UpgradeConfigsIfRequired(config *Config) (bool, error) {
var save bool
for _, m := range configsMigrations {
s, e := m(config)
if e != nil {
return false, e
}
if s {
save = true
}
}
return save, nil
}
func renameServices1(config *Config) (bool, error) {
var save bool
for oldPath, newPath := range configKeysRenames {
oldPaths := strings.Split(oldPath, "/")
val := config.Get(oldPaths...)
var data interface{}
if e := val.Scan(&data); e == nil && data != nil {
fmt.Printf("[Configs] Upgrading: renaming key %s to %s\n", oldPath, newPath)
config.Set(val, strings.Split(newPath, "/")...)
config.Del(oldPaths...)
save = true
}
}
return save, nil
}
func setDefaultConfig(config *Config) (bool, error) {
var save bool
configKeys := map[string]interface{}{
"frontend/plugin/editor.libreoffice/LIBREOFFICE_HOST": "localhost",
"frontend/plugin/editor.libreoffice/LIBREOFFICE_PORT": "9980",
"frontend/plugin/editor.libreoffice/LIBREOFFICE_SSL": true,
}
for path, def := range configKeys {
paths := strings.Split(path, "/")
val := config.Get(paths...)
var data interface{}
if e := val.Scan(&data); e == nil && data == nil {
fmt.Printf("[Configs] Upgrading: setting default config %s to %v\n", path, def)
config.Set(def, paths...)
save = true
}
}
return save, nil
}
func forceDefaultConfig(config *Config) (bool, error) {
var save bool
configKeys := map[string]interface{}{
"services/pydio.grpc.auth/dex/issuer": config.Get("defaults", "url").String("") + "/auth/dex",
}
for path, def := range configKeys {
paths := strings.Split(path, "/")
val := config.Get(paths...)
var data interface{}
if val.Scan(&data); data != def {
fmt.Printf("[Configs] Upgrading: setting default config %s to %v\n", path, def)
config.Set(def, paths...)
save = true
}
}
return save, nil
}
// dsnRemoveAllowNativePassword removes this part from default DSN
func dsnRemoveAllowNativePassword(config *Config) (bool, error) {
testFile := filepath.Join(ApplicationDataDir(), "services", common.SERVICE_GRPC_NAMESPACE_+common.SERVICE_CONFIG, "version")
if data, e := ioutil.ReadFile(testFile); e == nil && len(data) > 0 {
ref, _ := version.NewVersion("1.4.1")
if v, e2 := version.NewVersion(strings.TrimSpace(string(data))); e2 == nil && v.LessThan(ref) {
dbId := config.Get("defaults", "database").String("")
if dbId != "" {
if dsn := config.Get("databases", dbId, "dsn").String(""); dsn != "" && strings.Contains(dsn, "allowNativePasswords=false\u0026") {
dsn = strings.Replace(dsn, "allowNativePasswords=false\u0026", "", 1)
fmt.Println("[Configs] Upgrading DSN to support new MySQL authentication plugin")
config.Set(dsn, "databases", dbId, "dsn")
return true, nil
}
}
}
}
return false, nil
}
// Do not append to the standard migration, it is called directly inside the
// Vault/once.Do() routine, otherwise it locks config
func migrateVault(vault *Config, defaultConfig *Config) bool {
var save bool
for _, path := range registeredVaultKeys {
confValue := defaultConfig.Get(path...).String("")
if confValue != "" && vault.Get(confValue).String("") == "" {
u := NewKeyForSecret()
fmt.Printf("[Configs] Upgrading %s to vault key %s\n", strings.Join(path, "/"), u)
vaultSource.Set(u, confValue, true)
defaultConfig.Set(u, path...)
save = true
}
}
return save
}