2022-05-03 20:03:37 +00:00
|
|
|
// Copyright (c) 2019, Drone Plugins project authors
|
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2019-12-20 20:47:50 +00:00
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
package urfave
|
|
|
|
|
|
|
|
import (
|
2022-05-03 20:03:37 +00:00
|
|
|
"github.com/thegeeklab/drone-plugin-lib/drone"
|
2019-12-20 20:47:50 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// systemFlags has the cli.Flags for the drone.System.
|
2022-05-29 11:15:31 +00:00
|
|
|
func systemFlags(category string) []cli.Flag {
|
2019-12-20 20:47:50 +00:00
|
|
|
return []cli.Flag{
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "system.proto",
|
|
|
|
Usage: "system proto",
|
|
|
|
EnvVars: []string{
|
|
|
|
"DRONE_SYSTEM_PROTO",
|
|
|
|
},
|
2022-05-29 11:15:31 +00:00
|
|
|
Category: category,
|
2019-12-20 20:47:50 +00:00
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "system.host",
|
|
|
|
Usage: "system host",
|
|
|
|
EnvVars: []string{
|
|
|
|
"DRONE_SYSTEM_HOST",
|
|
|
|
"DRONE_SYSTEM_HOSTNAME",
|
|
|
|
},
|
2022-05-29 11:15:31 +00:00
|
|
|
Category: category,
|
2019-12-20 20:47:50 +00:00
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "system.version",
|
|
|
|
Usage: "system version",
|
|
|
|
EnvVars: []string{
|
|
|
|
"DRONE_SYSTEM_VERSION",
|
|
|
|
},
|
2022-05-29 11:15:31 +00:00
|
|
|
Category: category,
|
2019-12-20 20:47:50 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// systemFromContext creates a drone.System from the cli.Context.
|
|
|
|
func systemFromContext(ctx *cli.Context) drone.System {
|
|
|
|
return drone.System{
|
|
|
|
Proto: ctx.String("system.proto"),
|
|
|
|
Host: ctx.String("system.host"),
|
|
|
|
Version: ctx.String("system.version"),
|
|
|
|
}
|
|
|
|
}
|