forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
user.go
111 lines (96 loc) · 2.8 KB
/
user.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gitlab
import (
"context"
"fmt"
"net/http"
"strings"
"github.com/jenkins-x/go-scm/scm"
"github.com/jenkins-x/go-scm/scm/driver/internal/null"
)
type userService struct {
client *wrapper
}
func (s *userService) CreateToken(context.Context, string, string) (*scm.UserToken, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *userService) DeleteToken(context.Context, int64) (*scm.Response, error) {
return nil, scm.ErrNotSupported
}
func (s *userService) Find(ctx context.Context) (*scm.User, *scm.Response, error) {
out := new(user)
res, err := s.client.do(ctx, "GET", "api/v4/user", nil, out)
return convertUser(out), res, err
}
func (s *userService) FindLogin(ctx context.Context, login string) (*scm.User, *scm.Response, error) {
var resp *scm.Response
var err error
firstRun := false
opts := &scm.ListOptions{
Page: 1,
}
for !firstRun || (resp != nil && opts.Page <= resp.Page.Last) {
out := []*user{}
path := fmt.Sprintf("api/v4/users?search=%s&%s", login, encodeListOptions(opts))
resp, err = s.client.do(ctx, "GET", path, nil, &out)
if err != nil {
return nil, nil, err
}
firstRun = true
for _, u := range out {
if strings.EqualFold(u.Username, login) {
return convertUser(u), resp, err
}
}
opts.Page++
}
return nil, resp, scm.ErrNotFound
}
// FindLoginByID returns the scm.User object for the specified user id
func (s *userService) FindLoginByID(ctx context.Context, id int) (*scm.User, error) {
path := fmt.Sprintf("api/v4/users/%d", id)
out := &user{}
resp, err := s.client.do(ctx, "GET", path, nil, &out)
if err != nil {
return nil, err
}
if resp.Status == http.StatusOK {
return convertUser(out), err
}
return nil, scm.ErrNotFound
}
func (s *userService) FindEmail(ctx context.Context) (string, *scm.Response, error) {
user, res, err := s.Find(ctx)
return user.Email, res, err
}
func (s *userService) ListInvitations(context.Context) ([]*scm.Invitation, *scm.Response, error) {
return nil, nil, scm.ErrNotSupported
}
func (s *userService) AcceptInvitation(context.Context, int64) (*scm.Response, error) {
return nil, scm.ErrNotSupported
}
type user struct {
ID int `json:"id"`
Username string `json:"username"`
Name string `json:"name"`
Email null.String `json:"email"`
Avatar string `json:"avatar_url"`
}
func convertUser(from *user) *scm.User {
return &scm.User{
ID: from.ID,
Avatar: from.Avatar,
Email: from.Email.String,
Login: from.Username,
Name: from.Name,
}
}
func convertUserList(users []*user) []scm.User {
dst := []scm.User{}
for _, src := range users {
dst = append(dst, *convertUser(src))
}
return dst
}