a2ce836761
Change-Id: I6b6ca9704837cb3f5f5449ba7f55661487814d9f
121 lines
2.9 KiB
Go
121 lines
2.9 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"strconv"
|
|
"time"
|
|
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// Deprecated contains deprecated config structs
|
|
type Deprecated struct {
|
|
Kademlia struct {
|
|
ExternalAddress string `default:"" hidden:"true"`
|
|
Operator struct {
|
|
Email string `default:"" hidden:"true"`
|
|
Wallet string `default:"" hidden:"true"`
|
|
}
|
|
}
|
|
}
|
|
|
|
// maps deprecated config values to new values if applicable
|
|
func mapDeprecatedConfigs(log *zap.Logger) {
|
|
type migration struct {
|
|
newValue interface{}
|
|
newConfigString string
|
|
oldValue string
|
|
oldConfigString string
|
|
}
|
|
migrations := []migration{
|
|
{
|
|
newValue: &runCfg.Contact.ExternalAddress,
|
|
newConfigString: "contact.external-address",
|
|
oldValue: runCfg.Deprecated.Kademlia.ExternalAddress,
|
|
oldConfigString: "kademlia.external-address",
|
|
},
|
|
{
|
|
newValue: &runCfg.Operator.Wallet,
|
|
newConfigString: "operator.wallet",
|
|
oldValue: runCfg.Deprecated.Kademlia.Operator.Wallet,
|
|
oldConfigString: "kademlia.operator.wallet",
|
|
},
|
|
{
|
|
newValue: &runCfg.Operator.Email,
|
|
newConfigString: "operator.email",
|
|
oldValue: runCfg.Deprecated.Kademlia.Operator.Email,
|
|
oldConfigString: "kademlia.operator.email",
|
|
},
|
|
}
|
|
|
|
for _, migration := range migrations {
|
|
if migration.oldValue != "" {
|
|
typ := reflect.TypeOf(migration.newValue).Elem()
|
|
override := parseOverride(typ, migration.oldValue)
|
|
|
|
reflect.ValueOf(migration.newValue).Elem().Set(reflect.ValueOf(override))
|
|
|
|
log.Debug("Found deprecated flag. Migrating value.",
|
|
zap.Stringer("Value", reflect.ValueOf(migration.newValue).Elem()),
|
|
zap.String("From", migration.oldConfigString),
|
|
zap.String("To", migration.newConfigString),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
func parseOverride(typ reflect.Type, value string) interface{} {
|
|
switch typ {
|
|
case reflect.TypeOf(int(0)):
|
|
val, err := strconv.ParseInt(value, 0, strconv.IntSize)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return int(val)
|
|
case reflect.TypeOf(int64(0)):
|
|
val, err := strconv.ParseInt(value, 0, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
case reflect.TypeOf(uint(0)):
|
|
val, err := strconv.ParseUint(value, 0, strconv.IntSize)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return uint(val)
|
|
case reflect.TypeOf(uint64(0)):
|
|
val, err := strconv.ParseUint(value, 0, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
case reflect.TypeOf(time.Duration(0)):
|
|
val, err := time.ParseDuration(value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
case reflect.TypeOf(float64(0)):
|
|
val, err := strconv.ParseFloat(value, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
case reflect.TypeOf(string("")):
|
|
return value
|
|
case reflect.TypeOf(bool(false)):
|
|
val, err := strconv.ParseBool(value)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return val
|
|
default:
|
|
panic(fmt.Sprintf("invalid field type: %s", typ.String()))
|
|
}
|
|
}
|