mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 12:50:40 +00:00
126 lines
2.8 KiB
Go
126 lines
2.8 KiB
Go
// Copyright (c) 2019, Drone Plugins project authors
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package urfave
|
|
|
|
import (
|
|
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// commitFlags has the cli.Flags for the drone.Commit.
|
|
func commitFlags(category string) []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "commit.sha",
|
|
Usage: "commit sha",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT",
|
|
"DRONE_COMMIT_SHA",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.before",
|
|
Usage: "commit before",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_BEFORE",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.after",
|
|
Usage: "commit after",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_AFTER",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.ref",
|
|
Usage: "commit ref",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_REF",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.branch",
|
|
Usage: "commit branch",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_BRANCH",
|
|
},
|
|
Category: category,
|
|
}, &cli.StringFlag{
|
|
Name: "commit.link",
|
|
Usage: "commit link",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_LINK",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.message",
|
|
Usage: "commit message",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_MESSAGE",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.author",
|
|
Usage: "commit author",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_AUTHOR",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.author-name",
|
|
Usage: "commit author name",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_AUTHOR_NAME",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.author-email",
|
|
Usage: "commit author email",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_AUTHOR_EMAIL",
|
|
},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "commit.author-avatar",
|
|
Usage: "commit author avatar",
|
|
EnvVars: []string{
|
|
"DRONE_COMMIT_AUTHOR_AVATAR",
|
|
},
|
|
Category: category,
|
|
},
|
|
}
|
|
}
|
|
|
|
// commitFromContext creates a drone.Commit from the cli.Context.
|
|
func commitFromContext(ctx *cli.Context) drone.Commit {
|
|
return drone.Commit{
|
|
SHA: ctx.String("commit.sha"),
|
|
Before: ctx.String("commit.before"),
|
|
After: ctx.String("commit.after"),
|
|
Ref: ctx.String("commit.ref"),
|
|
Branch: ctx.String("commit.branch"),
|
|
Link: ctx.String("commit.link"),
|
|
Message: drone.ParseMessage(ctx.String("commit.message")),
|
|
Author: drone.Author{
|
|
Username: ctx.String("commit.author"),
|
|
Name: ctx.String("commit.author-name"),
|
|
Email: ctx.String("commit.author-email"),
|
|
Avatar: ctx.String("commit.author-avatar"),
|
|
},
|
|
}
|
|
}
|