summaryrefslogtreecommitdiffstats
path: root/model/client4.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-30 17:09:39 +0200
committerCorey Hulen <corey@hulen.com>2017-03-30 08:09:39 -0700
commit29e6db5713c57d7bb46d7aea38b1001b9e8a1212 (patch)
tree66d0a06a35068ce26024b0b9c030de0b1c8bab5c /model/client4.go
parentee3b983a6344d78bafa553607133020e8e1fb0ed (diff)
downloadchat-29e6db5713c57d7bb46d7aea38b1001b9e8a1212.tar.gz
chat-29e6db5713c57d7bb46d7aea38b1001b9e8a1212.tar.bz2
chat-29e6db5713c57d7bb46d7aea38b1001b9e8a1212.zip
Implement POST /users/status/ids for apiv4 (#5894)
Diffstat (limited to 'model/client4.go')
-rw-r--r--model/client4.go18
1 files changed, 16 insertions, 2 deletions
diff --git a/model/client4.go b/model/client4.go
index 27f8328f4..91b538ff8 100644
--- a/model/client4.go
+++ b/model/client4.go
@@ -194,10 +194,14 @@ func (c *Client4) GetPreferencesRoute(userId string) string {
return fmt.Sprintf(c.GetUserRoute(userId) + "/preferences")
}
-func (c *Client4) GetStatusRoute(userId string) string {
+func (c *Client4) GetUserStatusRoute(userId string) string {
return fmt.Sprintf(c.GetUserRoute(userId) + "/status")
}
+func (c *Client4) GetUserStatusesRoute() string {
+ return fmt.Sprintf(c.GetUsersRoute() + "/status")
+}
+
func (c *Client4) GetSamlRoute() string {
return fmt.Sprintf("/saml")
}
@@ -1989,10 +1993,20 @@ func (c *Client4) CreateCommand(cmd *Command) (*Command, *Response) {
// GetUserStatus returns a user based on the provided user id string.
func (c *Client4) GetUserStatus(userId, etag string) (*Status, *Response) {
- if r, err := c.DoApiGet(c.GetStatusRoute(userId), etag); err != nil {
+ if r, err := c.DoApiGet(c.GetUserStatusRoute(userId), etag); err != nil {
return nil, &Response{StatusCode: r.StatusCode, Error: err}
} else {
defer closeBody(r)
return StatusFromJson(r.Body), BuildResponse(r)
}
}
+
+// GetUsersStatusesByIds returns a list of users status based on the provided user ids.
+func (c *Client4) GetUsersStatusesByIds(userIds []string) ([]*Status, *Response) {
+ if r, err := c.DoApiPost(c.GetUserStatusesRoute()+"/ids", ArrayToJson(userIds)); err != nil {
+ return nil, &Response{StatusCode: r.StatusCode, Error: err}
+ } else {
+ defer closeBody(r)
+ return StatusListFromJson(r.Body), BuildResponse(r)
+ }
+}