Albirew/nyaa-pantsu
Albirew
/
nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/config/config.go

113 lignes
2.6 KiB
Go
Brut Vue normale Historique

package config
import (
"flag"
"io"
"sync"
"fmt"
"github.com/jinzhu/configor"
yaml "github.com/go-yaml/yaml"
)
var config *Config
var once sync.Once
2017-07-23 07:46:29 +02:00
// Configpaths default configuration file paths
var Configpaths = []string{"config/config.yml", "config/default_config.yml"}
2017-07-23 07:46:29 +02:00
// Get config variable
func Get() *Config {
once.Do(func() {
config = &Config{}
})
return config
}
// IsSukebei : Tells if we are on the sukebei website
func IsSukebei() bool {
return Get().Models.TorrentsTableName == "sukebei_torrents"
2017-05-29 06:51:43 +02:00
}
2017-05-14 00:55:17 +02:00
2017-06-08 20:08:30 +02:00
// WebAddress : Returns web address for current site
func WebAddress() string {
if IsSukebei() {
return Get().WebAddress.Sukebei
2017-06-08 20:08:30 +02:00
} else {
return Get().WebAddress.Nyaa
2017-06-08 20:08:30 +02:00
}
}
// DefaultTheme : Return the default theme or default dark theme
func DefaultTheme(dark bool) string {
if Get().DefaultTheme.Forced != "" {
return Get().DefaultTheme.Forced
}
if !dark {
return Get().DefaultTheme.Theme
} else {
return Get().DefaultTheme.Dark
}
}
var allowedDatabaseTypes = map[string]bool{
"sqlite3": true,
"postgres": true,
"mysql": true,
"mssql": true,
}
var allowedDBLogModes = map[string]bool{
"default": true, // errors only
"detailed": true,
"silent": true,
}
func init() {
Reload()
}
// Reload the configuration from the files provided in the config variables
func Reload() {
fmt.Println("Config reload")
fmt.Println(Configpaths)
newConf := &Config{
DBType: Get().DBType,
Host: Get().Host,
Port: Get().Port,
DBParams: Get().DBParams,
DBLogMode: Get().DBLogMode,
}
config = newConf
configor.Load(config, Configpaths...)
fmt.Printf("Port: %d", Get().Port)
}
// BindFlags returns a function which is to be used after
// flag.Parse to check and copy the flags' values to the Config instance.
2017-07-21 01:20:04 +02:00
func BindFlags() func() {
confFile := flag.String("conf", Configpaths[1], "path to the configuration file")
flag.StringVar(&Get().DBType, "dbtype", Get().DBType, "database backend")
flag.StringVar(&Get().Host, "host", Get().Host, "binding address of the server")
flag.IntVar(&Get().Port, "port", Get().Port, "port of the server")
flag.StringVar(&Get().DBParams, "dbparams", Get().DBParams, "parameters to open the database (see Gorm's doc)")
flag.StringVar(&Get().DBLogMode, "dblogmode", Get().DBLogMode, "database log verbosity (errors only by default)")
2017-07-21 01:20:04 +02:00
return func() {
OAuth API [done] (#1275) * Initial Commit for OAuth API This builds and run and return the right error. Need to test it and then adding all users as possible client * Added mising dependency * just compile already... * Fixing template test * Imrpovements Moved db stuff in models Added some tests Added form in modpanel to add/update a client Added controllers for add/update of client * Added Forms + speed improvements Controller oauth client listing + html Controller oauth client delete + messages Messages on comment delete New ES config that disable ES if set to false. Improve load speed on local development Fix a load config bug Fix index admin & translation string sign_out broken by @ewhal * Sanitize empty strig in form array + css Multiple empty array of strings are sanitized for the oauth client create form Added some css for the form display * Upload and Create form works * Fix splitting response types * Removing required on secret when updating * fix travis error * Fix travis template test * Update dependency * Moved to jinzhu instead of azhao * randomizen secret on creation * Final touch on oath api improved display name fix grant form csrf fix login csrf on oauth * Fix gorm test * fix template test * Fixing deleted dependency issue * Make travis faster * Fix typo * Fix csrf for api calls * This shouldn't be exempt * Removing hard coded hash @ewhal Don't forget to replace the hash in tokens.go with another one * Added an example on how to use OAuth middleware * Renamed fosite utils to oauth2 utils
2017-07-28 05:46:40 +02:00
if *confFile != "" && *confFile != Configpaths[1] {
Configpaths = append([]string{*confFile}, Configpaths...)
2017-07-21 01:20:04 +02:00
Reload()
}
}
}
// Pretty : Write config json in a file
func (config *Config) Pretty(output io.Writer) error {
data, err := yaml.Marshal(config)
if err != nil {
return err
}
_, err = output.Write(data)
return err
2017-05-07 21:51:37 +02:00
}