-
Notifications
You must be signed in to change notification settings - Fork 4
/
dept.go
144 lines (119 loc) · 3.2 KB
/
dept.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package youdu
import (
"context"
"net/http"
"strconv"
)
type DeptItem struct {
ID int `json:"id"`
Name string `json:"name"`
ParentID int `json:"parentId"`
SortID int `json:"sortId"`
}
type DeptListResponse struct {
DeptList []DeptItem `json:"deptList"`
}
type DeptAliasItem struct {
ID int `json:"id"`
Alias string `json:"alias"`
}
type DeptAliasListResponse struct {
AliasList []DeptAliasItem `json:"aliasList"`
}
type DeptIDByAliasResponse struct {
ID int `json:"id"`
}
type CreateDeptRequest struct {
Name string `json:"name"`
Alias string `json:"alias"`
ID int `json:"id"`
ParentID int `json:"parentId"`
SortID int `json:"sortId"`
}
type CreateDeptResponse struct {
ID int `json:"id"`
}
type UpdateDeptRequest struct {
Name string `json:"name"`
Alias string `json:"alias"`
ID int `json:"id"`
ParentID int `json:"parentId"`
SortID int `json:"sortId"`
}
func (c *Client) GetDeptList(ctx context.Context, id ...int) (response DeptListResponse, err error) {
opts := []requestOption{
withRequestAccessToken(),
withRequestEncrypt(),
}
if len(id) > 0 {
opts = append(opts, withRequestParamsKV("id", strconv.Itoa(id[0])))
} else {
opts = append(opts, withRequestParamsKV("id", "0"))
}
req, err := c.newRequest(ctx, http.MethodGet, "/cgi/dept/list", opts...)
if err != nil {
return
}
err = c.sendRequest(req, &response, withResponseDecrypt())
return
}
func (c *Client) GetDeptAliasList(ctx context.Context) (response DeptAliasListResponse, err error) {
opts := []requestOption{
withRequestAccessToken(),
withRequestEncrypt(),
}
req, err := c.newRequest(ctx, http.MethodGet, "/cgi/dept/getid", opts...)
if err != nil {
return
}
err = c.sendRequest(req, &response, withResponseDecrypt())
return
}
func (c *Client) GetDeptIDByAlias(ctx context.Context, alias string) (response DeptIDByAliasResponse, err error) {
opts := []requestOption{
withRequestAccessToken(),
withRequestEncrypt(),
withRequestParamsKV("alias", alias),
}
req, err := c.newRequest(ctx, http.MethodGet, "/cgi/dept/getid", opts...)
if err != nil {
return
}
err = c.sendRequest(req, &response, withResponseDecrypt())
return
}
func (c *Client) CreateDept(ctx context.Context, request CreateDeptRequest) (response CreateDeptResponse, err error) {
req, err := c.newRequest(ctx, http.MethodPost, "/cgi/dept/create",
withRequestBody(request),
withRequestAccessToken(),
withRequestEncrypt(),
)
if err != nil {
return
}
err = c.sendRequest(req, &response, withResponseDecrypt())
return
}
func (c *Client) UpdateDept(ctx context.Context, request UpdateDeptRequest) (response Response, err error) {
req, err := c.newRequest(ctx, http.MethodPost, "/cgi/dept/update",
withRequestBody(request),
withRequestAccessToken(),
withRequestEncrypt(),
)
if err != nil {
return
}
err = c.sendRequest(req, &response)
return
}
func (c *Client) DeleteDept(ctx context.Context, deptID int) (response Response, err error) {
req, err := c.newRequest(ctx, http.MethodGet, "/cgi/dept/delete",
withRequestAccessToken(),
withRequestParamsKV("id", strconv.Itoa(deptID)),
)
if err != nil {
return
}
err = c.sendRequest(req, &response)
return
}