woodpecker/store/datastore/config.go

54 lines
1.6 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
//
// 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.
2017-05-05 16:59:37 +00:00
package datastore
import (
2017-05-05 18:05:42 +00:00
gosql "database/sql"
2017-05-05 16:59:37 +00:00
"github.com/drone/drone/model"
"github.com/drone/drone/store/datastore/sql"
"github.com/russross/meddler"
)
func (db *datastore) ConfigLoad(id int64) (*model.Config, error) {
2017-05-05 18:05:42 +00:00
stmt := sql.Lookup(db.driver, "config-find-id")
2017-05-05 16:59:37 +00:00
conf := new(model.Config)
err := meddler.QueryRow(db, conf, stmt, id)
return conf, err
}
func (db *datastore) ConfigFind(repo *model.Repo, hash string) (*model.Config, error) {
stmt := sql.Lookup(db.driver, "config-find-repo-hash")
conf := new(model.Config)
err := meddler.QueryRow(db, conf, stmt, repo.ID, hash)
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)
}