From 6935e2d5ea73d34f0f383715fd161059eff74608 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Fri, 24 Mar 2017 00:42:32 +0100 Subject: implement POST /commands for apiv4 (#5849) --- api4/command.go | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 api4/command.go (limited to 'api4/command.go') 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())) +} -- cgit v1.2.3-1-g7c22