summaryrefslogtreecommitdiffstats
path: root/api4/channel.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-04-20 22:55:43 +0900
committerJoram Wilander <jwawilander@gmail.com>2017-04-20 09:55:43 -0400
commitb0e5713680b36c93ed2e63f327cb0ac69fb64553 (patch)
treea0a45a88aa78ca42cc422959ec2085b4d6a3ea05 /api4/channel.go
parentbe9624e2adce7c95039e62fc4ee22538d7fa2d2f (diff)
downloadchat-b0e5713680b36c93ed2e63f327cb0ac69fb64553.tar.gz
chat-b0e5713680b36c93ed2e63f327cb0ac69fb64553.tar.bz2
chat-b0e5713680b36c93ed2e63f327cb0ac69fb64553.zip
APIv4 POST /channels/group (#6166)
Diffstat (limited to 'api4/channel.go')
-rw-r--r--api4/channel.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/api4/channel.go b/api4/channel.go
index acef92415..5d1651d74 100644
--- a/api4/channel.go
+++ b/api4/channel.go
@@ -17,6 +17,7 @@ func InitChannel() {
BaseRoutes.Channels.Handle("", ApiSessionRequired(createChannel)).Methods("POST")
BaseRoutes.Channels.Handle("/direct", ApiSessionRequired(createDirectChannel)).Methods("POST")
+ BaseRoutes.Channels.Handle("/group", ApiSessionRequired(createGroupChannel)).Methods("POST")
BaseRoutes.Channels.Handle("/members/{user_id:[A-Za-z0-9]+}/view", ApiSessionRequired(viewChannel)).Methods("POST")
BaseRoutes.ChannelsForTeam.Handle("", ApiSessionRequired(getPublicChannelsForTeam)).Methods("GET")
@@ -230,6 +231,43 @@ func createDirectChannel(c *Context, w http.ResponseWriter, r *http.Request) {
}
}
+func createGroupChannel(c *Context, w http.ResponseWriter, r *http.Request) {
+ userIds := model.ArrayFromJson(r.Body)
+
+ if len(userIds) == 0 {
+ c.SetInvalidParam("user_ids")
+ return
+ }
+
+ found := false
+ for _, id := range userIds {
+ if len(id) != 26 {
+ c.SetInvalidParam("user_id")
+ return
+ }
+ if id == c.Session.UserId {
+ found = true
+ }
+ }
+
+ if !found {
+ userIds = append(userIds, c.Session.UserId)
+ }
+
+ if !app.SessionHasPermissionTo(c.Session, model.PERMISSION_CREATE_GROUP_CHANNEL) {
+ c.SetPermissionError(model.PERMISSION_CREATE_GROUP_CHANNEL)
+ return
+ }
+
+ if groupChannel, err := app.CreateGroupChannel(userIds); err != nil {
+ c.Err = err
+ return
+ } else {
+ w.WriteHeader(http.StatusCreated)
+ w.Write([]byte(groupChannel.ToJson()))
+ }
+}
+
func getChannel(c *Context, w http.ResponseWriter, r *http.Request) {
c.RequireChannelId()
if c.Err != nil {