From 5bf6ae04dfedc2e504ea8af5c71b2e9a8287e2b5 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Fri, 24 Mar 2017 18:23:32 +0100 Subject: [APIV4] GET /users/{user_id}/status - user status endpoint for apiV4 (#5824) --- model/client4.go | 16 ++++++++++++++++ model/status.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) (limited to 'model') diff --git a/model/client4.go b/model/client4.go index 214c31865..3aef5019c 100644 --- a/model/client4.go +++ b/model/client4.go @@ -190,6 +190,10 @@ func (c *Client4) GetPreferencesRoute(userId string) string { return fmt.Sprintf(c.GetUserRoute(userId) + "/preferences") } +func (c *Client4) GetStatusRoute(userId string) string { + return fmt.Sprintf(c.GetUserRoute(userId) + "/status") +} + func (c *Client4) GetSamlRoute() string { return fmt.Sprintf("/saml") } @@ -1764,3 +1768,15 @@ func (c *Client4) CreateCommand(cmd *Command) (*Command, *Response) { return CommandFromJson(r.Body), BuildResponse(r) } } + +// Status Section + +// 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 { + return nil, &Response{StatusCode: r.StatusCode, Error: err} + } else { + defer closeBody(r) + return StatusFromJson(r.Body), BuildResponse(r) + } +} diff --git a/model/status.go b/model/status.go index fc1557887..e38f43fe4 100644 --- a/model/status.go +++ b/model/status.go @@ -22,7 +22,7 @@ type Status struct { Status string `json:"status"` Manual bool `json:"manual"` LastActivityAt int64 `json:"last_activity_at"` - ActiveChannel string `json:"active_channel" db:"-"` + ActiveChannel string `json:"-" db:"-"` } func (o *Status) ToJson() string { -- cgit v1.2.3-1-g7c22