本文整理汇总了Golang中github.com/corestoreio/csfw/config.Reader类的典型用法代码示例。如果您正苦于以下问题:Golang Reader类的具体用法?Golang Reader怎么用?Golang Reader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Reader类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: BaseCurrencyCode
// BaseCurrencyCode retrieves application base currency code
func BaseCurrencyCode(cr config.Reader) (language.Currency, error) {
base, err := cr.GetString(config.Path(PathCurrencyBase))
if config.NotKeyNotFoundError(err) {
return language.Currency{}, err
}
return language.ParseCurrency(base)
}
示例2: WithPasswordFromConfig
// WithPasswordFromConfig retrieves the password from the configuration with path
// as defined in constant PathJWTPassword
func WithPasswordFromConfig(cr config.Reader) Option {
pw, err := cr.GetString(config.Path(PathJWTPassword))
if config.NotKeyNotFoundError(err) {
pw = string(uuid.NewRandom())
}
return WithPassword([]byte(pw))
}
示例3: AllowedCurrencies
// AllowedCurrencies returns all installed currencies from global scope.
func AllowedCurrencies(cr config.Reader) ([]string, error) {
installedCur, err := cr.GetString(config.Path(PathSystemCurrencyInstalled))
if config.NotKeyNotFoundError(err) {
return nil, err
}
// TODO use internal model of PathSystemCurrencyInstalled defined in package directory
return strings.Split(installedCur, ","), nil
}
示例4: Authenticate
func (u *User) Authenticate(cr config.Reader, h crypto.Hasher, username, password string) error {
isCaseSensitive := cr.GetBool(config.Path("admin/security/use_case_sensitive_login"))
if !isCaseSensitive {
// ... hmm
}
return nil
}
示例5: IsSecure
// IsSecure checks if a request has been sent over a TLS connection. Also checks
// if the app runs behind a proxy server and therefore checks the off loader header.
func IsSecure(cr config.Reader, r *http.Request) bool {
// due to import cycle this function must be in this package
if r.TLS != nil {
return true
}
oh, err := cr.GetString(config.Path(PathOffloaderHeader), config.ScopeDefault())
if err != nil {
if PkgLog.IsDebug() {
PkgLog.Debug("net.httputils.IsSecure.FromContextReader.GetString", "err", err, "path", PathOffloaderHeader)
}
return false
}
h := r.Header.Get(oh)
hh := r.Header.Get("HTTP_" + oh)
var isHTTPS bool
switch "https" {
case h, hh:
isHTTPS = true
}
return isHTTPS
}
示例6: BaseCurrencyCode
// BaseCurrencyCode retrieves application base currency code
func BaseCurrencyCode(cr config.Reader) (language.Currency, error) {
return language.ParseCurrency(cr.GetString(config.Path(PathCurrencyBase)))
}
示例7: ShowNonRequiredState
// ShowNonRequiredState
func ShowNonRequiredState(cr config.Reader, r scope.StoreIDer) bool {
return cr.GetBool(config.ScopeStore(r.StoreID()), config.Path(PathDisplayAllStates))
}
示例8: DefaultCountry
// DefaultCountry returns the country code. Store argument is optional.
func DefaultCountry(cr config.Reader, r config.ScopeIDer) string {
return cr.GetString(config.Path(PathDefaultCountry), config.ScopeStore(r))
}
示例9: SetPasswordFromConfig
// SetPasswordFromConfig retrieves the password from the configuration with path
// as defined in constant PathJWTPassword
func SetPasswordFromConfig(cr config.Reader) OptionFunc {
pw := cr.GetString(config.Path(PathJWTPassword))
return SetPassword([]byte(pw))
}