mirror of
https://github.com/thegeeklab/wp-plugin-go.git
synced 2024-11-13 03:10:39 +00:00
109 lines
3.0 KiB
Go
109 lines
3.0 KiB
Go
// Copyright 2023 Woodpecker Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Pipeline defines runtime metadata for a pipeline.
|
|
type Pipeline struct {
|
|
Number int64
|
|
Status string
|
|
Event string
|
|
URL string
|
|
DeployTarget string
|
|
Created time.Time
|
|
Started time.Time
|
|
Finished time.Time
|
|
Parent int64
|
|
}
|
|
|
|
func pipelineFlags(category string) []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.Int64Flag{
|
|
Name: "pipeline.number",
|
|
Usage: "pipeline number",
|
|
EnvVars: []string{"CI_PIPELINE_NUMBER"},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "pipeline.status",
|
|
Usage: "pipeline status",
|
|
EnvVars: []string{"CI_PIPELINE_STATUS"},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "pipeline.event",
|
|
Usage: "pipeline event",
|
|
EnvVars: []string{"CI_PIPELINE_EVENT"},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "pipeline.url",
|
|
Usage: "pipeline url",
|
|
// TODO: Revert after https://github.com/woodpecker-ci/woodpecker/issues/2219
|
|
// EnvVars: []string{"CI_PIPELINE_URL"},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "pipeline.deploy-target",
|
|
Usage: "pipeline deployment target",
|
|
EnvVars: []string{"CI_PIPELINE_DEPLOY_TARGET"},
|
|
Category: category,
|
|
},
|
|
&cli.Int64Flag{
|
|
Name: "pipeline.created",
|
|
Usage: "pipeline creation time",
|
|
EnvVars: []string{"CI_PIPELINE_CREATED"},
|
|
Category: category,
|
|
},
|
|
&cli.Int64Flag{
|
|
Name: "pipeline.started",
|
|
Usage: "pipeline start time",
|
|
EnvVars: []string{"CI_PIPELINE_STARTED"},
|
|
Category: category,
|
|
},
|
|
&cli.Int64Flag{
|
|
Name: "pipeline.finished",
|
|
Usage: "pipeline finish time",
|
|
EnvVars: []string{"CI_PIPELINE_FINISHED"},
|
|
Category: category,
|
|
},
|
|
&cli.Int64Flag{
|
|
Name: "pipeline.parent",
|
|
Usage: "pipeline parent",
|
|
EnvVars: []string{"CI_PIPELINE_PARENT"},
|
|
Category: category,
|
|
},
|
|
}
|
|
}
|
|
|
|
func pipelineFromContext(c *cli.Context) Pipeline {
|
|
return Pipeline{
|
|
Number: c.Int64("pipeline.number"),
|
|
Status: c.String("pipeline.status"),
|
|
Event: c.String("pipeline.event"),
|
|
URL: c.String("pipeline.url"),
|
|
DeployTarget: c.String("pipeline.deploy-target"),
|
|
Created: time.Unix(c.Int64("pipeline.created"), 0),
|
|
Started: time.Unix(c.Int64("pipeline.started"), 0),
|
|
Finished: time.Unix(c.Int64("pipeline.finished"), 0),
|
|
Parent: c.Int64("pipeline.parent"),
|
|
}
|
|
}
|