Removed (almost) all remaining init()

This commit is contained in:
Deluan 2020-01-08 10:25:23 -05:00 committed by Deluan Quintão
parent 5d2a7b1db1
commit 23e38ec82f
5 changed files with 34 additions and 23 deletions

View file

@ -11,20 +11,15 @@ const (
ErrorDataNotFound ErrorDataNotFound
) )
var ( var errors = map[int]string{
errors map[int]string ErrorGeneric: "A generic error",
) ErrorMissingParameter: "Required parameter is missing",
ErrorClientTooOld: "Incompatible Subsonic REST protocol version. Client must upgrade",
func init() { ErrorServerTooOld: "Incompatible Subsonic REST protocol version. Server must upgrade",
errors = make(map[int]string) ErrorAuthenticationFail: "Wrong username or password",
errors[ErrorGeneric] = "A generic error" ErrorAuthorizationFail: "User is not authorized for the given operation",
errors[ErrorMissingParameter] = "Required parameter is missing" ErrorTrialExpired: "The trial period for the Subsonic server is over. Please upgrade to Subsonic Premium. Visit subsonic.org for details",
errors[ErrorClientTooOld] = "Incompatible Subsonic REST protocol version. Client must upgrade" ErrorDataNotFound: "The requested data was not found",
errors[ErrorServerTooOld] = "Incompatible Subsonic REST protocol version. Server must upgrade"
errors[ErrorAuthenticationFail] = "Wrong username or password"
errors[ErrorAuthorizationFail] = "User is not authorized for the given operation"
errors[ErrorTrialExpired] = "The trial period for the Subsonic server is over. Please upgrade to Subsonic Premium. Visit subsonic.org for details"
errors[ErrorDataNotFound] = "The requested data was not found"
} }
func ErrorMsg(code int) string { func ErrorMsg(code int) string {

1
app.go
View file

@ -22,6 +22,7 @@ type App struct {
func (a *App) Initialize() { func (a *App) Initialize() {
a.logger = logrus.New() a.logger = logrus.New()
initMimeTypes()
a.initRoutes() a.initRoutes()
a.initImporter() a.initImporter()
} }

View file

@ -33,6 +33,20 @@ func LoadFromFlags() {
l.Load(Sonic) l.Load(Sonic)
} }
func LoadFromEnv() {
port := os.Getenv("PORT")
if port != "" {
Sonic.Port = port
}
l := &multiconfig.EnvironmentLoader{}
l.Load(Sonic)
}
func LoadFromTags() {
l := &multiconfig.TagLoader{}
l.Load(Sonic)
}
func LoadFromFile(tomlFile string) { func LoadFromFile(tomlFile string) {
l := &multiconfig.TOMLLoader{Path: tomlFile} l := &multiconfig.TOMLLoader{Path: tomlFile}
err := l.Load(Sonic) err := l.Load(Sonic)
@ -47,11 +61,13 @@ func LoadFromLocalFile() {
} }
} }
func Load() {
LoadFromLocalFile()
LoadFromEnv()
LoadFromFlags()
}
func init() { func init() {
Sonic = new(sonic) Sonic = new(sonic)
var l multiconfig.Loader LoadFromTags()
l = &multiconfig.TagLoader{}
l.Load(Sonic)
l = &multiconfig.EnvironmentLoader{}
l.Load(Sonic)
} }

View file

@ -8,8 +8,7 @@ import (
) )
func main() { func main() {
conf.LoadFromLocalFile() conf.Load()
conf.LoadFromFlags()
fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2") fmt.Printf("\nCloudSonic Server v%s\n\n", "0.2")

View file

@ -2,7 +2,7 @@ package main
import "mime" import "mime"
func init() { func initMimeTypes() {
mt := map[string]string{ mt := map[string]string{
".mp3": "audio/mpeg", ".mp3": "audio/mpeg",
".ogg": "audio/ogg", ".ogg": "audio/ogg",
@ -39,6 +39,6 @@ func init() {
} }
for ext, typ := range mt { for ext, typ := range mt {
mime.AddExtensionType(ext, typ) _ = mime.AddExtensionType(ext, typ)
} }
} }