-
Notifications
You must be signed in to change notification settings - Fork 29
/
userData.go
59 lines (50 loc) · 1.78 KB
/
userData.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
// Copyright (C) 2020 Finogeeks Co., Ltd
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License, version 3,
// as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package external
// POST /_matrix/client/r0/user_directory/search
type PostUserSearchRequest struct {
SearchTerm string `json:"search_term"`
Limit int `json:"limit"`
}
type PostUserSearchResponse struct {
Results []User `json:"result"`
Limited bool `json:"limited"`
}
type User struct {
UserID string `json:"user_id,omitempty"`
DisplayName string `json:"display_name"`
AvatarURL string `json:"avatar_url"`
}
//PUT /_matrix/client/r0/profile/{userId}/displayname
type PutUserProfileDisplayNameRequest struct {
UserID string `json:"user_id"`
DisplayName string `json:"display_name"`
}
// GET /_matrix/client/r0/profile/{userId}/displayname
type GetUserProfileDisplayNameRequest struct {
UserID string `json:"user_id"`
}
//PUT /_matrix/client/r0/profile/{userId}/avatar_url
type PutUserProfileAvatarURLRequest struct {
UserID string `json:"user_id"`
AvatarURL string `json:"avatar_url"`
}
// GET /_matrix/client/r0/profile/{userId}/avatar_url
type GetUserProfileAvatarURLRequest struct {
UserID string `json:"user_id"`
}
//GET /_matrix/client/r0/profile/{userId}
type GetUserProfileRequest struct {
UserID string `json:"user_id"`
}