mirror of https://github.com/matrix-org/gomatrix
Merge pull request #1 from kanopeld/kanopeld/improvements
Added gitignore rules. Changed http methods from string to constants.…
This commit is contained in:
commit
28859f4941
|
@ -26,3 +26,9 @@ _testmain.go
|
||||||
|
|
||||||
# test editor files
|
# test editor files
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
# Jetbrains ide files
|
||||||
|
.idea
|
||||||
|
|
||||||
|
# VsCode files
|
||||||
|
.vscode
|
||||||
|
|
118
client.go
118
client.go
|
@ -187,16 +187,30 @@ func (cli *Client) StopSync() {
|
||||||
func (cli *Client) MakeRequest(method string, httpURL string, reqBody interface{}, resBody interface{}) error {
|
func (cli *Client) MakeRequest(method string, httpURL string, reqBody interface{}, resBody interface{}) error {
|
||||||
var req *http.Request
|
var req *http.Request
|
||||||
var err error
|
var err error
|
||||||
|
var body io.Reader = nil
|
||||||
|
|
||||||
if reqBody != nil {
|
if reqBody != nil {
|
||||||
buf := new(bytes.Buffer)
|
buf := new(bytes.Buffer)
|
||||||
if err := json.NewEncoder(buf).Encode(reqBody); err != nil {
|
if marshaller, ok := reqBody.(json.Marshaler); ok {
|
||||||
return err
|
var data []byte
|
||||||
|
data, err = marshaller.MarshalJSON()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
_, err = buf.Write(data)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if err = json.NewEncoder(buf).Encode(reqBody); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
req, err = http.NewRequest(method, httpURL, buf)
|
body = buf
|
||||||
} else {
|
|
||||||
req, err = http.NewRequest(method, httpURL, nil)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
req, err = http.NewRequest(method, httpURL, body)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -242,6 +256,18 @@ func (cli *Client) MakeRequest(method string, httpURL string, reqBody interface{
|
||||||
}
|
}
|
||||||
|
|
||||||
if resBody != nil && res.Body != nil {
|
if resBody != nil && res.Body != nil {
|
||||||
|
if unmarshaller, ok := resBody.(json.Unmarshaler); ok {
|
||||||
|
var data []byte
|
||||||
|
data, err = ioutil.ReadAll(res.Body)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = unmarshaller.UnmarshalJSON(data)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return json.NewDecoder(res.Body).Decode(&resBody)
|
return json.NewDecoder(res.Body).Decode(&resBody)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,7 +277,7 @@ func (cli *Client) MakeRequest(method string, httpURL string, reqBody interface{
|
||||||
// CreateFilter makes an HTTP request according to http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-user-userid-filter
|
// CreateFilter makes an HTTP request according to http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-user-userid-filter
|
||||||
func (cli *Client) CreateFilter(filter json.RawMessage) (resp *RespCreateFilter, err error) {
|
func (cli *Client) CreateFilter(filter json.RawMessage) (resp *RespCreateFilter, err error) {
|
||||||
urlPath := cli.BuildURL("user", cli.UserID, "filter")
|
urlPath := cli.BuildURL("user", cli.UserID, "filter")
|
||||||
err = cli.MakeRequest("POST", urlPath, &filter, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, &filter, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -273,12 +299,12 @@ func (cli *Client) SyncRequest(timeout int, since, filterID string, fullState bo
|
||||||
query["full_state"] = "true"
|
query["full_state"] = "true"
|
||||||
}
|
}
|
||||||
urlPath := cli.BuildURLWithQuery([]string{"sync"}, query)
|
urlPath := cli.BuildURLWithQuery([]string{"sync"}, query)
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cli *Client) register(u string, req *ReqRegister) (resp *RespRegister, uiaResp *RespUserInteractive, err error) {
|
func (cli *Client) register(u string, req *ReqRegister) (resp *RespRegister, uiaResp *RespUserInteractive, err error) {
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
httpErr, ok := err.(HTTPError)
|
httpErr, ok := err.(HTTPError)
|
||||||
if !ok { // network error
|
if !ok { // network error
|
||||||
|
@ -353,7 +379,7 @@ func (cli *Client) RegisterDummy(req *ReqRegister) (*RespRegister, error) {
|
||||||
// This does not set credentials on this client instance. See SetCredentials() instead.
|
// This does not set credentials on this client instance. See SetCredentials() instead.
|
||||||
func (cli *Client) Login(req *ReqLogin) (resp *RespLogin, err error) {
|
func (cli *Client) Login(req *ReqLogin) (resp *RespLogin, err error) {
|
||||||
urlPath := cli.BuildURL("login")
|
urlPath := cli.BuildURL("login")
|
||||||
err = cli.MakeRequest("POST", urlPath, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -361,7 +387,7 @@ func (cli *Client) Login(req *ReqLogin) (resp *RespLogin, err error) {
|
||||||
// This does not clear the credentials from the client instance. See ClearCredentials() instead.
|
// This does not clear the credentials from the client instance. See ClearCredentials() instead.
|
||||||
func (cli *Client) Logout() (resp *RespLogout, err error) {
|
func (cli *Client) Logout() (resp *RespLogout, err error) {
|
||||||
urlPath := cli.BuildURL("logout")
|
urlPath := cli.BuildURL("logout")
|
||||||
err = cli.MakeRequest("POST", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -369,14 +395,14 @@ func (cli *Client) Logout() (resp *RespLogout, err error) {
|
||||||
// This does not clear the credentials from the client instance. See ClearCredentails() instead.
|
// This does not clear the credentials from the client instance. See ClearCredentails() instead.
|
||||||
func (cli *Client) LogoutAll() (resp *RespLogoutAll, err error) {
|
func (cli *Client) LogoutAll() (resp *RespLogoutAll, err error) {
|
||||||
urlPath := cli.BuildURL("logout/all")
|
urlPath := cli.BuildURL("logout/all")
|
||||||
err = cli.MakeRequest("POST", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Versions returns the list of supported Matrix versions on this homeserver. See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-versions
|
// Versions returns the list of supported Matrix versions on this homeserver. See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-versions
|
||||||
func (cli *Client) Versions() (resp *RespVersions, err error) {
|
func (cli *Client) Versions() (resp *RespVersions, err error) {
|
||||||
urlPath := cli.BuildBaseURL("_matrix", "client", "versions")
|
urlPath := cli.BuildBaseURL("_matrix", "client", "versions")
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -395,7 +421,7 @@ func (cli *Client) PublicRooms(limit int, since string, server string) (resp *Re
|
||||||
}
|
}
|
||||||
|
|
||||||
urlPath := cli.BuildURLWithQuery([]string{"publicRooms"}, args)
|
urlPath := cli.BuildURLWithQuery([]string{"publicRooms"}, args)
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -423,7 +449,7 @@ func (cli *Client) PublicRoomsFiltered(limit int, since string, server string, f
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
err = cli.MakeRequest("POST", urlPath, content, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, content, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -440,21 +466,21 @@ func (cli *Client) JoinRoom(roomIDorAlias, serverName string, content interface{
|
||||||
} else {
|
} else {
|
||||||
urlPath = cli.BuildURL("join", roomIDorAlias)
|
urlPath = cli.BuildURL("join", roomIDorAlias)
|
||||||
}
|
}
|
||||||
err = cli.MakeRequest("POST", urlPath, content, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, content, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetDisplayName returns the display name of the user from the specified MXID. See https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
// GetDisplayName returns the display name of the user from the specified MXID. See https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
||||||
func (cli *Client) GetDisplayName(mxid string) (resp *RespUserDisplayName, err error) {
|
func (cli *Client) GetDisplayName(mxid string) (resp *RespUserDisplayName, err error) {
|
||||||
urlPath := cli.BuildURL("profile", mxid, "displayname")
|
urlPath := cli.BuildURL("profile", mxid, "displayname")
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetOwnDisplayName returns the user's display name. See https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
// GetOwnDisplayName returns the user's display name. See https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
||||||
func (cli *Client) GetOwnDisplayName() (resp *RespUserDisplayName, err error) {
|
func (cli *Client) GetOwnDisplayName() (resp *RespUserDisplayName, err error) {
|
||||||
urlPath := cli.BuildURL("profile", cli.UserID, "displayname")
|
urlPath := cli.BuildURL("profile", cli.UserID, "displayname")
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -464,7 +490,7 @@ func (cli *Client) SetDisplayName(displayName string) (err error) {
|
||||||
s := struct {
|
s := struct {
|
||||||
DisplayName string `json:"displayname"`
|
DisplayName string `json:"displayname"`
|
||||||
}{displayName}
|
}{displayName}
|
||||||
err = cli.MakeRequest("PUT", urlPath, &s, nil)
|
err = cli.MakeRequest(http.MethodPut, urlPath, &s, nil)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -475,7 +501,7 @@ func (cli *Client) GetAvatarURL() (string, error) {
|
||||||
AvatarURL string `json:"avatar_url"`
|
AvatarURL string `json:"avatar_url"`
|
||||||
}{}
|
}{}
|
||||||
|
|
||||||
err := cli.MakeRequest("GET", urlPath, nil, &s)
|
err := cli.MakeRequest(http.MethodGet, urlPath, nil, &s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
@ -489,7 +515,7 @@ func (cli *Client) SetAvatarURL(url string) error {
|
||||||
s := struct {
|
s := struct {
|
||||||
AvatarURL string `json:"avatar_url"`
|
AvatarURL string `json:"avatar_url"`
|
||||||
}{url}
|
}{url}
|
||||||
err := cli.MakeRequest("PUT", urlPath, &s, nil)
|
err := cli.MakeRequest(http.MethodPut, urlPath, &s, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -500,7 +526,7 @@ func (cli *Client) SetAvatarURL(url string) error {
|
||||||
// GetStatus returns the status of the user from the specified MXID. See https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-presence-userid-status
|
// GetStatus returns the status of the user from the specified MXID. See https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-presence-userid-status
|
||||||
func (cli *Client) GetStatus(mxid string) (resp *RespUserStatus, err error) {
|
func (cli *Client) GetStatus(mxid string) (resp *RespUserStatus, err error) {
|
||||||
urlPath := cli.BuildURL("presence", mxid, "status")
|
urlPath := cli.BuildURL("presence", mxid, "status")
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -516,7 +542,7 @@ func (cli *Client) SetStatus(presence, status string) (err error) {
|
||||||
Presence string `json:"presence"`
|
Presence string `json:"presence"`
|
||||||
StatusMsg string `json:"status_msg"`
|
StatusMsg string `json:"status_msg"`
|
||||||
}{presence, status}
|
}{presence, status}
|
||||||
err = cli.MakeRequest("PUT", urlPath, &s, nil)
|
err = cli.MakeRequest(http.MethodPut, urlPath, &s, nil)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -525,7 +551,7 @@ func (cli *Client) SetStatus(presence, status string) (err error) {
|
||||||
func (cli *Client) SendMessageEvent(roomID string, eventType string, contentJSON interface{}) (resp *RespSendEvent, err error) {
|
func (cli *Client) SendMessageEvent(roomID string, eventType string, contentJSON interface{}) (resp *RespSendEvent, err error) {
|
||||||
txnID := txnID()
|
txnID := txnID()
|
||||||
urlPath := cli.BuildURL("rooms", roomID, "send", eventType, txnID)
|
urlPath := cli.BuildURL("rooms", roomID, "send", eventType, txnID)
|
||||||
err = cli.MakeRequest("PUT", urlPath, contentJSON, &resp)
|
err = cli.MakeRequest(http.MethodPut, urlPath, contentJSON, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -533,7 +559,7 @@ func (cli *Client) SendMessageEvent(roomID string, eventType string, contentJSON
|
||||||
// contentJSON should be a pointer to something that can be encoded as JSON using json.Marshal.
|
// contentJSON should be a pointer to something that can be encoded as JSON using json.Marshal.
|
||||||
func (cli *Client) SendStateEvent(roomID, eventType, stateKey string, contentJSON interface{}) (resp *RespSendEvent, err error) {
|
func (cli *Client) SendStateEvent(roomID, eventType, stateKey string, contentJSON interface{}) (resp *RespSendEvent, err error) {
|
||||||
urlPath := cli.BuildURL("rooms", roomID, "state", eventType, stateKey)
|
urlPath := cli.BuildURL("rooms", roomID, "state", eventType, stateKey)
|
||||||
err = cli.MakeRequest("PUT", urlPath, contentJSON, &resp)
|
err = cli.MakeRequest(http.MethodPut, urlPath, contentJSON, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -541,14 +567,14 @@ func (cli *Client) SendStateEvent(roomID, eventType, stateKey string, contentJSO
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#m-text
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#m-text
|
||||||
func (cli *Client) SendText(roomID, text string) (*RespSendEvent, error) {
|
func (cli *Client) SendText(roomID, text string) (*RespSendEvent, error) {
|
||||||
return cli.SendMessageEvent(roomID, "m.room.message",
|
return cli.SendMessageEvent(roomID, "m.room.message",
|
||||||
TextMessage{MsgType: "m.text", Body: text})
|
TextMessage{MsgType: TextMessageType, Body: text})
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendFormattedText sends an m.room.message event into the given room with a msgtype of m.text, supports a subset of HTML for formatting.
|
// SendFormattedText sends an m.room.message event into the given room with a msgtype of m.text, supports a subset of HTML for formatting.
|
||||||
// See https://matrix.org/docs/spec/client_server/r0.6.0#m-text
|
// See https://matrix.org/docs/spec/client_server/r0.6.0#m-text
|
||||||
func (cli *Client) SendFormattedText(roomID, text, formattedText string) (*RespSendEvent, error) {
|
func (cli *Client) SendFormattedText(roomID, text, formattedText string) (*RespSendEvent, error) {
|
||||||
return cli.SendMessageEvent(roomID, "m.room.message",
|
return cli.SendMessageEvent(roomID, "m.room.message",
|
||||||
TextMessage{MsgType: "m.text", Body: text, FormattedBody: formattedText, Format: "org.matrix.custom.html"})
|
TextMessage{MsgType: TextMessageType, Body: text, FormattedBody: formattedText, Format: "org.matrix.custom.html"})
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendImage sends an m.room.message event into the given room with a msgtype of m.image
|
// SendImage sends an m.room.message event into the given room with a msgtype of m.image
|
||||||
|
@ -556,7 +582,7 @@ func (cli *Client) SendFormattedText(roomID, text, formattedText string) (*RespS
|
||||||
func (cli *Client) SendImage(roomID, body, url string) (*RespSendEvent, error) {
|
func (cli *Client) SendImage(roomID, body, url string) (*RespSendEvent, error) {
|
||||||
return cli.SendMessageEvent(roomID, "m.room.message",
|
return cli.SendMessageEvent(roomID, "m.room.message",
|
||||||
ImageMessage{
|
ImageMessage{
|
||||||
MsgType: "m.image",
|
MsgType: ImageMessageType,
|
||||||
Body: body,
|
Body: body,
|
||||||
URL: url,
|
URL: url,
|
||||||
})
|
})
|
||||||
|
@ -567,7 +593,7 @@ func (cli *Client) SendImage(roomID, body, url string) (*RespSendEvent, error) {
|
||||||
func (cli *Client) SendVideo(roomID, body, url string) (*RespSendEvent, error) {
|
func (cli *Client) SendVideo(roomID, body, url string) (*RespSendEvent, error) {
|
||||||
return cli.SendMessageEvent(roomID, "m.room.message",
|
return cli.SendMessageEvent(roomID, "m.room.message",
|
||||||
VideoMessage{
|
VideoMessage{
|
||||||
MsgType: "m.video",
|
MsgType: VideoMessageType,
|
||||||
Body: body,
|
Body: body,
|
||||||
URL: url,
|
URL: url,
|
||||||
})
|
})
|
||||||
|
@ -577,21 +603,21 @@ func (cli *Client) SendVideo(roomID, body, url string) (*RespSendEvent, error) {
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#m-notice
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#m-notice
|
||||||
func (cli *Client) SendNotice(roomID, text string) (*RespSendEvent, error) {
|
func (cli *Client) SendNotice(roomID, text string) (*RespSendEvent, error) {
|
||||||
return cli.SendMessageEvent(roomID, "m.room.message",
|
return cli.SendMessageEvent(roomID, "m.room.message",
|
||||||
TextMessage{MsgType: "m.notice", Body: text})
|
TextMessage{MsgType: NoticeMessageType, Body: text})
|
||||||
}
|
}
|
||||||
|
|
||||||
// RedactEvent redacts the given event. See http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-redact-eventid-txnid
|
// RedactEvent redacts the given event. See http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-redact-eventid-txnid
|
||||||
func (cli *Client) RedactEvent(roomID, eventID string, req *ReqRedact) (resp *RespSendEvent, err error) {
|
func (cli *Client) RedactEvent(roomID, eventID string, req *ReqRedact) (resp *RespSendEvent, err error) {
|
||||||
txnID := txnID()
|
txnID := txnID()
|
||||||
urlPath := cli.BuildURL("rooms", roomID, "redact", eventID, txnID)
|
urlPath := cli.BuildURL("rooms", roomID, "redact", eventID, txnID)
|
||||||
err = cli.MakeRequest("PUT", urlPath, req, &resp)
|
err = cli.MakeRequest(http.MethodPut, urlPath, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// MarkRead marks eventID in roomID as read, signifying the event, and all before it have been read. See https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-rooms-roomid-receipt-receipttype-eventid
|
// MarkRead marks eventID in roomID as read, signifying the event, and all before it have been read. See https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-rooms-roomid-receipt-receipttype-eventid
|
||||||
func (cli *Client) MarkRead(roomID, eventID string) error {
|
func (cli *Client) MarkRead(roomID, eventID string) error {
|
||||||
urlPath := cli.BuildURL("rooms", roomID, "receipt", "m.read", eventID)
|
urlPath := cli.BuildURL("rooms", roomID, "receipt", "m.read", eventID)
|
||||||
return cli.MakeRequest("POST", urlPath, nil, nil)
|
return cli.MakeRequest(http.MethodPost, urlPath, nil, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateRoom creates a new Matrix room. See https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
// CreateRoom creates a new Matrix room. See https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
||||||
|
@ -601,56 +627,56 @@ func (cli *Client) MarkRead(roomID, eventID string) error {
|
||||||
// fmt.Println("Room:", resp.RoomID)
|
// fmt.Println("Room:", resp.RoomID)
|
||||||
func (cli *Client) CreateRoom(req *ReqCreateRoom) (resp *RespCreateRoom, err error) {
|
func (cli *Client) CreateRoom(req *ReqCreateRoom) (resp *RespCreateRoom, err error) {
|
||||||
urlPath := cli.BuildURL("createRoom")
|
urlPath := cli.BuildURL("createRoom")
|
||||||
err = cli.MakeRequest("POST", urlPath, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, urlPath, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// LeaveRoom leaves the given room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-leave
|
// LeaveRoom leaves the given room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-leave
|
||||||
func (cli *Client) LeaveRoom(roomID string) (resp *RespLeaveRoom, err error) {
|
func (cli *Client) LeaveRoom(roomID string) (resp *RespLeaveRoom, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "leave")
|
u := cli.BuildURL("rooms", roomID, "leave")
|
||||||
err = cli.MakeRequest("POST", u, struct{}{}, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, struct{}{}, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// ForgetRoom forgets a room entirely. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-forget
|
// ForgetRoom forgets a room entirely. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-forget
|
||||||
func (cli *Client) ForgetRoom(roomID string) (resp *RespForgetRoom, err error) {
|
func (cli *Client) ForgetRoom(roomID string) (resp *RespForgetRoom, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "forget")
|
u := cli.BuildURL("rooms", roomID, "forget")
|
||||||
err = cli.MakeRequest("POST", u, struct{}{}, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, struct{}{}, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// InviteUser invites a user to a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
// InviteUser invites a user to a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
||||||
func (cli *Client) InviteUser(roomID string, req *ReqInviteUser) (resp *RespInviteUser, err error) {
|
func (cli *Client) InviteUser(roomID string, req *ReqInviteUser) (resp *RespInviteUser, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "invite")
|
u := cli.BuildURL("rooms", roomID, "invite")
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// InviteUserByThirdParty invites a third-party identifier to a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#invite-by-third-party-id-endpoint
|
// InviteUserByThirdParty invites a third-party identifier to a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#invite-by-third-party-id-endpoint
|
||||||
func (cli *Client) InviteUserByThirdParty(roomID string, req *ReqInvite3PID) (resp *RespInviteUser, err error) {
|
func (cli *Client) InviteUserByThirdParty(roomID string, req *ReqInvite3PID) (resp *RespInviteUser, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "invite")
|
u := cli.BuildURL("rooms", roomID, "invite")
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// KickUser kicks a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
// KickUser kicks a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
||||||
func (cli *Client) KickUser(roomID string, req *ReqKickUser) (resp *RespKickUser, err error) {
|
func (cli *Client) KickUser(roomID string, req *ReqKickUser) (resp *RespKickUser, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "kick")
|
u := cli.BuildURL("rooms", roomID, "kick")
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// BanUser bans a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
// BanUser bans a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
||||||
func (cli *Client) BanUser(roomID string, req *ReqBanUser) (resp *RespBanUser, err error) {
|
func (cli *Client) BanUser(roomID string, req *ReqBanUser) (resp *RespBanUser, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "ban")
|
u := cli.BuildURL("rooms", roomID, "ban")
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnbanUser unbans a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
// UnbanUser unbans a user from a room. See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
||||||
func (cli *Client) UnbanUser(roomID string, req *ReqUnbanUser) (resp *RespUnbanUser, err error) {
|
func (cli *Client) UnbanUser(roomID string, req *ReqUnbanUser) (resp *RespUnbanUser, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "unban")
|
u := cli.BuildURL("rooms", roomID, "unban")
|
||||||
err = cli.MakeRequest("POST", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPost, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -658,7 +684,7 @@ func (cli *Client) UnbanUser(roomID string, req *ReqUnbanUser) (resp *RespUnbanU
|
||||||
func (cli *Client) UserTyping(roomID string, typing bool, timeout int64) (resp *RespTyping, err error) {
|
func (cli *Client) UserTyping(roomID string, typing bool, timeout int64) (resp *RespTyping, err error) {
|
||||||
req := ReqTyping{Typing: typing, Timeout: timeout}
|
req := ReqTyping{Typing: typing, Timeout: timeout}
|
||||||
u := cli.BuildURL("rooms", roomID, "typing", cli.UserID)
|
u := cli.BuildURL("rooms", roomID, "typing", cli.UserID)
|
||||||
err = cli.MakeRequest("PUT", u, req, &resp)
|
err = cli.MakeRequest(http.MethodPut, u, req, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -667,7 +693,7 @@ func (cli *Client) UserTyping(roomID string, typing bool, timeout int64) (resp *
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-state-eventtype-statekey
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-state-eventtype-statekey
|
||||||
func (cli *Client) StateEvent(roomID, eventType, stateKey string, outContent interface{}) (err error) {
|
func (cli *Client) StateEvent(roomID, eventType, stateKey string, outContent interface{}) (err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "state", eventType, stateKey)
|
u := cli.BuildURL("rooms", roomID, "state", eventType, stateKey)
|
||||||
err = cli.MakeRequest("GET", u, nil, outContent)
|
err = cli.MakeRequest(http.MethodGet, u, nil, outContent)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -686,7 +712,7 @@ func (cli *Client) UploadLink(link string) (*RespMediaUpload, error) {
|
||||||
// UploadToContentRepo uploads the given bytes to the content repository and returns an MXC URI.
|
// UploadToContentRepo uploads the given bytes to the content repository and returns an MXC URI.
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-media-r0-upload
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-media-r0-upload
|
||||||
func (cli *Client) UploadToContentRepo(content io.Reader, contentType string, contentLength int64) (*RespMediaUpload, error) {
|
func (cli *Client) UploadToContentRepo(content io.Reader, contentType string, contentLength int64) (*RespMediaUpload, error) {
|
||||||
req, err := http.NewRequest("POST", cli.BuildBaseURL("_matrix/media/r0/upload"), content)
|
req, err := http.NewRequest(http.MethodPost, cli.BuildBaseURL("_matrix/media/r0/upload"), content)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -734,7 +760,7 @@ func (cli *Client) UploadToContentRepo(content io.Reader, contentType string, co
|
||||||
// This API is primarily designed for application services which may want to efficiently look up joined members in a room.
|
// This API is primarily designed for application services which may want to efficiently look up joined members in a room.
|
||||||
func (cli *Client) JoinedMembers(roomID string) (resp *RespJoinedMembers, err error) {
|
func (cli *Client) JoinedMembers(roomID string) (resp *RespJoinedMembers, err error) {
|
||||||
u := cli.BuildURL("rooms", roomID, "joined_members")
|
u := cli.BuildURL("rooms", roomID, "joined_members")
|
||||||
err = cli.MakeRequest("GET", u, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, u, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -744,7 +770,7 @@ func (cli *Client) JoinedMembers(roomID string) (resp *RespJoinedMembers, err er
|
||||||
// This API is primarily designed for application services which may want to efficiently look up joined rooms.
|
// This API is primarily designed for application services which may want to efficiently look up joined rooms.
|
||||||
func (cli *Client) JoinedRooms() (resp *RespJoinedRooms, err error) {
|
func (cli *Client) JoinedRooms() (resp *RespJoinedRooms, err error) {
|
||||||
u := cli.BuildURL("joined_rooms")
|
u := cli.BuildURL("joined_rooms")
|
||||||
err = cli.MakeRequest("GET", u, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, u, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -764,7 +790,7 @@ func (cli *Client) Messages(roomID, from, to string, dir rune, limit int) (resp
|
||||||
}
|
}
|
||||||
|
|
||||||
urlPath := cli.BuildURLWithQuery([]string{"rooms", roomID, "messages"}, query)
|
urlPath := cli.BuildURLWithQuery([]string{"rooms", roomID, "messages"}, query)
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -772,7 +798,7 @@ func (cli *Client) Messages(roomID, from, to string, dir rune, limit int) (resp
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-voip-turnserver
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-voip-turnserver
|
||||||
func (cli *Client) TurnServer() (resp *RespTurnServer, err error) {
|
func (cli *Client) TurnServer() (resp *RespTurnServer, err error) {
|
||||||
urlPath := cli.BuildURL("voip", "turnServer")
|
urlPath := cli.BuildURL("voip", "turnServer")
|
||||||
err = cli.MakeRequest("GET", urlPath, nil, &resp)
|
err = cli.MakeRequest(http.MethodGet, urlPath, nil, &resp)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ import (
|
||||||
|
|
||||||
func TestClient_LeaveRoom(t *testing.T) {
|
func TestClient_LeaveRoom(t *testing.T) {
|
||||||
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
if req.Method == "POST" && req.URL.Path == "/_matrix/client/r0/rooms/!foo:bar/leave" {
|
if req.Method == http.MethodPost && req.URL.Path == "/_matrix/client/r0/rooms/!foo:bar/leave" {
|
||||||
return &http.Response{
|
return &http.Response{
|
||||||
StatusCode: 200,
|
StatusCode: 200,
|
||||||
Body: ioutil.NopCloser(bytes.NewBufferString(`{}`)),
|
Body: ioutil.NopCloser(bytes.NewBufferString(`{}`)),
|
||||||
|
@ -26,7 +26,7 @@ func TestClient_LeaveRoom(t *testing.T) {
|
||||||
|
|
||||||
func TestClient_GetAvatarUrl(t *testing.T) {
|
func TestClient_GetAvatarUrl(t *testing.T) {
|
||||||
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
if req.Method == "GET" && req.URL.Path == "/_matrix/client/r0/profile/@user:test.gomatrix.org/avatar_url" {
|
if req.Method == http.MethodGet && req.URL.Path == "/_matrix/client/r0/profile/@user:test.gomatrix.org/avatar_url" {
|
||||||
return &http.Response{
|
return &http.Response{
|
||||||
StatusCode: 200,
|
StatusCode: 200,
|
||||||
Body: ioutil.NopCloser(bytes.NewBufferString(`{"avatar_url":"mxc://matrix.org/iJaUjkshgdfsdkjfn"}`)),
|
Body: ioutil.NopCloser(bytes.NewBufferString(`{"avatar_url":"mxc://matrix.org/iJaUjkshgdfsdkjfn"}`)),
|
||||||
|
@ -47,7 +47,7 @@ func TestClient_GetAvatarUrl(t *testing.T) {
|
||||||
|
|
||||||
func TestClient_SetAvatarUrl(t *testing.T) {
|
func TestClient_SetAvatarUrl(t *testing.T) {
|
||||||
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
if req.Method == "PUT" && req.URL.Path == "/_matrix/client/r0/profile/@user:test.gomatrix.org/avatar_url" {
|
if req.Method == http.MethodPut && req.URL.Path == "/_matrix/client/r0/profile/@user:test.gomatrix.org/avatar_url" {
|
||||||
return &http.Response{
|
return &http.Response{
|
||||||
StatusCode: 200,
|
StatusCode: 200,
|
||||||
Body: ioutil.NopCloser(bytes.NewBufferString(`{}`)),
|
Body: ioutil.NopCloser(bytes.NewBufferString(`{}`)),
|
||||||
|
@ -63,7 +63,7 @@ func TestClient_SetAvatarUrl(t *testing.T) {
|
||||||
|
|
||||||
func TestClient_StateEvent(t *testing.T) {
|
func TestClient_StateEvent(t *testing.T) {
|
||||||
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
if req.Method == "GET" && req.URL.Path == "/_matrix/client/r0/rooms/!foo:bar/state/m.room.name" {
|
if req.Method == http.MethodGet && req.URL.Path == "/_matrix/client/r0/rooms/!foo:bar/state/m.room.name" {
|
||||||
return &http.Response{
|
return &http.Response{
|
||||||
StatusCode: 200,
|
StatusCode: 200,
|
||||||
Body: ioutil.NopCloser(bytes.NewBufferString(`{"name":"Room Name Goes Here"}`)),
|
Body: ioutil.NopCloser(bytes.NewBufferString(`{"name":"Room Name Goes Here"}`)),
|
||||||
|
@ -86,7 +86,7 @@ func TestClient_StateEvent(t *testing.T) {
|
||||||
|
|
||||||
func TestClient_PublicRooms(t *testing.T) {
|
func TestClient_PublicRooms(t *testing.T) {
|
||||||
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
cli := mockClient(func(req *http.Request) (*http.Response, error) {
|
||||||
if req.Method == "GET" && req.URL.Path == "/_matrix/client/r0/publicRooms" {
|
if req.Method == http.MethodGet && req.URL.Path == "/_matrix/client/r0/publicRooms" {
|
||||||
return &http.Response{
|
return &http.Response{
|
||||||
StatusCode: 200,
|
StatusCode: 200,
|
||||||
Body: ioutil.NopCloser(bytes.NewBufferString(`{
|
Body: ioutil.NopCloser(bytes.NewBufferString(`{
|
||||||
|
|
34
events.go
34
events.go
|
@ -43,10 +43,10 @@ func (event *Event) MessageType() (msgtype string, ok bool) {
|
||||||
|
|
||||||
// TextMessage is the contents of a Matrix formated message event.
|
// TextMessage is the contents of a Matrix formated message event.
|
||||||
type TextMessage struct {
|
type TextMessage struct {
|
||||||
MsgType string `json:"msgtype"`
|
MsgType MessageType `json:"msgtype"`
|
||||||
Body string `json:"body"`
|
Body string `json:"body"`
|
||||||
FormattedBody string `json:"formatted_body"`
|
FormattedBody string `json:"formatted_body"`
|
||||||
Format string `json:"format"`
|
Format string `json:"format"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ThumbnailInfo contains info about an thumbnail image - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-image
|
// ThumbnailInfo contains info about an thumbnail image - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-image
|
||||||
|
@ -80,26 +80,26 @@ type VideoInfo struct {
|
||||||
|
|
||||||
// VideoMessage is an m.video - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-video
|
// VideoMessage is an m.video - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-video
|
||||||
type VideoMessage struct {
|
type VideoMessage struct {
|
||||||
MsgType string `json:"msgtype"`
|
MsgType MessageType `json:"msgtype"`
|
||||||
Body string `json:"body"`
|
Body string `json:"body"`
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Info VideoInfo `json:"info"`
|
Info VideoInfo `json:"info"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ImageMessage is an m.image event
|
// ImageMessage is an m.image event
|
||||||
type ImageMessage struct {
|
type ImageMessage struct {
|
||||||
MsgType string `json:"msgtype"`
|
MsgType MessageType `json:"msgtype"`
|
||||||
Body string `json:"body"`
|
Body string `json:"body"`
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Info ImageInfo `json:"info"`
|
Info ImageInfo `json:"info"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// An HTMLMessage is the contents of a Matrix HTML formated message event.
|
// An HTMLMessage is the contents of a Matrix HTML formated message event.
|
||||||
type HTMLMessage struct {
|
type HTMLMessage struct {
|
||||||
Body string `json:"body"`
|
Body string `json:"body"`
|
||||||
MsgType string `json:"msgtype"`
|
MsgType MessageType `json:"msgtype"`
|
||||||
Format string `json:"format"`
|
Format string `json:"format"`
|
||||||
FormattedBody string `json:"formatted_body"`
|
FormattedBody string `json:"formatted_body"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// FileInfo contains info about an file - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-file
|
// FileInfo contains info about an file - http://matrix.org/docs/spec/client_server/r0.2.0.html#m-file
|
||||||
|
@ -147,7 +147,7 @@ var htmlRegex = regexp.MustCompile("<[^<]+?>")
|
||||||
|
|
||||||
// GetHTMLMessage returns an HTMLMessage with the body set to a stripped version of the provided HTML, in addition
|
// GetHTMLMessage returns an HTMLMessage with the body set to a stripped version of the provided HTML, in addition
|
||||||
// to the provided HTML.
|
// to the provided HTML.
|
||||||
func GetHTMLMessage(msgtype, htmlText string) HTMLMessage {
|
func GetHTMLMessage(msgtype MessageType, htmlText string) HTMLMessage {
|
||||||
return HTMLMessage{
|
return HTMLMessage{
|
||||||
Body: html.UnescapeString(htmlRegex.ReplaceAllLiteralString(htmlText, "")),
|
Body: html.UnescapeString(htmlRegex.ReplaceAllLiteralString(htmlText, "")),
|
||||||
MsgType: msgtype,
|
MsgType: msgtype,
|
||||||
|
|
|
@ -94,14 +94,14 @@ func TestEventWithoutMessageType(t *testing.T) {
|
||||||
var testHTML = `<div>a<h1>bc</h1>d<p>e<i>fg</i>hi</p>j<p>k<br/>l<b>m</b>no</p>p<small>q</small>rs</div>`
|
var testHTML = `<div>a<h1>bc</h1>d<p>e<i>fg</i>hi</p>j<p>k<br/>l<b>m</b>no</p>p<small>q</small>rs</div>`
|
||||||
|
|
||||||
func TestGetHTMLMessage(t *testing.T) {
|
func TestGetHTMLMessage(t *testing.T) {
|
||||||
msg := GetHTMLMessage("m.text", testHTML)
|
msg := GetHTMLMessage(TextMessageType, testHTML)
|
||||||
if expected := "abcdefghijklmnopqrs"; msg.Body != expected {
|
if expected := "abcdefghijklmnopqrs"; msg.Body != expected {
|
||||||
t.Fatalf("TestGetHTMLMessage: got '%s', expected '%s'", msg.Body, expected)
|
t.Fatalf("TestGetHTMLMessage: got '%s', expected '%s'", msg.Body, expected)
|
||||||
}
|
}
|
||||||
if msg.FormattedBody != testHTML {
|
if msg.FormattedBody != testHTML {
|
||||||
t.Fatalf("TestGetHTMLMessage: got '%s', expected '%s'", msg.FormattedBody, testHTML)
|
t.Fatalf("TestGetHTMLMessage: got '%s', expected '%s'", msg.FormattedBody, testHTML)
|
||||||
}
|
}
|
||||||
if msg.MsgType != "m.text" {
|
if msg.MsgType != TextMessageType {
|
||||||
t.Fatalf("TestGetHTMLMessage: got '%s', expected 'm.text'", msg.FormattedBody)
|
t.Fatalf("TestGetHTMLMessage: got '%s', expected 'm.text'", msg.FormattedBody)
|
||||||
}
|
}
|
||||||
if expected := "org.matrix.custom.html"; msg.Format != expected {
|
if expected := "org.matrix.custom.html"; msg.Format != expected {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,3 +1,5 @@
|
||||||
module github.com/matrix-org/gomatrix
|
module github.com/matrix-org/gomatrix
|
||||||
|
|
||||||
go 1.12
|
go 1.12
|
||||||
|
|
||||||
|
require github.com/mailru/easyjson v0.7.7 // indirect
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
package gomatrix
|
package gomatrix
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/mailru/easyjson"
|
||||||
|
"github.com/mailru/easyjson/jlexer"
|
||||||
|
"github.com/mailru/easyjson/jwriter"
|
||||||
|
)
|
||||||
|
|
||||||
// Identifier is the interface for https://matrix.org/docs/spec/client_server/r0.6.0#identifier-types
|
// Identifier is the interface for https://matrix.org/docs/spec/client_server/r0.6.0#identifier-types
|
||||||
type Identifier interface {
|
type Identifier interface {
|
||||||
|
easyjson.MarshalerUnmarshaler
|
||||||
// Returns the identifier type
|
// Returns the identifier type
|
||||||
// https://matrix.org/docs/spec/client_server/r0.6.0#identifier-types
|
// https://matrix.org/docs/spec/client_server/r0.6.0#identifier-types
|
||||||
Type() string
|
Type() string
|
||||||
|
@ -18,6 +25,14 @@ func (i UserIdentifier) Type() string {
|
||||||
return "m.id.user"
|
return "m.id.user"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i UserIdentifier) MarshalEasyJSON(w *jwriter.Writer) {
|
||||||
|
w.String(i.IDType)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (i UserIdentifier) UnmarshalEasyJSON(w *jlexer.Lexer) {
|
||||||
|
i.IDType = w.String()
|
||||||
|
}
|
||||||
|
|
||||||
// NewUserIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
// NewUserIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
||||||
func NewUserIdentifier(user string) UserIdentifier {
|
func NewUserIdentifier(user string) UserIdentifier {
|
||||||
return UserIdentifier{
|
return UserIdentifier{
|
||||||
|
@ -38,6 +53,14 @@ func (i ThirdpartyIdentifier) Type() string {
|
||||||
return "m.id.thirdparty"
|
return "m.id.thirdparty"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i ThirdpartyIdentifier) MarshalEasyJSON(w *jwriter.Writer) {
|
||||||
|
w.String(i.IDType)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (i ThirdpartyIdentifier) UnmarshalEasyJSON(w *jlexer.Lexer) {
|
||||||
|
i.IDType = w.String()
|
||||||
|
}
|
||||||
|
|
||||||
// NewThirdpartyIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
// NewThirdpartyIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
||||||
func NewThirdpartyIdentifier(medium, address string) ThirdpartyIdentifier {
|
func NewThirdpartyIdentifier(medium, address string) ThirdpartyIdentifier {
|
||||||
return ThirdpartyIdentifier{
|
return ThirdpartyIdentifier{
|
||||||
|
@ -59,6 +82,14 @@ func (i PhoneIdentifier) Type() string {
|
||||||
return "m.id.phone"
|
return "m.id.phone"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i PhoneIdentifier) MarshalEasyJSON(w *jwriter.Writer) {
|
||||||
|
w.String(i.IDType)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (i PhoneIdentifier) UnmarshalEasyJSON(w *jlexer.Lexer) {
|
||||||
|
i.IDType = w.String()
|
||||||
|
}
|
||||||
|
|
||||||
// NewPhoneIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
// NewPhoneIdentifier creates a new UserIdentifier with IDType set to "m.id.user"
|
||||||
func NewPhoneIdentifier(country, phone string) PhoneIdentifier {
|
func NewPhoneIdentifier(country, phone string) PhoneIdentifier {
|
||||||
return PhoneIdentifier{
|
return PhoneIdentifier{
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
package gomatrix
|
||||||
|
|
||||||
|
type MessageType string
|
||||||
|
|
||||||
|
const (
|
||||||
|
TextMessageType MessageType = "m.text"
|
||||||
|
EmoteMessageType MessageType = "m.emote"
|
||||||
|
NoticeMessageType MessageType = "m.notice"
|
||||||
|
ImageMessageType MessageType = "m.image"
|
||||||
|
FileMessageType MessageType = "m.file"
|
||||||
|
AudioMessageType MessageType = "m.audio"
|
||||||
|
LocationMessageType MessageType = "m.location"
|
||||||
|
VideoMessageType MessageType = "m.video"
|
||||||
|
)
|
10
requests.go
10
requests.go
|
@ -1,6 +1,7 @@
|
||||||
package gomatrix
|
package gomatrix
|
||||||
|
|
||||||
// ReqRegister is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-register
|
// ReqRegister is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-register
|
||||||
|
//easyjson:json
|
||||||
type ReqRegister struct {
|
type ReqRegister struct {
|
||||||
Username string `json:"username,omitempty"`
|
Username string `json:"username,omitempty"`
|
||||||
BindEmail bool `json:"bind_email,omitempty"`
|
BindEmail bool `json:"bind_email,omitempty"`
|
||||||
|
@ -11,6 +12,7 @@ type ReqRegister struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqLogin is the JSON request for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-login
|
// ReqLogin is the JSON request for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-login
|
||||||
|
//easyjson:json
|
||||||
type ReqLogin struct {
|
type ReqLogin struct {
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Identifier Identifier `json:"identifier,omitempty"`
|
Identifier Identifier `json:"identifier,omitempty"`
|
||||||
|
@ -24,6 +26,7 @@ type ReqLogin struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqCreateRoom is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
// ReqCreateRoom is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
||||||
|
//easyjson:json
|
||||||
type ReqCreateRoom struct {
|
type ReqCreateRoom struct {
|
||||||
Visibility string `json:"visibility,omitempty"`
|
Visibility string `json:"visibility,omitempty"`
|
||||||
RoomAliasName string `json:"room_alias_name,omitempty"`
|
RoomAliasName string `json:"room_alias_name,omitempty"`
|
||||||
|
@ -38,12 +41,14 @@ type ReqCreateRoom struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqRedact is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-redact-eventid-txnid
|
// ReqRedact is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-redact-eventid-txnid
|
||||||
|
//easyjson:json
|
||||||
type ReqRedact struct {
|
type ReqRedact struct {
|
||||||
Reason string `json:"reason,omitempty"`
|
Reason string `json:"reason,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqInvite3PID is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#id57
|
// ReqInvite3PID is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#id57
|
||||||
// It is also a JSON object used in https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
// It is also a JSON object used in https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
||||||
|
//easyjson:json
|
||||||
type ReqInvite3PID struct {
|
type ReqInvite3PID struct {
|
||||||
IDServer string `json:"id_server"`
|
IDServer string `json:"id_server"`
|
||||||
Medium string `json:"medium"`
|
Medium string `json:"medium"`
|
||||||
|
@ -51,28 +56,33 @@ type ReqInvite3PID struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqInviteUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
// ReqInviteUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
||||||
|
//easyjson:json
|
||||||
type ReqInviteUser struct {
|
type ReqInviteUser struct {
|
||||||
UserID string `json:"user_id"`
|
UserID string `json:"user_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqKickUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
// ReqKickUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
||||||
|
//easyjson:json
|
||||||
type ReqKickUser struct {
|
type ReqKickUser struct {
|
||||||
Reason string `json:"reason,omitempty"`
|
Reason string `json:"reason,omitempty"`
|
||||||
UserID string `json:"user_id"`
|
UserID string `json:"user_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqBanUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
// ReqBanUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
||||||
|
//easyjson:json
|
||||||
type ReqBanUser struct {
|
type ReqBanUser struct {
|
||||||
Reason string `json:"reason,omitempty"`
|
Reason string `json:"reason,omitempty"`
|
||||||
UserID string `json:"user_id"`
|
UserID string `json:"user_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqUnbanUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
// ReqUnbanUser is the JSON request for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
||||||
|
//easyjson:json
|
||||||
type ReqUnbanUser struct {
|
type ReqUnbanUser struct {
|
||||||
UserID string `json:"user_id"`
|
UserID string `json:"user_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ReqTyping is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-typing-userid
|
// ReqTyping is the JSON request for https://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-typing-userid
|
||||||
|
//easyjson:json
|
||||||
type ReqTyping struct {
|
type ReqTyping struct {
|
||||||
Typing bool `json:"typing"`
|
Typing bool `json:"typing"`
|
||||||
Timeout int64 `json:"timeout"`
|
Timeout int64 `json:"timeout"`
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
27
responses.go
27
responses.go
|
@ -2,6 +2,7 @@ package gomatrix
|
||||||
|
|
||||||
// RespError is the standard JSON error response from Homeservers. It also implements the Golang "error" interface.
|
// RespError is the standard JSON error response from Homeservers. It also implements the Golang "error" interface.
|
||||||
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#api-standards
|
// See http://matrix.org/docs/spec/client_server/r0.2.0.html#api-standards
|
||||||
|
//easyjson:json
|
||||||
type RespError struct {
|
type RespError struct {
|
||||||
ErrCode string `json:"errcode"`
|
ErrCode string `json:"errcode"`
|
||||||
Err string `json:"error"`
|
Err string `json:"error"`
|
||||||
|
@ -13,16 +14,19 @@ func (e RespError) Error() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespCreateFilter is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-user-userid-filter
|
// RespCreateFilter is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-user-userid-filter
|
||||||
|
//easyjson:json
|
||||||
type RespCreateFilter struct {
|
type RespCreateFilter struct {
|
||||||
FilterID string `json:"filter_id"`
|
FilterID string `json:"filter_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespVersions is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-versions
|
// RespVersions is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-versions
|
||||||
|
//easyjson:json
|
||||||
type RespVersions struct {
|
type RespVersions struct {
|
||||||
Versions []string `json:"versions"`
|
Versions []string `json:"versions"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespPublicRooms is the JSON response for http://matrix.org/speculator/spec/HEAD/client_server/unstable.html#get-matrix-client-unstable-publicrooms
|
// RespPublicRooms is the JSON response for http://matrix.org/speculator/spec/HEAD/client_server/unstable.html#get-matrix-client-unstable-publicrooms
|
||||||
|
//easyjson:json
|
||||||
type RespPublicRooms struct {
|
type RespPublicRooms struct {
|
||||||
TotalRoomCountEstimate int `json:"total_room_count_estimate"`
|
TotalRoomCountEstimate int `json:"total_room_count_estimate"`
|
||||||
PrevBatch string `json:"prev_batch"`
|
PrevBatch string `json:"prev_batch"`
|
||||||
|
@ -31,37 +35,47 @@ type RespPublicRooms struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespJoinRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-join
|
// RespJoinRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-join
|
||||||
|
//easyjson:json
|
||||||
type RespJoinRoom struct {
|
type RespJoinRoom struct {
|
||||||
RoomID string `json:"room_id"`
|
RoomID string `json:"room_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespLeaveRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-leave
|
// RespLeaveRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-leave
|
||||||
|
//easyjson:json
|
||||||
type RespLeaveRoom struct{}
|
type RespLeaveRoom struct{}
|
||||||
|
|
||||||
// RespForgetRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-forget
|
// RespForgetRoom is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-forget
|
||||||
|
//easyjson:json
|
||||||
type RespForgetRoom struct{}
|
type RespForgetRoom struct{}
|
||||||
|
|
||||||
// RespInviteUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
// RespInviteUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-invite
|
||||||
|
//easyjson:json
|
||||||
type RespInviteUser struct{}
|
type RespInviteUser struct{}
|
||||||
|
|
||||||
// RespKickUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
// RespKickUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-kick
|
||||||
|
//easyjson:json
|
||||||
type RespKickUser struct{}
|
type RespKickUser struct{}
|
||||||
|
|
||||||
// RespBanUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
// RespBanUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-ban
|
||||||
|
//easyjson:json
|
||||||
type RespBanUser struct{}
|
type RespBanUser struct{}
|
||||||
|
|
||||||
// RespUnbanUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
// RespUnbanUser is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-rooms-roomid-unban
|
||||||
|
//easyjson:json
|
||||||
type RespUnbanUser struct{}
|
type RespUnbanUser struct{}
|
||||||
|
|
||||||
// RespTyping is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-typing-userid
|
// RespTyping is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-typing-userid
|
||||||
|
//easyjson:json
|
||||||
type RespTyping struct{}
|
type RespTyping struct{}
|
||||||
|
|
||||||
// RespJoinedRooms is the JSON response for TODO-SPEC https://github.com/matrix-org/synapse/pull/1680
|
// RespJoinedRooms is the JSON response for TODO-SPEC https://github.com/matrix-org/synapse/pull/1680
|
||||||
|
//easyjson:json
|
||||||
type RespJoinedRooms struct {
|
type RespJoinedRooms struct {
|
||||||
JoinedRooms []string `json:"joined_rooms"`
|
JoinedRooms []string `json:"joined_rooms"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespJoinedMembers is the JSON response for TODO-SPEC https://github.com/matrix-org/synapse/pull/1680
|
// RespJoinedMembers is the JSON response for TODO-SPEC https://github.com/matrix-org/synapse/pull/1680
|
||||||
|
//easyjson:json
|
||||||
type RespJoinedMembers struct {
|
type RespJoinedMembers struct {
|
||||||
Joined map[string]struct {
|
Joined map[string]struct {
|
||||||
DisplayName *string `json:"display_name"`
|
DisplayName *string `json:"display_name"`
|
||||||
|
@ -70,6 +84,7 @@ type RespJoinedMembers struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespMessages is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-messages
|
// RespMessages is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-rooms-roomid-messages
|
||||||
|
//easyjson:json
|
||||||
type RespMessages struct {
|
type RespMessages struct {
|
||||||
Start string `json:"start"`
|
Start string `json:"start"`
|
||||||
Chunk []Event `json:"chunk"`
|
Chunk []Event `json:"chunk"`
|
||||||
|
@ -77,16 +92,19 @@ type RespMessages struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespSendEvent is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-send-eventtype-txnid
|
// RespSendEvent is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#put-matrix-client-r0-rooms-roomid-send-eventtype-txnid
|
||||||
|
//easyjson:json
|
||||||
type RespSendEvent struct {
|
type RespSendEvent struct {
|
||||||
EventID string `json:"event_id"`
|
EventID string `json:"event_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespMediaUpload is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-media-r0-upload
|
// RespMediaUpload is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-media-r0-upload
|
||||||
|
//easyjson:json
|
||||||
type RespMediaUpload struct {
|
type RespMediaUpload struct {
|
||||||
ContentURI string `json:"content_uri"`
|
ContentURI string `json:"content_uri"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespUserInteractive is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#user-interactive-authentication-api
|
// RespUserInteractive is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#user-interactive-authentication-api
|
||||||
|
//easyjson:json
|
||||||
type RespUserInteractive struct {
|
type RespUserInteractive struct {
|
||||||
Flows []struct {
|
Flows []struct {
|
||||||
Stages []string `json:"stages"`
|
Stages []string `json:"stages"`
|
||||||
|
@ -109,11 +127,13 @@ func (r RespUserInteractive) HasSingleStageFlow(stageName string) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespUserDisplayName is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
// RespUserDisplayName is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-profile-userid-displayname
|
||||||
|
//easyjson:json
|
||||||
type RespUserDisplayName struct {
|
type RespUserDisplayName struct {
|
||||||
DisplayName string `json:"displayname"`
|
DisplayName string `json:"displayname"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespUserStatus is the JSON response for https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-presence-userid-status
|
// RespUserStatus is the JSON response for https://matrix.org/docs/spec/client_server/r0.6.0#get-matrix-client-r0-presence-userid-status
|
||||||
|
//easyjson:json
|
||||||
type RespUserStatus struct {
|
type RespUserStatus struct {
|
||||||
Presence string `json:"presence"`
|
Presence string `json:"presence"`
|
||||||
StatusMsg string `json:"status_msg"`
|
StatusMsg string `json:"status_msg"`
|
||||||
|
@ -122,6 +142,7 @@ type RespUserStatus struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespRegister is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-register
|
// RespRegister is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-register
|
||||||
|
//easyjson:json
|
||||||
type RespRegister struct {
|
type RespRegister struct {
|
||||||
AccessToken string `json:"access_token"`
|
AccessToken string `json:"access_token"`
|
||||||
DeviceID string `json:"device_id"`
|
DeviceID string `json:"device_id"`
|
||||||
|
@ -131,6 +152,7 @@ type RespRegister struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespLogin is the JSON response for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-login
|
// RespLogin is the JSON response for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-login
|
||||||
|
//easyjson:json
|
||||||
type RespLogin struct {
|
type RespLogin struct {
|
||||||
AccessToken string `json:"access_token"`
|
AccessToken string `json:"access_token"`
|
||||||
DeviceID string `json:"device_id"`
|
DeviceID string `json:"device_id"`
|
||||||
|
@ -150,17 +172,21 @@ type DiscoveryInformation struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespLogout is the JSON response for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-logout
|
// RespLogout is the JSON response for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-logout
|
||||||
|
//easyjson:json
|
||||||
type RespLogout struct{}
|
type RespLogout struct{}
|
||||||
|
|
||||||
// RespLogoutAll is the JSON response for https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-logout-all
|
// RespLogoutAll is the JSON response for https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-logout-all
|
||||||
|
//easyjson:json
|
||||||
type RespLogoutAll struct{}
|
type RespLogoutAll struct{}
|
||||||
|
|
||||||
// RespCreateRoom is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
// RespCreateRoom is the JSON response for https://matrix.org/docs/spec/client_server/r0.2.0.html#post-matrix-client-r0-createroom
|
||||||
|
//easyjson:json
|
||||||
type RespCreateRoom struct {
|
type RespCreateRoom struct {
|
||||||
RoomID string `json:"room_id"`
|
RoomID string `json:"room_id"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespSync is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-sync
|
// RespSync is the JSON response for http://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-sync
|
||||||
|
//easyjson:json
|
||||||
type RespSync struct {
|
type RespSync struct {
|
||||||
NextBatch string `json:"next_batch"`
|
NextBatch string `json:"next_batch"`
|
||||||
AccountData struct {
|
AccountData struct {
|
||||||
|
@ -202,6 +228,7 @@ type RespSync struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// RespTurnServer is the JSON response from a Turn Server
|
// RespTurnServer is the JSON response from a Turn Server
|
||||||
|
//easyjson:json
|
||||||
type RespTurnServer struct {
|
type RespTurnServer struct {
|
||||||
Username string `json:"username"`
|
Username string `json:"username"`
|
||||||
Password string `json:"password"`
|
Password string `json:"password"`
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue