mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-22 10:20:39 +00:00
Merge pull request #9 from drone-plugins/better-separation
Better separation of network, logging and pipeline
This commit is contained in:
commit
7d346ea6f4
@ -9,7 +9,6 @@ package drone
|
|||||||
//
|
//
|
||||||
// Represents the full Drone environment that the plugin is executing in.
|
// Represents the full Drone environment that the plugin is executing in.
|
||||||
type Pipeline struct {
|
type Pipeline struct {
|
||||||
Network Network
|
|
||||||
Build Build
|
Build Build
|
||||||
Repo Repo
|
Repo Repo
|
||||||
Commit Commit
|
Commit Commit
|
||||||
|
@ -21,8 +21,8 @@ func loggingFlags() []cli.Flag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// loggingFromContext sets the logrus logging level.
|
// LoggingFromContext sets the logrus logging level.
|
||||||
func loggingFromContext(ctx *cli.Context) {
|
func LoggingFromContext(ctx *cli.Context) {
|
||||||
lvl, err := logrus.ParseLevel(ctx.String("log-level"))
|
lvl, err := logrus.ParseLevel(ctx.String("log-level"))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -29,8 +29,8 @@ func networkFlags() []cli.Flag {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// networkFromContext creates a drone.Network from the cli.Context.
|
// NetworkFromContext creates a drone.Network from the cli.Context.
|
||||||
func networkFromContext(c *cli.Context) drone.Network {
|
func NetworkFromContext(c *cli.Context) drone.Network {
|
||||||
dialer := &net.Dialer{
|
dialer := &net.Dialer{
|
||||||
Timeout: 30 * time.Second,
|
Timeout: 30 * time.Second,
|
||||||
KeepAlive: 30 * time.Second,
|
KeepAlive: 30 * time.Second,
|
||||||
|
@ -27,12 +27,9 @@ func Flags() []cli.Flag {
|
|||||||
return flags
|
return flags
|
||||||
}
|
}
|
||||||
|
|
||||||
// FromContext creates a drone.Pipeline from the cli.Context.
|
// PipelineFromContext creates a drone.Pipeline from the cli.Context.
|
||||||
func FromContext(ctx *cli.Context) drone.Pipeline {
|
func PipelineFromContext(ctx *cli.Context) drone.Pipeline {
|
||||||
loggingFromContext(ctx)
|
|
||||||
|
|
||||||
return drone.Pipeline{
|
return drone.Pipeline{
|
||||||
Network: networkFromContext(ctx),
|
|
||||||
Build: buildFromContext(ctx),
|
Build: buildFromContext(ctx),
|
||||||
Repo: repoFromContext(ctx),
|
Repo: repoFromContext(ctx),
|
||||||
Commit: commitFromContext(ctx),
|
Commit: commitFromContext(ctx),
|
||||||
|
Loading…
Reference in New Issue
Block a user