-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
edce103
commit f1aa6b5
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. | ||
// vespa auth show command | ||
// Author: arnej | ||
package cmd | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"net/http" | ||
"time" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func newAuthShowCmd(cli *CLI) *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "show", | ||
Short: "Show authenticated user", | ||
Long: `Show which user (if any) is authenticated with "auth login" | ||
`, | ||
Example: "$ vespa auth show", | ||
DisableAutoGenTag: true, | ||
SilenceUsage: true, | ||
Args: cobra.ExactArgs(0), | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
if _, err := cli.config.application(); err != nil { | ||
cmd.Flag("application").Value.Set("none.none") | ||
cmd.Flag("application").Changed = true | ||
} | ||
return doAuthShow(cli, args) | ||
}, | ||
} | ||
return cmd | ||
} | ||
|
||
type userV1 struct { | ||
IsPublic bool `json:"isPublic"` | ||
IsCd bool `json:"isCd"` | ||
User struct { | ||
Email string `json:"email"` | ||
} `json:"user"` | ||
Tenants map[string]struct { | ||
Supported bool `json:"supported"` | ||
Roles []string `json:"roles"` | ||
} `json:"tenants"` | ||
} | ||
|
||
func doAuthShow(cli *CLI, args []string) error { | ||
target, err := cli.target(targetOptions{supportedType: cloudTargetOnly}) | ||
if err != nil { | ||
return err | ||
} | ||
service, err := target.DeployService() | ||
if err != nil { | ||
return err | ||
} | ||
url := service.BaseURL + "/user/v1/user" | ||
req, err := http.NewRequest("GET", url, nil) | ||
if err != nil { | ||
return err | ||
} | ||
response, err := service.Do(req, time.Second*3) | ||
if err != nil { | ||
return err | ||
} | ||
defer response.Body.Close() | ||
dec := json.NewDecoder(response.Body) | ||
var userResponse userV1 | ||
if err = dec.Decode(&userResponse); err != nil { | ||
return err | ||
} | ||
fmt.Printf("Logged in as: %s\n", userResponse.User.Email) | ||
for tenant, data := range userResponse.Tenants { | ||
fmt.Printf("Available tenant: %s\n", tenant) | ||
for idx, role := range data.Roles { | ||
if idx == 0 { | ||
fmt.Printf(" your roles:") | ||
} | ||
fmt.Printf(" %s", role) | ||
} | ||
fmt.Printf("\n") | ||
} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters