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 (
|
2022-10-31 15:08:57 +00:00
|
|
|
"xorm.io/builder"
|
|
|
|
|
2021-09-27 17:51:55 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
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
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) ConfigFindIdentical(repoID int64, hash string) (*model.Config, error) {
|
|
|
|
conf := &model.Config{
|
|
|
|
RepoID: repoID,
|
|
|
|
Hash: hash,
|
|
|
|
}
|
|
|
|
if err := wrapGet(s.engine.Get(conf)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return conf, nil
|
2017-05-05 16:59:37 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) ConfigFindApproved(config *model.Config) (bool, error) {
|
2022-10-31 15:08:57 +00:00
|
|
|
return s.engine.Table("pipelines").Select("pipelines.pipeline_id").
|
|
|
|
Join("INNER", "pipeline_config", "pipelines.pipeline_id = pipeline_config.pipeline_id").
|
|
|
|
Where(builder.Eq{"pipelines.pipeline_repo_id": config.RepoID}.
|
|
|
|
And(builder.Eq{"pipeline_config.config_id": config.ID}).
|
|
|
|
And(builder.NotIn("pipelines.pipeline_status", model.StatusBlocked, model.StatusPending))).
|
|
|
|
Exist()
|
2017-05-05 16:59:37 +00:00
|
|
|
}
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
func (s storage) ConfigCreate(config *model.Config) error {
|
|
|
|
// only Insert set auto created ID back to object
|
|
|
|
_, err := s.engine.Insert(config)
|
|
|
|
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
|
|
|
}
|