mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 03:41:01 +00:00
improving database & remote setup
This commit is contained in:
parent
90baef95e7
commit
0b98eb4186
5 changed files with 87 additions and 47 deletions
|
@ -1,10 +1,12 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"fmt"
|
||||||
"html/template"
|
"html/template"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/namsral/flag"
|
||||||
|
|
||||||
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/gin-gonic/gin"
|
||||||
|
|
||||||
"github.com/drone/drone/Godeps/_workspace/src/github.com/elazarl/go-bindata-assetfs"
|
"github.com/drone/drone/Godeps/_workspace/src/github.com/elazarl/go-bindata-assetfs"
|
||||||
|
@ -33,11 +35,61 @@ var (
|
||||||
revision string
|
revision string
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var conf = struct {
|
||||||
debug = flag.Bool("debug", false, "")
|
debug bool
|
||||||
)
|
|
||||||
|
server struct {
|
||||||
|
addr string
|
||||||
|
cert string
|
||||||
|
key string
|
||||||
|
}
|
||||||
|
|
||||||
|
session struct {
|
||||||
|
expiry string
|
||||||
|
secret string
|
||||||
|
}
|
||||||
|
|
||||||
|
docker struct {
|
||||||
|
host string
|
||||||
|
cert string
|
||||||
|
key string
|
||||||
|
ca string
|
||||||
|
}
|
||||||
|
|
||||||
|
remote struct {
|
||||||
|
driver string
|
||||||
|
config string
|
||||||
|
}
|
||||||
|
|
||||||
|
database struct {
|
||||||
|
driver string
|
||||||
|
config string
|
||||||
|
}
|
||||||
|
|
||||||
|
plugin struct {
|
||||||
|
filter string
|
||||||
|
}
|
||||||
|
}{}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
|
flag.StringVar(&conf.docker.host, "docker-host", "unix:///var/run/docker/docker.sock", "")
|
||||||
|
flag.StringVar(&conf.docker.cert, "docker-cert", "", "")
|
||||||
|
flag.StringVar(&conf.docker.key, "docker-key", "", "")
|
||||||
|
flag.StringVar(&conf.docker.ca, "docker-ca", "", "")
|
||||||
|
flag.StringVar(&conf.server.addr, "server-addr", ":8080", "")
|
||||||
|
flag.StringVar(&conf.server.cert, "server-cert", "", "")
|
||||||
|
flag.StringVar(&conf.server.key, "server-key", "", "")
|
||||||
|
flag.StringVar(&conf.session.expiry, "session-expiry", "", "")
|
||||||
|
flag.StringVar(&conf.session.secret, "session-secret", "", "")
|
||||||
|
flag.StringVar(&conf.remote.driver, "remote-driver", "github", "")
|
||||||
|
flag.StringVar(&conf.remote.config, "remote-config", "https://github.com", "")
|
||||||
|
flag.StringVar(&conf.database.driver, "database-driver", "sqlite3", "")
|
||||||
|
flag.StringVar(&conf.database.config, "database-config", "drone.sqlite", "")
|
||||||
|
flag.StringVar(&conf.plugin.filter, "plugin-filter", "plugins/*", "")
|
||||||
|
flag.BoolVar(&conf.debug, "debug", false, "")
|
||||||
|
|
||||||
|
flag.String("config", "", "")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
settings, err := config.Load("")
|
settings, err := config.Load("")
|
||||||
|
@ -45,12 +97,12 @@ func main() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
store, err := store.New(settings.Database.Driver + "://" + settings.Database.Datasource)
|
store, err := store.New(conf.database.driver, conf.database.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
remote, err := remote.New(settings.Remote.Driver, settings)
|
remote, err := remote.New(conf.remote.driver, conf.remote.config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
@ -204,7 +256,7 @@ func static() http.Handler {
|
||||||
AssetDir: AssetDir,
|
AssetDir: AssetDir,
|
||||||
Prefix: "cmd/drone-server/static",
|
Prefix: "cmd/drone-server/static",
|
||||||
})
|
})
|
||||||
if *debug {
|
if conf.debug {
|
||||||
handler = http.FileServer(
|
handler = http.FileServer(
|
||||||
http.Dir("cmd/drone-server/static"),
|
http.Dir("cmd/drone-server/static"),
|
||||||
)
|
)
|
||||||
|
|
|
@ -41,7 +41,8 @@ func init() {
|
||||||
remote.Register("github", NewDriver)
|
remote.Register("github", NewDriver)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewDriver(conf *config.Config) (remote.Remote, error) {
|
func NewDriver(config string) (remote.Remote, error) {
|
||||||
|
//conf *config.Config
|
||||||
var github = GitHub{
|
var github = GitHub{
|
||||||
API: conf.Github.API,
|
API: conf.Github.API,
|
||||||
URL: conf.Github.Host,
|
URL: conf.Github.Host,
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package remote
|
package remote
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/drone/drone/pkg/config"
|
|
||||||
"github.com/drone/drone/pkg/oauth2"
|
"github.com/drone/drone/pkg/oauth2"
|
||||||
common "github.com/drone/drone/pkg/types"
|
"github.com/drone/drone/pkg/types"
|
||||||
|
|
||||||
|
log "github.com/drone/drone/Godeps/_workspace/src/github.com/Sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
var drivers = make(map[string]DriverFunc)
|
var drivers = make(map[string]DriverFunc)
|
||||||
|
@ -26,55 +26,55 @@ func Register(name string, driver DriverFunc) {
|
||||||
|
|
||||||
// DriverFunc returns a new connection to the remote.
|
// DriverFunc returns a new connection to the remote.
|
||||||
// Config is a struct, with base remote configuration.
|
// Config is a struct, with base remote configuration.
|
||||||
type DriverFunc func(conf *config.Config) (Remote, error)
|
type DriverFunc func(config string) (Remote, error)
|
||||||
|
|
||||||
// New creates a new remote connection.
|
// New creates a new remote connection.
|
||||||
func New(driver string, conf *config.Config) (Remote, error) {
|
func New(driver, config string) (Remote, error) {
|
||||||
fn, ok := drivers[driver]
|
fn, ok := drivers[driver]
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("remote: unknown driver %q", driver)
|
log.Fatalf("remote: unknown driver %q", driver)
|
||||||
}
|
}
|
||||||
return fn(conf)
|
return fn(config)
|
||||||
}
|
}
|
||||||
|
|
||||||
type Remote interface {
|
type Remote interface {
|
||||||
// Login authenticates the session and returns the
|
// Login authenticates the session and returns the
|
||||||
// remote user details.
|
// remote user details.
|
||||||
Login(token, secret string) (*common.User, error)
|
Login(token, secret string) (*types.User, error)
|
||||||
|
|
||||||
// Orgs fetches the organizations for the given user.
|
// Orgs fetches the organizations for the given user.
|
||||||
Orgs(u *common.User) ([]string, error)
|
Orgs(u *types.User) ([]string, error)
|
||||||
|
|
||||||
// Repo fetches the named repository from the remote system.
|
// Repo fetches the named repository from the remote system.
|
||||||
Repo(u *common.User, owner, repo string) (*common.Repo, error)
|
Repo(u *types.User, owner, repo string) (*types.Repo, error)
|
||||||
|
|
||||||
// Perm fetches the named repository permissions from
|
// Perm fetches the named repository permissions from
|
||||||
// the remote system for the specified user.
|
// the remote system for the specified user.
|
||||||
Perm(u *common.User, owner, repo string) (*common.Perm, error)
|
Perm(u *types.User, owner, repo string) (*types.Perm, error)
|
||||||
|
|
||||||
// Script fetches the build script (.drone.yml) from the remote
|
// Script fetches the build script (.drone.yml) from the remote
|
||||||
// repository and returns in string format.
|
// repository and returns in string format.
|
||||||
Script(u *common.User, r *common.Repo, b *common.Build) ([]byte, error)
|
Script(u *types.User, r *types.Repo, b *types.Build) ([]byte, error)
|
||||||
|
|
||||||
// Status sends the commit status to the remote system.
|
// Status sends the commit status to the remote system.
|
||||||
// An example would be the GitHub pull request status.
|
// An example would be the GitHub pull request status.
|
||||||
Status(u *common.User, r *common.Repo, b *common.Build) error
|
Status(u *types.User, r *types.Repo, b *types.Build) error
|
||||||
|
|
||||||
// Netrc returns a .netrc file that can be used to clone
|
// Netrc returns a .netrc file that can be used to clone
|
||||||
// private repositories from a remote system.
|
// private repositories from a remote system.
|
||||||
Netrc(u *common.User) (*common.Netrc, error)
|
Netrc(u *types.User) (*types.Netrc, error)
|
||||||
|
|
||||||
// Activate activates a repository by creating the post-commit hook and
|
// Activate activates a repository by creating the post-commit hook and
|
||||||
// adding the SSH deploy key, if applicable.
|
// adding the SSH deploy key, if applicable.
|
||||||
Activate(u *common.User, r *common.Repo, k *common.Keypair, link string) error
|
Activate(u *types.User, r *types.Repo, k *types.Keypair, link string) error
|
||||||
|
|
||||||
// Deactivate removes a repository by removing all the post-commit hooks
|
// Deactivate removes a repository by removing all the post-commit hooks
|
||||||
// which are equal to link and removing the SSH deploy key.
|
// which are equal to link and removing the SSH deploy key.
|
||||||
Deactivate(u *common.User, r *common.Repo, link string) error
|
Deactivate(u *types.User, r *types.Repo, link string) error
|
||||||
|
|
||||||
// Hook parses the post-commit hook from the Request body
|
// Hook parses the post-commit hook from the Request body
|
||||||
// and returns the required data in a standard format.
|
// and returns the required data in a standard format.
|
||||||
Hook(r *http.Request) (*common.Hook, error)
|
Hook(r *http.Request) (*types.Hook, error)
|
||||||
|
|
||||||
// Oauth2Transport
|
// Oauth2Transport
|
||||||
Oauth2Transport(r *http.Request) *oauth2.Transport
|
Oauth2Transport(r *http.Request) *oauth2.Transport
|
||||||
|
|
|
@ -2,7 +2,6 @@ package builtin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
"net/url"
|
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/drone/drone/pkg/store"
|
"github.com/drone/drone/pkg/store"
|
||||||
|
@ -25,16 +24,7 @@ func init() {
|
||||||
store.Register("postgres", NewDriver)
|
store.Register("postgres", NewDriver)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewDriver(dsn string) (store.Store, error) {
|
func NewDriver(driver, datasource string) (store.Store, error) {
|
||||||
uri, err := url.Parse(dsn)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
driver := uri.Scheme
|
|
||||||
if uri.Scheme == "sqlite3" {
|
|
||||||
uri.Scheme = ""
|
|
||||||
}
|
|
||||||
datasource := uri.String()
|
|
||||||
conn, err := Connect(driver, datasource)
|
conn, err := Connect(driver, datasource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
package store
|
package store
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"io"
|
"io"
|
||||||
"net/url"
|
|
||||||
|
|
||||||
"github.com/drone/drone/pkg/types"
|
"github.com/drone/drone/pkg/types"
|
||||||
|
|
||||||
|
log "github.com/drone/drone/Godeps/_workspace/src/github.com/Sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
var drivers = make(map[string]DriverFunc)
|
var drivers = make(map[string]DriverFunc)
|
||||||
|
@ -25,22 +25,19 @@ func Register(name string, driver DriverFunc) {
|
||||||
|
|
||||||
// DriverFunc returns a new connection to the datastore.
|
// DriverFunc returns a new connection to the datastore.
|
||||||
// The name is a string in a driver-specific format.
|
// The name is a string in a driver-specific format.
|
||||||
type DriverFunc func(name string) (Store, error)
|
type DriverFunc func(driver, datasource string) (Store, error)
|
||||||
|
|
||||||
// New creates a new database connection specified by its database driver
|
// New creates a new database connection specified by its database driver
|
||||||
// name and a driver-specific data source name, usually consisting of at
|
// name and a driver-specific data source name, usually consisting of at
|
||||||
// least a database name and connection information.
|
// least a database name and connection information.
|
||||||
func New(dsn string) (Store, error) {
|
func New(driver, datasource string) (Store, error) {
|
||||||
uri, err := url.Parse(dsn)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
driver := uri.Scheme
|
|
||||||
fn, ok := drivers[driver]
|
fn, ok := drivers[driver]
|
||||||
if !ok {
|
if !ok {
|
||||||
return nil, fmt.Errorf("datastore: unknown driver %q", driver)
|
log.Fatalf("datastore: unknown driver %q", driver)
|
||||||
}
|
}
|
||||||
return fn(dsn)
|
log.Infof("datastore: loading driver %s", driver)
|
||||||
|
log.Infof("datastore: loading config %s", datasource)
|
||||||
|
return fn(driver, datasource)
|
||||||
}
|
}
|
||||||
|
|
||||||
type Store interface {
|
type Store interface {
|
||||||
|
|
Loading…
Reference in a new issue