2019-12-27 19:12:08 +00:00
|
|
|
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
|
|
// Daniele Rondina <geaaru@sabayonlinux.org>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
v "github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
var LuetCfg = NewLuetConfig(v.GetViper())
|
|
|
|
|
|
|
|
type LuetLoggingConfig struct {
|
|
|
|
Path string `mapstructure:"path"`
|
|
|
|
Level string `mapstructure:"level"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LuetGeneralConfig struct {
|
|
|
|
Concurrency int `mapstructure:"concurrency"`
|
|
|
|
Debug bool `mapstructure:"debug"`
|
|
|
|
ShowBuildOutput bool `mapstructure:"show_build_output"`
|
|
|
|
SpinnerMs int `mapstructure:"spinner_ms"`
|
|
|
|
SpinnerCharset int `mapstructure:"spinner_charset"`
|
|
|
|
}
|
|
|
|
|
2019-12-30 20:56:13 +00:00
|
|
|
type LuetSystemConfig struct {
|
|
|
|
DatabaseEngine string `yaml:"database_engine" mapstructure:"database_engine"`
|
|
|
|
DatabasePath string `yaml:"database_path" mapstructure:"database_path"`
|
|
|
|
Rootfs string `yaml:"rootfs" mapstructure:"rootfs"`
|
|
|
|
}
|
|
|
|
|
2019-12-27 19:12:08 +00:00
|
|
|
type LuetRepository struct {
|
|
|
|
Name string `yaml:"name" mapstructure:"name"`
|
|
|
|
Description string `yaml:"description,omitempty" mapstructure:"description"`
|
|
|
|
Urls []string `yaml:"urls" mapstructure:"urls"`
|
|
|
|
Type string `yaml:"type" mapstructure:"type"`
|
|
|
|
Mode string `yaml:"mode,omitempty" mapstructure:"mode"`
|
|
|
|
Priority int `yaml:"priority,omitempty" mapstructure:"priority"`
|
2019-12-30 20:56:13 +00:00
|
|
|
Enable bool `yaml:"enable" mapstructure:"enable"`
|
2019-12-27 19:12:08 +00:00
|
|
|
Authentication map[string]string `yaml:"auth,omitempty" mapstructure:"auth"`
|
2019-12-31 00:21:06 +00:00
|
|
|
TreePath string `yaml::"tree_path,omitempty" mapstructure:"tree_path"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewLuetRepository(name, t, descr string, urls []string, priority int, enable bool) *LuetRepository {
|
|
|
|
return &LuetRepository{
|
|
|
|
Name: name,
|
|
|
|
Description: descr,
|
|
|
|
Urls: urls,
|
|
|
|
Type: t,
|
|
|
|
// Used in cached repositories
|
|
|
|
Mode: "",
|
|
|
|
Priority: priority,
|
|
|
|
Enable: enable,
|
|
|
|
Authentication: make(map[string]string, 0),
|
|
|
|
TreePath: "",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *LuetRepository) String() string {
|
|
|
|
return fmt.Sprintf("[%s] prio: %d, type: %s, enable: %t", r.Name, r.Priority, r.Type, r.Enable)
|
2019-12-27 19:12:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type LuetConfig struct {
|
|
|
|
Viper *v.Viper
|
|
|
|
|
|
|
|
Logging LuetLoggingConfig `mapstructure:"logging"`
|
|
|
|
General LuetGeneralConfig `mapstructure:"general"`
|
2019-12-30 20:56:13 +00:00
|
|
|
System LuetSystemConfig `mapstructure:"system"`
|
2019-12-27 19:12:08 +00:00
|
|
|
|
|
|
|
RepositoriesConfDir []string `mapstructure:"repos_confdir"`
|
2019-12-31 00:21:06 +00:00
|
|
|
CacheRepositories []LuetRepository `mapstructure:"repetitors"`
|
|
|
|
SystemRepositories []LuetRepository `mapstructure:"repositories"`
|
2019-12-27 19:12:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewLuetConfig(viper *v.Viper) *LuetConfig {
|
|
|
|
if viper == nil {
|
|
|
|
viper = v.New()
|
|
|
|
}
|
|
|
|
|
|
|
|
GenDefault(viper)
|
|
|
|
return &LuetConfig{Viper: viper}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GenDefault(viper *v.Viper) {
|
|
|
|
|
|
|
|
viper.SetDefault("logging.level", "info")
|
|
|
|
viper.SetDefault("logging.path", "")
|
|
|
|
|
|
|
|
viper.SetDefault("general.concurrency", runtime.NumCPU())
|
|
|
|
viper.SetDefault("general.debug", false)
|
|
|
|
viper.SetDefault("general.show_build_output", false)
|
|
|
|
viper.SetDefault("general.spinner_ms", 100)
|
|
|
|
viper.SetDefault("general.spinner_charset", 22)
|
|
|
|
|
2019-12-30 20:56:13 +00:00
|
|
|
viper.SetDefault("system.database_engine", "boltdb")
|
|
|
|
viper.SetDefault("system.database_path", "/var/cache/luet")
|
|
|
|
viper.SetDefault("system.rootfs", "/")
|
|
|
|
|
2019-12-27 19:12:08 +00:00
|
|
|
viper.SetDefault("repos_confdir", []string{"/etc/luet/repos.conf.d"})
|
|
|
|
viper.SetDefault("cache_repositories", []string{})
|
|
|
|
viper.SetDefault("system_repositories", []string{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetConfig) AddSystemRepository(r LuetRepository) {
|
|
|
|
c.SystemRepositories = append(c.SystemRepositories, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetConfig) GetLogging() *LuetLoggingConfig {
|
|
|
|
return &c.Logging
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetConfig) GetGeneral() *LuetGeneralConfig {
|
|
|
|
return &c.General
|
|
|
|
}
|
|
|
|
|
2019-12-30 20:56:13 +00:00
|
|
|
func (c *LuetConfig) GetSystem() *LuetSystemConfig {
|
|
|
|
return &c.System
|
|
|
|
}
|
|
|
|
|
2019-12-27 19:12:08 +00:00
|
|
|
func (c *LuetGeneralConfig) String() string {
|
|
|
|
ans := fmt.Sprintf(`
|
|
|
|
general:
|
|
|
|
concurrency: %d
|
|
|
|
debug: %t
|
|
|
|
show_build_output: %t
|
|
|
|
spinner_ms: %d
|
2019-12-30 20:56:13 +00:00
|
|
|
spinner_charset: %d`, c.Concurrency, c.Debug, c.ShowBuildOutput,
|
2019-12-27 19:12:08 +00:00
|
|
|
c.SpinnerMs, c.SpinnerCharset)
|
|
|
|
|
|
|
|
return ans
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetGeneralConfig) GetSpinnerMs() time.Duration {
|
|
|
|
duration, err := time.ParseDuration(fmt.Sprintf("%dms", c.SpinnerMs))
|
|
|
|
if err != nil {
|
|
|
|
return 100 * time.Millisecond
|
|
|
|
}
|
|
|
|
return duration
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetLoggingConfig) String() string {
|
|
|
|
ans := fmt.Sprintf(`
|
|
|
|
logging:
|
|
|
|
path: %s
|
2019-12-30 20:56:13 +00:00
|
|
|
level: %s`, c.Path, c.Level)
|
|
|
|
|
|
|
|
return ans
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *LuetSystemConfig) String() string {
|
|
|
|
ans := fmt.Sprintf(`
|
|
|
|
system:
|
|
|
|
database_engine: %s
|
|
|
|
database_path: %s
|
|
|
|
rootfs: %s`,
|
|
|
|
c.DatabaseEngine, c.DatabasePath, c.Rootfs)
|
2019-12-27 19:12:08 +00:00
|
|
|
|
|
|
|
return ans
|
|
|
|
}
|