forked from drone/go-scm
-
Notifications
You must be signed in to change notification settings - Fork 83
/
user.go
91 lines (75 loc) · 2.25 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
// 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 bitbucket
import (
"context"
"fmt"
"github.com/jenkins-x/go-scm/scm"
)
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", "2.0/user", nil, out)
return convertUser(out), res, err
}
func (s *userService) FindLogin(ctx context.Context, login string) (*scm.User, *scm.Response, error) {
path := fmt.Sprintf("2.0/users/%s", login)
out := new(user)
res, err := s.client.do(ctx, "GET", path, nil, out)
return convertUser(out), res, err
}
func (s *userService) FindEmail(ctx context.Context) (string, *scm.Response, error) {
return "", nil, scm.ErrNotSupported
}
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 {
Login string `json:"username"`
Name string `json:"nickname"`
EmailAddress string `json:"emailAddress"`
ID int `json:"id"`
DisplayName string `json:"display_name"`
Active bool `json:"active"`
Slug string `json:"slug"`
Type string `json:"type"`
Links struct {
Self link `json:"self"`
HTML link `json:"html"`
Avatar link `json:"avatar"`
} `json:"links"`
}
func (u *user) GetLogin() string {
answer := u.Login
return answer
}
type links struct {
HTML link `json:"html"`
Avatar link `json:"avatar"`
}
type link struct {
Href string `json:"href"`
}
func convertUser(from *user) *scm.User {
name := from.Name
if name == "" {
name = from.DisplayName
}
return &scm.User{
Avatar: fmt.Sprintf("https://bitbucket.org/account/%s/avatar/32/", from.Login),
Login: from.Login,
Name: name,
}
}