2020-11-25 19:44:45 +00:00
|
|
|
// Copyright (c) 2020, the Drone Plugins project authors.
|
2021-09-13 21:00:00 +00:00
|
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
|
2020-11-25 19:44:45 +00:00
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/drone-plugins/drone-matrix/plugin"
|
|
|
|
"github.com/drone-plugins/drone-plugin-lib/errors"
|
|
|
|
"github.com/drone-plugins/drone-plugin-lib/urfave"
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var version = "unknown"
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
settings := &plugin.Settings{}
|
|
|
|
|
|
|
|
if _, err := os.Stat("/run/drone/env"); err == nil {
|
|
|
|
godotenv.Overload("/run/drone/env")
|
|
|
|
}
|
|
|
|
|
|
|
|
app := &cli.App{
|
|
|
|
Name: "drone-matrix",
|
|
|
|
Usage: "build notifications for matrix",
|
|
|
|
Version: version,
|
|
|
|
Flags: append(settingsFlags(settings), urfave.Flags()...),
|
|
|
|
Action: run(settings),
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := app.Run(os.Args); err != nil {
|
|
|
|
errors.HandleExit(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func run(settings *plugin.Settings) cli.ActionFunc {
|
|
|
|
return func(ctx *cli.Context) error {
|
|
|
|
urfave.LoggingFromContext(ctx)
|
|
|
|
|
|
|
|
plugin := plugin.New(
|
|
|
|
*settings,
|
|
|
|
urfave.PipelineFromContext(ctx),
|
|
|
|
urfave.NetworkFromContext(ctx),
|
|
|
|
)
|
|
|
|
|
|
|
|
if err := plugin.Validate(); err != nil {
|
|
|
|
if e, ok := err.(errors.ExitCoder); ok {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.ExitMessagef("validation failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := plugin.Execute(); err != nil {
|
|
|
|
if e, ok := err.(errors.ExitCoder); ok {
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.ExitMessagef("execution failed: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|