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-05-05 16:59:37 +00:00
|
|
|
package datastore
|
|
|
|
|
|
|
|
import (
|
2024-01-18 21:50:29 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2022-10-31 15:08:57 +00:00
|
|
|
"xorm.io/builder"
|
2024-01-18 21:50:29 +00:00
|
|
|
"xorm.io/xorm"
|
2022-10-31 15:08:57 +00:00
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
2024-01-18 21:50:29 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store/types"
|
2017-05-05 16:59:37 +00:00
|
|
|
)
|
|
|
|
|
2022-10-18 01:24:12 +00:00
|
|
|
func (s storage) ConfigsForPipeline(pipelineID int64) ([]*model.Config, error) {
|
2021-11-13 19:18:06 +00:00
|
|
|
configs := make([]*model.Config, 0, perPage)
|
|
|
|
return configs, s.engine.
|
|
|
|
Table("config").
|
2022-10-18 01:24:12 +00:00
|
|
|
Join("LEFT", "pipeline_config", "config.config_id = pipeline_config.config_id").
|
2022-10-22 13:54:43 +00:00
|
|
|
Where("pipeline_config.pipeline_id = ?", pipelineID).
|
2021-11-13 19:18:06 +00:00
|
|
|
Find(&configs)
|
2017-05-05 16:59:37 +00:00
|
|
|
}
|
|
|
|
|
2024-01-18 21:50:29 +00:00
|
|
|
func (s storage) configFindIdentical(sess *xorm.Session, repoID int64, hash, name string) (*model.Config, error) {
|
2023-07-07 11:10:16 +00:00
|
|
|
conf := new(model.Config)
|
2024-01-18 21:50:29 +00:00
|
|
|
if err := wrapGet(sess.Where(
|
|
|
|
builder.Eq{"config_repo_id": repoID, "config_hash": hash, "config_name": name},
|
2023-07-07 11:10:16 +00:00
|
|
|
).Get(conf)); err != nil {
|
2021-11-13 19:18:06 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return conf, nil
|
2017-05-05 16:59:37 +00:00
|
|
|
}
|
|
|
|
|
2024-01-18 21:50:29 +00:00
|
|
|
func (s storage) ConfigPersist(conf *model.Config) (*model.Config, error) {
|
|
|
|
conf.Hash = fmt.Sprintf("%x", sha256.Sum256(conf.Data))
|
|
|
|
|
|
|
|
sess := s.engine.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
existingConfig, err := s.configFindIdentical(sess, conf.RepoID, conf.Hash, conf.Name)
|
|
|
|
if err != nil && !errors.Is(err, types.RecordNotExist) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if existingConfig != nil {
|
|
|
|
return existingConfig, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.configCreate(sess, conf); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return conf, sess.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s storage) configCreate(sess *xorm.Session, config *model.Config) error {
|
|
|
|
// should never happen but just in case
|
|
|
|
if config.Name == "" {
|
|
|
|
return fmt.Errorf("insert config to store failed: 'Name' has to be set")
|
|
|
|
}
|
|
|
|
if config.Hash == "" {
|
|
|
|
return fmt.Errorf("insert config to store failed: 'Hash' has to be set")
|
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
// only Insert set auto created ID back to object
|
2024-01-18 21:50:29 +00:00
|
|
|
_, err := sess.Insert(config)
|
2021-11-13 19:18:06 +00:00
|
|
|
return err
|
2017-05-05 16:59:37 +00:00
|
|
|
}
|
2019-06-11 08:50:50 +00:00
|
|
|
|
2022-10-18 01:24:12 +00:00
|
|
|
func (s storage) PipelineConfigCreate(config *model.PipelineConfig) error {
|
2021-11-13 19:18:06 +00:00
|
|
|
// only Insert set auto created ID back to object
|
|
|
|
_, err := s.engine.Insert(config)
|
|
|
|
return err
|
2019-06-11 08:50:50 +00:00
|
|
|
}
|