package accessverifier import ( "context" "errors" "gitlab.com/gitlab-org/gitlab-shell/v14/internal/command/commandargs" "gitlab.com/gitlab-org/gitlab-shell/v14/internal/command/readwriter" "gitlab.com/gitlab-org/gitlab-shell/v14/internal/config" "gitlab.com/gitlab-org/gitlab-shell/v14/internal/console" "gitlab.com/gitlab-org/gitlab-shell/v14/internal/gitlabnet/accessverifier" ) type Response = accessverifier.Response type Command struct { Config *config.Config Args *commandargs.Shell ReadWriter *readwriter.ReadWriter } func (c *Command) Verify(ctx context.Context, action commandargs.CommandType, repo string) (*Response, error) { client, err := accessverifier.NewClient(c.Config) if err != nil { return nil, err } response, err := client.Verify(ctx, c.Args, action, repo) if err != nil { return nil, err } c.displayConsoleMessages(response.ConsoleMessages) if !response.Success { return nil, errors.New(response.Message) } return response, nil } func (c *Command) displayConsoleMessages(messages []string) { console.DisplayInfoMessages(messages, c.ReadWriter.ErrOut) }