diff options
author | Taylan Develioglu <taylan.develioglu@booking.com> | 2020-07-06 14:09:55 +0200 |
---|---|---|
committer | Taylan Develioglu <taylan.develioglu@booking.com> | 2020-08-17 17:16:06 +0200 |
commit | b8d66d7923150402f54f13d793d3051efab3a832 (patch) | |
tree | dd67dbef7c4c06e3a1ac5cf981be9ee37d355a03 /internal/command/command.go | |
parent | 4b1ee791a1bdc927becee37ae84f7ba226d17791 (diff) | |
download | gitlab-shell-b8d66d7923150402f54f13d793d3051efab3a832.tar.gz |
Add support obtaining personal access tokens via SSH
Implements the feature requested in gitlab-org/gitlab#19672
This requires the internal api counterpart in gitlab-org/gitlab!36302 to
be merged first.
It can be used as follows:
```
censored@censored-VirtualBox:~/git/gitlab$ ssh git@gitlab-2004 personal_access_token
remote:
remote: ========================================================================
remote:
remote: Usage: personal_access_token <name> <scope1[,scope2,...]> [ttl_days]
remote:
remote: ========================================================================
remote:
censored@censored-VirtualBox:~/git/gitlab$ ssh git@gitlab-2004 personal_access_token newtoken read_api,read_repository 30
Token: aAY1G3YPeemECgUvxuXY
Scopes: read_api,read_repository
Expires: 2020-08-07
```
Diffstat (limited to 'internal/command/command.go')
-rw-r--r-- | internal/command/command.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/command/command.go b/internal/command/command.go index af63862..283b4a1 100644 --- a/internal/command/command.go +++ b/internal/command/command.go @@ -7,6 +7,7 @@ import ( "gitlab.com/gitlab-org/gitlab-shell/internal/command/discover" "gitlab.com/gitlab-org/gitlab-shell/internal/command/healthcheck" "gitlab.com/gitlab-org/gitlab-shell/internal/command/lfsauthenticate" + "gitlab.com/gitlab-org/gitlab-shell/internal/command/personalaccesstoken" "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" "gitlab.com/gitlab-org/gitlab-shell/internal/command/receivepack" "gitlab.com/gitlab-org/gitlab-shell/internal/command/shared/disallowedcommand" @@ -63,6 +64,8 @@ func buildShellCommand(args *commandargs.Shell, config *config.Config, readWrite return &uploadpack.Command{Config: config, Args: args, ReadWriter: readWriter} case commandargs.UploadArchive: return &uploadarchive.Command{Config: config, Args: args, ReadWriter: readWriter} + case commandargs.PersonalAccessToken: + return &personalaccesstoken.Command{Config: config, Args: args, ReadWriter: readWriter} } return nil |