mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-10 04:40:38 +00:00
Robert Kaussow
df7cc521d1
BREAKING CHANGE: The parameter `access` was renamed to `acl` and the environment variable `PLUGIN_ACCESS` was removed.
146 lines
4.1 KiB
Go
146 lines
4.1 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/thegeeklab/drone-s3-sync/plugin"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// settingsFlags has the cli.Flags for the plugin.Settings.
|
|
func settingsFlags(settings *plugin.Settings, category string) []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "endpoint",
|
|
Usage: "endpoint for the s3 connection",
|
|
EnvVars: []string{"PLUGIN_ENDPOINT", "S3_ENDPOINT"},
|
|
Destination: &settings.Endpoint,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "access-key",
|
|
Usage: "s3 access key",
|
|
EnvVars: []string{"PLUGIN_ACCESS_KEY", "S3_ACCESS_KEY"},
|
|
Destination: &settings.AccessKey,
|
|
Required: true,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "secret-key",
|
|
Usage: "s3 secret key",
|
|
EnvVars: []string{"PLUGIN_SECRET_KEY", "S3_SECRET_KEY"},
|
|
Destination: &settings.SecretKey,
|
|
Required: true,
|
|
Category: category,
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "path-style",
|
|
Usage: "enable path style for bucket paths",
|
|
EnvVars: []string{"PLUGIN_PATH_STYLE"},
|
|
Destination: &settings.PathStyle,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "bucket",
|
|
Usage: "name of the bucket",
|
|
EnvVars: []string{"PLUGIN_BUCKET"},
|
|
Destination: &settings.Bucket,
|
|
Required: true,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "region",
|
|
Usage: "s3 region",
|
|
Value: "us-east-1",
|
|
EnvVars: []string{"PLUGIN_REGION"},
|
|
Destination: &settings.Region,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "source",
|
|
Usage: "upload source path",
|
|
Value: ".",
|
|
EnvVars: []string{"PLUGIN_SOURCE"},
|
|
Destination: &settings.Source,
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "target",
|
|
Usage: "upload target path",
|
|
Value: "/",
|
|
EnvVars: []string{"PLUGIN_TARGET"},
|
|
Destination: &settings.Target,
|
|
Category: category,
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "delete",
|
|
Usage: "delete locally removed files from the target",
|
|
EnvVars: []string{"PLUGIN_DELETE"},
|
|
Destination: &settings.Delete,
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "acl",
|
|
Usage: "access control list",
|
|
EnvVars: []string{"PLUGIN_ACL"},
|
|
Value: &StringMapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "content-type",
|
|
Usage: "content-type settings for uploads",
|
|
EnvVars: []string{"PLUGIN_CONTENT_TYPE"},
|
|
Value: &StringMapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "content-encoding",
|
|
Usage: "content-encoding settings for uploads",
|
|
EnvVars: []string{"PLUGIN_CONTENT_ENCODING"},
|
|
Value: &StringMapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "cache-control",
|
|
Usage: "cache-control settings for uploads",
|
|
EnvVars: []string{"PLUGIN_CACHE_CONTROL"},
|
|
Value: &StringMapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "metadata",
|
|
Usage: "additional metadata for uploads",
|
|
EnvVars: []string{"PLUGIN_METADATA"},
|
|
Value: &DeepStringMapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.GenericFlag{
|
|
Name: "redirects",
|
|
Usage: "redirects to create",
|
|
EnvVars: []string{"PLUGIN_REDIRECTS"},
|
|
Value: &MapFlag{},
|
|
Category: category,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "cloudfront-distribution",
|
|
Usage: "id of cloudfront distribution to invalidate",
|
|
EnvVars: []string{"PLUGIN_CLOUDFRONT_DISTRIBUTION"},
|
|
Destination: &settings.CloudFrontDistribution,
|
|
Category: category,
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "dry-run",
|
|
Usage: "dry run disables api calls",
|
|
EnvVars: []string{"DRY_RUN", "PLUGIN_DRY_RUN"},
|
|
Destination: &settings.DryRun,
|
|
Category: category,
|
|
},
|
|
&cli.IntFlag{
|
|
Name: "max-concurrency",
|
|
Usage: "customize number concurrent files to process",
|
|
Value: 100,
|
|
EnvVars: []string{"PLUGIN_MAX_CONCURRENCY"},
|
|
Destination: &settings.MaxConcurrency,
|
|
Category: category,
|
|
},
|
|
}
|
|
}
|