woodpecker/server/store/datastore/config.go

58 lines
1.8 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
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 (
2017-05-05 18:05:42 +00:00
gosql "database/sql"
"github.com/russross/meddler"
"github.com/woodpecker-ci/woodpecker/model"
"github.com/woodpecker-ci/woodpecker/server/store/datastore/sql"
2017-05-05 16:59:37 +00:00
)
func (db *datastore) ConfigsForBuild(buildID int64) ([]*model.Config, error) {
2017-05-05 18:05:42 +00:00
stmt := sql.Lookup(db.driver, "config-find-id")
2019-06-07 08:40:16 +00:00
var configs = []*model.Config{}
err := meddler.QueryAll(db, &configs, stmt, buildID)
return configs, err
2017-05-05 16:59:37 +00:00
}
func (db *datastore) ConfigFindIdentical(repoID int64, hash string) (*model.Config, error) {
2017-05-05 16:59:37 +00:00
stmt := sql.Lookup(db.driver, "config-find-repo-hash")
conf := new(model.Config)
err := meddler.QueryRow(db, conf, stmt, repoID, hash)
2017-05-05 16:59:37 +00:00
return conf, err
}
2017-05-05 18:05:42 +00:00
func (db *datastore) ConfigFindApproved(config *model.Config) (bool, error) {
var dest int64
stmt := sql.Lookup(db.driver, "config-find-approved")
err := db.DB.QueryRow(stmt, config.RepoID, config.ID).Scan(&dest)
if err == gosql.ErrNoRows {
return false, nil
} else if err != nil {
return false, err
}
return true, nil
2017-05-05 16:59:37 +00:00
}
2017-05-05 18:05:42 +00:00
func (db *datastore) ConfigCreate(config *model.Config) error {
2017-05-05 16:59:37 +00:00
return meddler.Insert(db, "config", config)
}
func (db *datastore) BuildConfigCreate(buildConfig *model.BuildConfig) error {
return meddler.Insert(db, "build_config", buildConfig)
}