summaryrefslogtreecommitdiffstats
path: root/api4/status.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/status.go')
-rw-r--r--api4/status.go40
1 files changed, 40 insertions, 0 deletions
diff --git a/api4/status.go b/api4/status.go
new file mode 100644
index 000000000..5cd6a4536
--- /dev/null
+++ b/api4/status.go
@@ -0,0 +1,40 @@
+// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "net/http"
+
+ l4g "github.com/alecthomas/log4go"
+
+ "github.com/mattermost/platform/app"
+ "github.com/mattermost/platform/model"
+ "github.com/mattermost/platform/utils"
+)
+
+func InitStatus() {
+ l4g.Debug(utils.T("api.status.init.debug"))
+
+ BaseRoutes.User.Handle("/status", ApiHandler(getUserStatus)).Methods("GET")
+
+}
+
+func getUserStatus(c *Context, w http.ResponseWriter, r *http.Request) {
+ c.RequireUserId()
+ if c.Err != nil {
+ return
+ }
+
+ if statusMap, err := app.GetUserStatusesByIds([]string{c.Params.UserId}); err != nil {
+ c.Err = err
+ return
+ } else {
+ if len(statusMap) == 0 {
+ c.Err = model.NewAppError("UserStatus", "api.status.user_not_found.app_error", nil, "", http.StatusNotFound)
+ return
+ } else {
+ w.Write([]byte(statusMap[0].ToJson()))
+ }
+ }
+}