summaryrefslogtreecommitdiffstats
path: root/api4/command.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-24 00:42:32 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-03-23 19:42:32 -0400
commit6935e2d5ea73d34f0f383715fd161059eff74608 (patch)
treeb57173a5616bc06413305ebf553e8c0b11881c3f /api4/command.go
parent42c3ea64a9e2e75193d35939bbca34adfbd5ddf9 (diff)
downloadchat-6935e2d5ea73d34f0f383715fd161059eff74608.tar.gz
chat-6935e2d5ea73d34f0f383715fd161059eff74608.tar.bz2
chat-6935e2d5ea73d34f0f383715fd161059eff74608.zip
implement POST /commands for apiv4 (#5849)
Diffstat (limited to 'api4/command.go')
-rw-r--r--api4/command.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/api4/command.go b/api4/command.go
new file mode 100644
index 000000000..123be1932
--- /dev/null
+++ b/api4/command.go
@@ -0,0 +1,45 @@
+// 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 InitCommand() {
+ l4g.Debug(utils.T("api.command.init.debug"))
+
+ BaseRoutes.Commands.Handle("", ApiSessionRequired(createCommand)).Methods("POST")
+}
+
+func createCommand(c *Context, w http.ResponseWriter, r *http.Request) {
+ cmd := model.CommandFromJson(r.Body)
+ if cmd == nil {
+ c.SetInvalidParam("command")
+ return
+ }
+
+ c.LogAudit("attempt")
+
+ if !app.SessionHasPermissionToTeam(c.Session, cmd.TeamId, model.PERMISSION_MANAGE_SLASH_COMMANDS) {
+ c.SetPermissionError(model.PERMISSION_MANAGE_SLASH_COMMANDS)
+ return
+ }
+
+ cmd.CreatorId = c.Session.UserId
+
+ rcmd, err := app.CreateCommand(cmd)
+ if err != nil {
+ c.Err = err
+ return
+ }
+
+ c.LogAudit("success")
+ w.Write([]byte(rcmd.ToJson()))
+}