mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-15 01:30:42 +00:00
25 lines
412 B
Go
25 lines
412 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/thegeeklab/url-parser/config"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
// Password prints out the password part from url.
|
||
|
func Password(config *config.Config) cli.ActionFunc {
|
||
|
return func(ctx *cli.Context) error {
|
||
|
parts := parseURL(config.URL)
|
||
|
|
||
|
if parts.User != nil {
|
||
|
pw, _ := parts.User.Password()
|
||
|
if len(pw) > 0 {
|
||
|
fmt.Println(pw)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
}
|