mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-31 13:00:41 +08:00
154 lines
3.9 KiB
Go
154 lines
3.9 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
|
|
"golang.org/x/net/http/httpproxy"
|
|
|
|
"yunion.io/x/cloudmux/pkg/cloudprovider"
|
|
"yunion.io/x/pkg/util/shellutils"
|
|
"yunion.io/x/structarg"
|
|
|
|
"yunion.io/x/onecloud/pkg/mcclient/cloudpods"
|
|
_ "yunion.io/x/onecloud/pkg/mcclient/cloudpods/shell"
|
|
)
|
|
|
|
type BaseOptions struct {
|
|
Debug bool `help:"debug mode"`
|
|
AuthURL string `help:"Auth URL" default:"$CLOUDPODS_AUTH_URL" metavar:"CLOUDPODS_AUTH_URL"`
|
|
AccessKey string `help:"AccessKey" default:"$CLOUDPODS_ACCESS_KEY" metavar:"CLOUDPODS_ACCESS_KEY"`
|
|
AccessSecret string `help:"AccessSecret" default:"$CLOUDPODS_ACCESS_SECRET" metavar:"CLOUDPODS_ACCESS_SECRET"`
|
|
RegionId string `help:"RegionId" default:"$CLOUDPODS_REGION_ID|default" metavar:"CLOUDPODS_REGION_ID"`
|
|
SUBCOMMAND string `help:"cloudpodscli subcommand" subcommand:"true"`
|
|
}
|
|
|
|
func getSubcommandParser() (*structarg.ArgumentParser, error) {
|
|
parse, err := structarg.NewArgumentParserWithHelp(&BaseOptions{},
|
|
"cloudpodscli",
|
|
"Command-line interface to cloudpods API.",
|
|
`See "cloudpodscli COMMAND --help" for help on a specific command.`)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
subcmd := parse.GetSubcommand()
|
|
if subcmd == nil {
|
|
return nil, fmt.Errorf("No subcommand argument.")
|
|
}
|
|
for _, v := range shellutils.CommandTable {
|
|
_, err = subcmd.AddSubParserWithHelp(v.Options, v.Command, v.Desc, v.Callback)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return parse, nil
|
|
}
|
|
|
|
func showErrorAndExit(e error) {
|
|
fmt.Fprintf(os.Stderr, "%s", e)
|
|
fmt.Fprintln(os.Stderr)
|
|
os.Exit(1)
|
|
}
|
|
|
|
func newClient(options *BaseOptions) (*cloudpods.SRegion, error) {
|
|
if len(options.AuthURL) == 0 {
|
|
return nil, fmt.Errorf("Missing AuthURL")
|
|
}
|
|
|
|
if len(options.AccessKey) == 0 {
|
|
return nil, fmt.Errorf("Missing access key")
|
|
}
|
|
|
|
if len(options.AccessSecret) == 0 {
|
|
return nil, fmt.Errorf("Missing access secret")
|
|
}
|
|
|
|
cfg := &httpproxy.Config{
|
|
HTTPProxy: os.Getenv("HTTP_PROXY"),
|
|
HTTPSProxy: os.Getenv("HTTPS_PROXY"),
|
|
NoProxy: os.Getenv("NO_PROXY"),
|
|
}
|
|
cfgProxyFunc := cfg.ProxyFunc()
|
|
proxyFunc := func(req *http.Request) (*url.URL, error) {
|
|
return cfgProxyFunc(req.URL)
|
|
}
|
|
|
|
cli, err := cloudpods.NewCloudpodsClient(
|
|
cloudpods.NewCloudpodsClientConfig(
|
|
options.AuthURL,
|
|
options.AccessKey,
|
|
options.AccessSecret,
|
|
).Debug(options.Debug).
|
|
CloudproviderConfig(
|
|
cloudprovider.ProviderConfig{
|
|
ProxyFunc: proxyFunc,
|
|
},
|
|
),
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
region, err := cli.GetRegion(options.RegionId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return region, nil
|
|
}
|
|
|
|
func main() {
|
|
parser, err := getSubcommandParser()
|
|
if err != nil {
|
|
showErrorAndExit(err)
|
|
}
|
|
err = parser.ParseArgs(os.Args[1:], false)
|
|
options := parser.Options().(*BaseOptions)
|
|
|
|
if parser.IsHelpSet() {
|
|
fmt.Print(parser.HelpString())
|
|
return
|
|
}
|
|
subcmd := parser.GetSubcommand()
|
|
subparser := subcmd.GetSubParser()
|
|
if err != nil || subparser == nil {
|
|
if subparser != nil {
|
|
fmt.Print(subparser.Usage())
|
|
} else {
|
|
fmt.Print(parser.Usage())
|
|
}
|
|
showErrorAndExit(err)
|
|
return
|
|
}
|
|
suboptions := subparser.Options()
|
|
if subparser.IsHelpSet() {
|
|
fmt.Print(subparser.HelpString())
|
|
return
|
|
}
|
|
var region *cloudpods.SRegion
|
|
region, err = newClient(options)
|
|
if err != nil {
|
|
showErrorAndExit(err)
|
|
}
|
|
err = subcmd.Invoke(region, suboptions)
|
|
if err != nil {
|
|
showErrorAndExit(err)
|
|
}
|
|
}
|