-
Notifications
You must be signed in to change notification settings - Fork 146
/
user.go
53 lines (45 loc) · 1.31 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
package bitbucket
import (
"github.com/mitchellh/mapstructure"
)
// User is the sub struct of Client
// Reference: https://developer.atlassian.com/bitbucket/api/2/reference/resource/user
type User struct {
c *Client
Uuid string
Username string
Nickname string
Website string
AccountId string `mapstructure:"account_id"`
AccountStatus string `mapstructure:"account_status"`
DisplayName string `mapstructure:"display_name"`
CreatedOn string `mapstructure:"created_on"`
Has2faEnabled bool `mapstructure:"has_2fa_enabled"`
Links map[string]interface{}
}
// Profile is getting the user data
func (u *User) Profile() (*User, error) {
urlStr := u.c.GetApiBaseURL() + "/user"
response, err := u.c.execute("GET", urlStr, "")
if err != nil {
return nil, err
}
return decodeUser(response)
}
// Emails is getting user's emails
func (u *User) Emails() (interface{}, error) {
urlStr := u.c.GetApiBaseURL() + "/user/emails"
return u.c.execute("GET", urlStr, "")
}
func decodeUser(userResponse interface{}) (*User, error) {
userMap := userResponse.(map[string]interface{})
if userMap["type"] == "error" {
return nil, DecodeError(userMap)
}
var user = new(User)
err := mapstructure.Decode(userMap, user)
if err != nil {
return nil, err
}
return user, nil
}