mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
37 lines
649 B
Go
37 lines
649 B
Go
|
package datastore
|
||
|
|
||
|
import "github.com/woodpecker-ci/woodpecker/server/model"
|
||
|
|
||
|
func (s storage) ServerConfigGet(key string) (string, error) {
|
||
|
config := &model.ServerConfig{
|
||
|
Key: key,
|
||
|
}
|
||
|
|
||
|
err := wrapGet(s.engine.Get(config))
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
return config.Value, nil
|
||
|
}
|
||
|
|
||
|
func (s storage) ServerConfigSet(key, value string) error {
|
||
|
config := &model.ServerConfig{
|
||
|
Key: key,
|
||
|
Value: value,
|
||
|
}
|
||
|
|
||
|
count, err := s.engine.Count(config)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if count == 0 {
|
||
|
_, err := s.engine.Insert(config)
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
_, err = s.engine.Where("key = ?", config.Key).AllCols().Update(config)
|
||
|
return err
|
||
|
}
|