mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-14 01:00:42 +00:00
c6b5c9d03d
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kaussow <mail@thegeeklab.de>
45 lines
834 B
Go
45 lines
834 B
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// PathFlags defines flags for path subcommand.
|
|
func PathFlags(cfg *config.Config) []cli.Flag {
|
|
return []cli.Flag{
|
|
&cli.IntFlag{
|
|
Name: "path-index",
|
|
Usage: "filter parsed path by index",
|
|
EnvVars: []string{"URL_PARSER_PATH_INDEX"},
|
|
Value: -1,
|
|
Destination: &cfg.PathIndex,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Path prints out the path part from url.
|
|
func Path(cfg *config.Config) cli.ActionFunc {
|
|
return func(_ *cli.Context) error {
|
|
parts := parseURL(cfg.URL)
|
|
i := cfg.PathIndex
|
|
|
|
if len(parts.Path) > 0 {
|
|
if i > -1 {
|
|
path := strings.Split(parts.Path, "/")
|
|
|
|
if i++; i < len(path) {
|
|
fmt.Println(path[i])
|
|
}
|
|
} else {
|
|
fmt.Println(parts.Path)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
}
|