woodpecker/server/store/datastore/config.go
qwerty287 f88c70b55e
Rename to pipeline in DB and JSONs (#1296)
Closes #1282 

Follow-up to #1224, addresses #745

- changes JSON fields
- adds migration to rename columns
- fixes some comments
2022-10-22 15:54:43 +02:00

76 lines
2.3 KiB
Go

// Copyright 2021 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.
package datastore
import (
"github.com/woodpecker-ci/woodpecker/server/model"
)
func (s storage) ConfigsForPipeline(pipelineID int64) ([]*model.Config, error) {
configs := make([]*model.Config, 0, perPage)
return configs, s.engine.
Table("config").
Join("LEFT", "pipeline_config", "config.config_id = pipeline_config.config_id").
Where("pipeline_config.pipeline_id = ?", pipelineID).
Find(&configs)
}
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
}
func (s storage) ConfigFindApproved(config *model.Config) (bool, error) {
/* TODO: use builder (do not behave same as pure sql, fix that)
return s.engine.Table(new(model.Pipeline)).
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.In("pipelines.pipeline_status", "blocked", "pending")).
Exist(new(model.Pipeline))
*/
c, err := s.engine.SQL(`
SELECT pipeline_id FROM pipelines
WHERE pipeline_repo_id = ?
AND pipeline_id in (
SELECT pipeline_id
FROM pipeline_config
WHERE pipeline_config.config_id = ?
)
AND pipeline_status NOT IN ('blocked', 'pending')
LIMIT 1
`, config.RepoID, config.ID).Count()
return c > 0, err
}
func (s storage) ConfigCreate(config *model.Config) error {
// only Insert set auto created ID back to object
_, err := s.engine.Insert(config)
return err
}
func (s storage) PipelineConfigCreate(config *model.PipelineConfig) error {
// only Insert set auto created ID back to object
_, err := s.engine.Insert(config)
return err
}