summaryrefslogtreecommitdiffstats
path: root/api4/webhook.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-23 12:02:42 +0100
committerGeorge Goldberg <george@gberg.me>2017-03-23 11:02:42 +0000
commit78e5b803cc0817e1b5d58ca27a7ad8ad22616602 (patch)
tree4c0eeb601dc590901801936c3727b14c0bfb547e /api4/webhook.go
parent0326177253bd3b4a2933e084a8759473998b60c0 (diff)
downloadchat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.tar.gz
chat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.tar.bz2
chat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.zip
add implementation to get outgoing webhook for apiv4 (#5827)
Diffstat (limited to 'api4/webhook.go')
-rw-r--r--api4/webhook.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/api4/webhook.go b/api4/webhook.go
index aaaf6f396..8d2c4874f 100644
--- a/api4/webhook.go
+++ b/api4/webhook.go
@@ -24,6 +24,7 @@ func InitWebhook() {
BaseRoutes.OutgoingHooks.Handle("", ApiSessionRequired(createOutgoingHook)).Methods("POST")
BaseRoutes.OutgoingHooks.Handle("", ApiSessionRequired(getOutgoingHooks)).Methods("GET")
BaseRoutes.OutgoingHook.Handle("", ApiSessionRequired(updateOutcomingHook)).Methods("PUT")
+ BaseRoutes.OutgoingHook.Handle("", ApiSessionRequired(getOutgoingHook)).Methods("GET")
BaseRoutes.OutgoingHook.Handle("/regen_token", ApiSessionRequired(regenOutgoingHookToken)).Methods("POST")
}
@@ -333,6 +334,35 @@ func getOutgoingHooks(c *Context, w http.ResponseWriter, r *http.Request) {
w.Write([]byte(model.OutgoingWebhookListToJson(hooks)))
}
+func getOutgoingHook(c *Context, w http.ResponseWriter, r *http.Request) {
+ c.RequireHookId()
+ if c.Err != nil {
+ return
+ }
+
+ hook, err := app.GetOutgoingWebhook(c.Params.HookId)
+ if err != nil {
+ c.Err = err
+ return
+ }
+
+ c.LogAudit("attempt")
+
+ if !app.SessionHasPermissionToTeam(c.Session, hook.TeamId, model.PERMISSION_MANAGE_WEBHOOKS) {
+ c.SetPermissionError(model.PERMISSION_MANAGE_WEBHOOKS)
+ return
+ }
+
+ if c.Session.UserId != hook.CreatorId && !app.SessionHasPermissionToTeam(c.Session, hook.TeamId, model.PERMISSION_MANAGE_OTHERS_WEBHOOKS) {
+ c.LogAudit("fail - inappropriate permissions")
+ c.SetPermissionError(model.PERMISSION_MANAGE_OTHERS_WEBHOOKS)
+ return
+ }
+
+ c.LogAudit("success")
+ w.Write([]byte(hook.ToJson()))
+}
+
func regenOutgoingHookToken(c *Context, w http.ResponseWriter, r *http.Request) {
c.RequireHookId()
if c.Err != nil {