mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
* Remove user from preferences, stars, orguser, team member * Fix lint * Add Delete user from org and dashboard acl * Delete user from user auth * Add DeleteUser to quota * Add test files and adjust user auth store * Rename package in wire for user auth * Import Quota Service interface in other services * do the same in tests * fix lint tests * Fix tests * Add some tests * Rename InsertUser and DeleteUser to InsertOrgUser and DeleteOrgUser * Rename DeleteUser to DeleteByUser in quota * changing a method name in few additional places * Fix in other places * Fix lint * Fix tests * Chore: Split Delete User method * Add fakes for userauth * Add mock for access control Delete User permossion, use interface * Use interface for ream guardian * Add simple fake for dashboard acl * Add go routines, clean up, use interfaces * fix lint * Update pkg/services/user/userimpl/user_test.go Co-authored-by: Sofia Papagiannaki <1632407+papagian@users.noreply.github.com> * Update pkg/services/user/userimpl/user_test.go Co-authored-by: Sofia Papagiannaki <1632407+papagian@users.noreply.github.com> * Update pkg/services/user/userimpl/user_test.go Co-authored-by: Sofia Papagiannaki <1632407+papagian@users.noreply.github.com> * Split get user by ID * Use new method in api * Add tests * Aplly emthod in auth info service * Fix lint and some tests * Fix get user by ID * Fix lint Remove unused fakes * Use split get user id in admin users * Use GetbyID in cli commands * Clean up after merge * Remove commented out code * Clena up imports * add back ) * Fix wire generation for runner after merge with main Co-authored-by: Sofia Papagiannaki <1632407+papagian@users.noreply.github.com>
209 lines
5.9 KiB
Go
209 lines
5.9 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/commands/datamigrations"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/commands/secretsmigrations"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/logger"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/runner"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/services"
|
|
"github.com/grafana/grafana/pkg/cmd/grafana-cli/utils"
|
|
"github.com/grafana/grafana/pkg/infra/tracing"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore"
|
|
"github.com/grafana/grafana/pkg/services/sqlstore/migrations"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func runRunnerCommand(command func(commandLine utils.CommandLine, runner runner.Runner) error) func(context *cli.Context) error {
|
|
return func(context *cli.Context) error {
|
|
cmd := &utils.ContextCommandLine{Context: context}
|
|
|
|
cfg, err := initCfg(cmd)
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", "failed to load configuration", err)
|
|
}
|
|
|
|
r, err := runner.Initialize(cfg)
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", "failed to initialize runner", err)
|
|
}
|
|
|
|
if err := command(cmd, r); err != nil {
|
|
return err
|
|
}
|
|
|
|
logger.Info("\n\n")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func runDbCommand(command func(commandLine utils.CommandLine, sqlStore *sqlstore.SQLStore) error) func(context *cli.Context) error {
|
|
return func(context *cli.Context) error {
|
|
cmd := &utils.ContextCommandLine{Context: context}
|
|
|
|
cfg, err := initCfg(cmd)
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", "failed to load configuration", err)
|
|
}
|
|
|
|
tracer, err := tracing.ProvideService(cfg)
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", "failed to initialize tracer service", err)
|
|
}
|
|
|
|
bus := bus.ProvideBus(tracer)
|
|
|
|
sqlStore, err := sqlstore.ProvideService(cfg, nil, &migrations.OSSMigrations{}, bus, tracer)
|
|
if err != nil {
|
|
return fmt.Errorf("%v: %w", "failed to initialize SQL store", err)
|
|
}
|
|
|
|
if err := command(cmd, sqlStore); err != nil {
|
|
return err
|
|
}
|
|
|
|
logger.Info("\n\n")
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func initCfg(cmd *utils.ContextCommandLine) (*setting.Cfg, error) {
|
|
configOptions := strings.Split(cmd.String("configOverrides"), " ")
|
|
cfg, err := setting.NewCfgFromArgs(setting.CommandLineArgs{
|
|
Config: cmd.ConfigFile(),
|
|
HomePath: cmd.HomePath(),
|
|
Args: append(configOptions, cmd.Args().Slice()...), // tailing arguments have precedence over the options string
|
|
})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if cmd.Bool("debug") {
|
|
cfg.LogConfigSources()
|
|
}
|
|
|
|
return cfg, nil
|
|
}
|
|
|
|
func runPluginCommand(command func(commandLine utils.CommandLine) error) func(context *cli.Context) error {
|
|
return func(context *cli.Context) error {
|
|
cmd := &utils.ContextCommandLine{Context: context}
|
|
if err := command(cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
logger.Info(color.GreenString("Please restart Grafana after installing plugins. Refer to Grafana documentation for instructions if necessary.\n\n"))
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// Command contains command state.
|
|
type Command struct {
|
|
Client utils.ApiClient
|
|
}
|
|
|
|
var cmd Command = Command{
|
|
Client: &services.GrafanaComClient{},
|
|
}
|
|
|
|
var pluginCommands = []*cli.Command{
|
|
{
|
|
Name: "install",
|
|
Usage: "install <plugin id> <plugin version (optional)>",
|
|
Action: runPluginCommand(cmd.installCommand),
|
|
}, {
|
|
Name: "list-remote",
|
|
Usage: "list remote available plugins",
|
|
Action: runPluginCommand(cmd.listRemoteCommand),
|
|
}, {
|
|
Name: "list-versions",
|
|
Usage: "list-versions <plugin id>",
|
|
Action: runPluginCommand(cmd.listVersionsCommand),
|
|
}, {
|
|
Name: "update",
|
|
Usage: "update <plugin id>",
|
|
Aliases: []string{"upgrade"},
|
|
Action: runPluginCommand(cmd.upgradeCommand),
|
|
}, {
|
|
Name: "update-all",
|
|
Aliases: []string{"upgrade-all"},
|
|
Usage: "update all your installed plugins",
|
|
Action: runPluginCommand(cmd.upgradeAllCommand),
|
|
}, {
|
|
Name: "ls",
|
|
Usage: "list all installed plugins",
|
|
Action: runPluginCommand(cmd.lsCommand),
|
|
}, {
|
|
Name: "uninstall",
|
|
Aliases: []string{"remove"},
|
|
Usage: "uninstall <plugin id>",
|
|
Action: runPluginCommand(cmd.removeCommand),
|
|
},
|
|
}
|
|
|
|
var adminCommands = []*cli.Command{
|
|
{
|
|
Name: "reset-admin-password",
|
|
Usage: "reset-admin-password <new password>",
|
|
Action: runRunnerCommand(resetPasswordCommand),
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "password-from-stdin",
|
|
Usage: "Read the password from stdin",
|
|
Value: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "data-migration",
|
|
Usage: "Runs a script that migrates or cleanups data in your database",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "encrypt-datasource-passwords",
|
|
Usage: "Migrates passwords from unsecured fields to secure_json_data field. Return ok unless there is an error. Safe to execute multiple times.",
|
|
Action: runDbCommand(datamigrations.EncryptDatasourcePasswords),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "secrets-migration",
|
|
Usage: "Runs a script that migrates secrets in your database",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "re-encrypt",
|
|
Usage: "Re-encrypts secrets by decrypting and re-encrypting them with the currently configured encryption. Returns ok unless there is an error. Safe to execute multiple times.",
|
|
Action: runRunnerCommand(secretsmigrations.ReEncryptSecrets),
|
|
},
|
|
{
|
|
Name: "rollback",
|
|
Usage: "Rolls back secrets to legacy encryption. Returns ok unless there is an error. Safe to execute multiple times.",
|
|
Action: runRunnerCommand(secretsmigrations.RollBackSecrets),
|
|
},
|
|
{
|
|
Name: "re-encrypt-data-keys",
|
|
Usage: "Rotates persisted data encryption keys. Returns ok unless there is an error. Safe to execute multiple times.",
|
|
Action: runRunnerCommand(secretsmigrations.ReEncryptDEKS),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
var Commands = []*cli.Command{
|
|
{
|
|
Name: "plugins",
|
|
Usage: "Manage plugins for grafana",
|
|
Subcommands: pluginCommands,
|
|
},
|
|
{
|
|
Name: "admin",
|
|
Usage: "Grafana admin commands",
|
|
Subcommands: adminCommands,
|
|
},
|
|
}
|