03ea72595d
* 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
91 lignes
2,2 Kio
Go
91 lignes
2,2 Kio
Go
package config
|
|
|
|
import (
|
|
"flag"
|
|
"io"
|
|
"sync"
|
|
|
|
"fmt"
|
|
|
|
"github.com/jinzhu/configor"
|
|
yaml "gopkg.in/yaml.v2"
|
|
)
|
|
|
|
var config *Config
|
|
var once sync.Once
|
|
|
|
// Configpaths default configuration file paths
|
|
var Configpaths = []string{"config/config.yml", "config/default_config.yml"}
|
|
|
|
// 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"
|
|
}
|
|
|
|
// WebAddress : Returns web address for current site
|
|
func WebAddress() string {
|
|
if IsSukebei() {
|
|
return Get().WebAddress.Sukebei
|
|
} else {
|
|
return Get().WebAddress.Nyaa
|
|
}
|
|
}
|
|
|
|
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)
|
|
configor.Load(Get(), Configpaths...)
|
|
}
|
|
|
|
// BindFlags returns a function which is to be used after
|
|
// flag.Parse to check and copy the flags' values to the Config instance.
|
|
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)")
|
|
return func() {
|
|
if *confFile != "" && *confFile != Configpaths[1] {
|
|
Configpaths = append([]string{*confFile}, Configpaths...)
|
|
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
|
|
}
|