2021-11-13 19:18:06 +00:00
|
|
|
// Copyright 2021 Woodpecker Authors
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-04-11 17:06:45 +00:00
|
|
|
package datastore
|
|
|
|
|
|
|
|
import (
|
2021-09-27 17:51:55 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2017-04-11 17:06:45 +00:00
|
|
|
)
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) SecretFind(repo *model.Repo, name string) (*model.Secret, error) {
|
|
|
|
secret := &model.Secret{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
return secret, wrapGet(s.engine.Get(secret))
|
2017-04-11 17:06:45 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) SecretList(repo *model.Repo) ([]*model.Secret, error) {
|
|
|
|
secrets := make([]*model.Secret, 0, perPage)
|
|
|
|
return secrets, s.engine.Where("secret_repo_id = ?", repo.ID).Find(&secrets)
|
2017-04-11 17:06:45 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) SecretCreate(secret *model.Secret) error {
|
|
|
|
// only Insert set auto created ID back to object
|
|
|
|
_, err := s.engine.Insert(secret)
|
|
|
|
return err
|
2017-04-11 17:06:45 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) SecretUpdate(secret *model.Secret) error {
|
|
|
|
_, err := s.engine.ID(secret.ID).AllCols().Update(secret)
|
|
|
|
return err
|
2017-04-11 17:06:45 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) SecretDelete(secret *model.Secret) error {
|
|
|
|
_, err := s.engine.ID(secret.ID).Delete(new(model.Secret))
|
2017-04-11 17:06:45 +00:00
|
|
|
return err
|
|
|
|
}
|