mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-16 02:00:45 +00:00
40 lines
785 B
Go
40 lines
785 B
Go
package command
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Run default command and print out full url.
|
|
func Run(cfg *config.Config) cli.ActionFunc {
|
|
return func(_ *cli.Context) error {
|
|
parts := NewURLParser(cfg.URL, cfg.QueryField, cfg.QuerySplit).parse()
|
|
|
|
if len(parts.String()) > 0 {
|
|
if cfg.JSONOutput {
|
|
json, _ := json.Marshal(parts)
|
|
fmt.Println(string(json))
|
|
} else {
|
|
fmt.Println(parts)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// AllFlags defines flags for all subcommand.
|
|
func AllFlags(cfg *config.Config) []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "json",
|
|
Usage: "output json",
|
|
EnvVars: []string{"URL_PARSER_JSON"},
|
|
Destination: &cfg.JSONOutput,
|
|
},
|
|
}
|
|
}
|