-
Notifications
You must be signed in to change notification settings - Fork 8
/
users.go
68 lines (59 loc) · 1.49 KB
/
users.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
package freee
import (
"context"
"net/http"
"path"
"github.com/google/go-querystring/query"
"golang.org/x/oauth2"
)
const (
APIPathUsers = "users"
)
type Me struct {
User User `json:"user"`
}
type User struct {
// ユーザーID
ID int64 `json:"id"`
// メールアドレス
Email string `json:"email"`
// 表示ユーザー名
DisplayName *string `json:"display_name,omitempty"`
// 名
FirstName *string `json:"first_name,omitempty"`
// 姓
LastName *string `json:"last_name,omitempty"`
// 名(カナ)
FirstNameKana *string `json:"first_name_kana,omitempty"`
// 姓(カナ)
LastNameKana *string `json:"last_name_kana,omitempty"`
Companies []UserCompany `json:"companies,omitempty"`
}
type UserCompany struct {
// 事業所ID
ID int64 `json:"id"`
// 表示名
DisplayName string `json:"display_name"`
// ユーザーの権限
Role string `json:"role"`
// カスタム権限(true: 使用する、false: 使用しない)
UseCustomRole bool `json:"use_custom_role"`
}
type GetUsersMeOpts struct {
Companies bool `url:"companies,omitempty"`
}
func (c *Client) GetUsersMe(
ctx context.Context, oauth2Token *oauth2.Token,
opts GetUsersMeOpts,
) (*Me, *oauth2.Token, error) {
var result Me
v, err := query.Values(opts)
if err != nil {
return nil, oauth2Token, err
}
oauth2Token, err = c.call(ctx, path.Join(APIPathUsers, "me"), http.MethodGet, oauth2Token, v, nil, &result)
if err != nil {
return nil, oauth2Token, err
}
return &result, oauth2Token, nil
}