-
Notifications
You must be signed in to change notification settings - Fork 117
/
remove.go
62 lines (52 loc) · 1.69 KB
/
remove.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package user
import (
"fmt"
"github.com/rilldata/rill/cli/pkg/cmdutil"
"github.com/rilldata/rill/cli/pkg/config"
adminv1 "github.com/rilldata/rill/proto/gen/rill/admin/v1"
"github.com/spf13/cobra"
)
func RemoveCmd(cfg *config.Config) *cobra.Command {
var projectName string
var email string
var keepProjectRoles bool
removeCmd := &cobra.Command{
Use: "remove",
Short: "Remove",
RunE: func(cmd *cobra.Command, args []string) error {
cmdutil.StringPromptIfEmpty(&email, "Enter email")
client, err := cmdutil.Client(cfg)
if err != nil {
return err
}
defer client.Close()
if projectName != "" {
_, err = client.RemoveProjectMember(cmd.Context(), &adminv1.RemoveProjectMemberRequest{
Organization: cfg.Org,
Project: projectName,
Email: email,
})
if err != nil {
return err
}
cmdutil.PrintlnSuccess(fmt.Sprintf("Removed user %q from project \"%s/%s\"", email, cfg.Org, projectName))
} else {
_, err = client.RemoveOrganizationMember(cmd.Context(), &adminv1.RemoveOrganizationMemberRequest{
Organization: cfg.Org,
Email: email,
KeepProjectRoles: keepProjectRoles,
})
if err != nil {
return err
}
cmdutil.PrintlnSuccess(fmt.Sprintf("Removed user %q from organization %q", email, cfg.Org))
}
return nil
},
}
removeCmd.Flags().StringVar(&cfg.Org, "org", cfg.Org, "Organization")
removeCmd.Flags().StringVar(&projectName, "project", "", "Project")
removeCmd.Flags().StringVar(&email, "email", "", "Email of the user")
removeCmd.Flags().BoolVar(&keepProjectRoles, "keep-project-roles", false, "Keep roles granted directly on projects in the org")
return removeCmd
}