summaryrefslogtreecommitdiffstats
path: root/api4/ldap.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-14 08:43:40 -0400
committerGitHub <noreply@github.com>2017-03-14 08:43:40 -0400
commitee457176bd0c4442358df089044b87eb75fe7569 (patch)
tree18ddf06b686b24925febc2e9a33f86dff4936c17 /api4/ldap.go
parenta71a9fc3bff1b6a6c9d5e0a65f53686922572834 (diff)
downloadchat-ee457176bd0c4442358df089044b87eb75fe7569.tar.gz
chat-ee457176bd0c4442358df089044b87eb75fe7569.tar.bz2
chat-ee457176bd0c4442358df089044b87eb75fe7569.zip
Implement admin LDAP endpoints for APIv4 (#5720)
Diffstat (limited to 'api4/ldap.go')
-rw-r--r--api4/ldap.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/api4/ldap.go b/api4/ldap.go
new file mode 100644
index 000000000..e138fdc97
--- /dev/null
+++ b/api4/ldap.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 InitLdap() {
+ l4g.Debug(utils.T("api.ldap.init.debug"))
+
+ BaseRoutes.LDAP.Handle("/sync", ApiSessionRequired(syncLdap)).Methods("POST")
+ BaseRoutes.LDAP.Handle("/test", ApiSessionRequired(testLdap)).Methods("POST")
+}
+
+func syncLdap(c *Context, w http.ResponseWriter, r *http.Request) {
+ if !app.SessionHasPermissionTo(c.Session, model.PERMISSION_MANAGE_SYSTEM) {
+ c.SetPermissionError(model.PERMISSION_MANAGE_SYSTEM)
+ return
+ }
+
+ app.SyncLdap()
+
+ ReturnStatusOK(w)
+}
+
+func testLdap(c *Context, w http.ResponseWriter, r *http.Request) {
+ if !app.SessionHasPermissionTo(c.Session, model.PERMISSION_MANAGE_SYSTEM) {
+ c.SetPermissionError(model.PERMISSION_MANAGE_SYSTEM)
+ return
+ }
+
+ if err := app.TestLdap(); err != nil {
+ c.Err = err
+ return
+ }
+
+ ReturnStatusOK(w)
+}