Add organization flag to chronoctl for orgs

This flag allows users to have a comma delimited list of organization
IDs that the user should given a role in.
pull/10616/head
Michael Desa 2018-02-12 16:03:27 -05:00
parent 258d5e2de0
commit 2457bf25b8
1 changed files with 36 additions and 7 deletions

View File

@ -2,17 +2,18 @@ package main
import (
"context"
"strings"
"github.com/influxdata/chronograf"
)
type AddCommand struct {
BoltPath string `short:"b" long:"bolt-path" description:"Full path to boltDB file (e.g. './chronograf-v1.db')" env:"BOLT_PATH" default:"chronograf-v1.db"`
ID *uint64 `short:"i" long:"id" description:"Users ID. Must be id for existing user"`
Username string `short:"n" long:"name" description:"Users name. Must be Oauth-able email address or username"`
Provider string `short:"p" long:"provider" description:"Name of the Auth provider (e.g. google, github, auth0, or generic)"`
Scheme string `short:"s" long:"scheme" description:"Authentication scheme that matches auth provider (e.g. oauth or ldap)"`
//Organizations string `short:"o" long:"orgs" description:"A comma separated list of organizations that the user should be added to"`
BoltPath string `short:"b" long:"bolt-path" description:"Full path to boltDB file (e.g. './chronograf-v1.db')" env:"BOLT_PATH" default:"chronograf-v1.db"`
ID *uint64 `short:"i" long:"id" description:"Users ID. Must be id for existing user"`
Username string `short:"n" long:"name" description:"Users name. Must be Oauth-able email address or username"`
Provider string `short:"p" long:"provider" description:"Name of the Auth provider (e.g. google, github, auth0, or generic)"`
Scheme string `short:"s" long:"scheme" description:"Authentication scheme that matches auth provider (e.g. oauth or ldap)"`
Organizations string `short:"o" long:"orgs" description:"A comma separated list of organizations that the user should be added to" default:"default"`
}
var addCommand AddCommand
@ -59,7 +60,35 @@ func (l *AddCommand) Execute(args []string) error {
}
// TODO(desa): Apply mapping to user and update their roles
// TODO(desa): Add a flag that allows the user to specify an organization to join
roles := []chronograf.Role{}
OrgLoop:
for _, org := range strings.Split(l.Organizations, ",") {
// Check to see is user is already a part of the organization
for _, r := range user.Roles {
if r.Organization == org {
continue OrgLoop
}
}
orgQuery := chronograf.OrganizationQuery{
ID: &org,
}
o, err := c.OrganizationsStore.Get(ctx, orgQuery)
if err != nil {
return err
}
role := chronograf.Role{
Organization: org,
Name: o.DefaultRole,
}
roles = append(roles, role)
}
user.Roles = append(user.Roles, roles...)
if err = c.UsersStore.Update(ctx, user); err != nil {
return err
}
w := NewTabWriter()
WriteHeaders(w)