2024-02-22 07:09:31 +00:00
|
|
|
package config
|
|
|
|
|
2024-02-28 14:04:47 +00:00
|
|
|
import "errors"
|
|
|
|
|
|
|
|
var _ Validator = (*SiaConfig)(nil)
|
2024-03-10 16:41:42 +00:00
|
|
|
var _ Defaults = (*SiaConfig)(nil)
|
2024-02-28 14:04:47 +00:00
|
|
|
|
2024-02-22 07:09:31 +00:00
|
|
|
type SiaConfig struct {
|
2024-03-10 18:26:17 +00:00
|
|
|
Key string `mapstructure:"key"`
|
|
|
|
URL string `mapstructure:"url"`
|
|
|
|
PriceHistoryDays uint64 `mapstructure:"price_history_days"`
|
|
|
|
MaxUploadPrice float64 `mapstructure:"max_upload_price"`
|
|
|
|
MaxDownloadPrice float64 `mapstructure:"max_download_price"`
|
|
|
|
MaxStoragePrice float64 `mapstructure:"max_storage_price"`
|
|
|
|
MaxContractSCPrice float64 `mapstructure:"max_contract_sc_price"`
|
|
|
|
MaxRPCSCPrice float64 `mapstructure:"max_rpc_sc_price"`
|
2024-03-10 16:41:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s SiaConfig) Defaults() map[string]interface{} {
|
|
|
|
return map[string]interface{}{
|
2024-03-10 18:36:45 +00:00
|
|
|
"max_rpc_sc_price": 0.1,
|
2024-03-10 18:35:37 +00:00
|
|
|
"max_contract_sc_price": 1,
|
|
|
|
"price_history_days": 90,
|
2024-03-10 16:41:42 +00:00
|
|
|
}
|
2024-02-22 07:09:31 +00:00
|
|
|
}
|
2024-02-28 14:04:47 +00:00
|
|
|
|
|
|
|
func (s SiaConfig) Validate() error {
|
|
|
|
if s.Key == "" {
|
|
|
|
return errors.New("core.storage.sia.key is required")
|
|
|
|
}
|
|
|
|
if s.URL == "" {
|
|
|
|
return errors.New("core.storage.sia.url is required")
|
|
|
|
}
|
2024-03-10 16:41:42 +00:00
|
|
|
|
|
|
|
if s.MaxUploadPrice <= 0 {
|
|
|
|
return errors.New("core.storage.sia.max_upload_price must be greater than 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.MaxDownloadPrice <= 0 {
|
|
|
|
return errors.New("core.storage.sia.max_download_price must be greater than 0")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.MaxStoragePrice <= 0 {
|
|
|
|
return errors.New("core.storage.sia.max_storage_price must be greater than 0")
|
|
|
|
}
|
|
|
|
|
2024-03-10 18:26:17 +00:00
|
|
|
if s.MaxRPCSCPrice <= 0 {
|
|
|
|
return errors.New("core.storage.sia.max_rpc_sc_price must be greater than 0")
|
2024-03-10 16:41:42 +00:00
|
|
|
}
|
|
|
|
|
2024-03-10 18:26:17 +00:00
|
|
|
if s.MaxRPCSCPrice <= 0 {
|
|
|
|
return errors.New("core.storage.sia.max_contract_sc_price must be greater than 0")
|
2024-03-10 16:41:42 +00:00
|
|
|
}
|
|
|
|
|
2024-02-28 14:04:47 +00:00
|
|
|
return nil
|
|
|
|
}
|