2023-08-10 09:06:00 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-06-01 18:06:27 +00:00
|
|
|
package datastore
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
import "go.woodpecker-ci.org/woodpecker/v2/server/model"
|
2022-06-01 18:06:27 +00:00
|
|
|
|
|
|
|
func (s storage) ServerConfigGet(key string) (string, error) {
|
2023-07-07 11:10:16 +00:00
|
|
|
config := new(model.ServerConfig)
|
|
|
|
err := wrapGet(s.engine.ID(key).Get(config))
|
2022-06-01 18:06:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return config.Value, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s storage) ServerConfigSet(key, value string) error {
|
|
|
|
config := &model.ServerConfig{
|
2023-01-12 19:59:07 +00:00
|
|
|
Key: key,
|
2022-06-01 18:06:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
count, err := s.engine.Count(config)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-01-12 19:59:07 +00:00
|
|
|
config.Value = value
|
|
|
|
|
2022-06-01 18:06:27 +00:00
|
|
|
if count == 0 {
|
|
|
|
_, err := s.engine.Insert(config)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-10-31 11:43:06 +00:00
|
|
|
_, err = s.engine.Where("`key` = ?", config.Key).Cols("value").Update(config)
|
2022-06-01 18:06:27 +00:00
|
|
|
return err
|
|
|
|
}
|
2023-01-12 19:59:07 +00:00
|
|
|
|
|
|
|
func (s storage) ServerConfigDelete(key string) error {
|
|
|
|
config := &model.ServerConfig{
|
|
|
|
Key: key,
|
|
|
|
}
|
|
|
|
|
2023-04-15 13:22:39 +00:00
|
|
|
return wrapDelete(s.engine.Delete(config))
|
2023-01-12 19:59:07 +00:00
|
|
|
}
|