1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-19 09:21:33 +01:00
drone-cli/drone/handle.go
2015-10-24 17:06:46 -07:00

39 lines
835 B
Go

package main
import (
"fmt"
"os"
"github.com/codegangsta/cli"
"github.com/drone/drone-go/drone"
)
type handlerFunc func(*cli.Context, drone.Client) error
// handle wraps the command function handlers and
// sets up the environment.
func handle(c *cli.Context, fn handlerFunc) {
var token = c.GlobalString("token")
var server = c.GlobalString("server")
// if no server url is provided we can default
// to the hosted Drone service.
if len(server) == 0 {
fmt.Println("Error: you must provide the Drone server address.")
os.Exit(1)
}
if len(token) == 0 {
fmt.Println("Error: you must provide your Drone access token.")
os.Exit(1)
}
// create the drone client
client := drone.NewClientToken(server, token)
// handle the function
if err := fn(c, client); err != nil {
println(err.Error())
os.Exit(1)
}
}