summaryrefslogtreecommitdiffstats
path: root/api4/elasticsearch.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/elasticsearch.go')
-rw-r--r--api4/elasticsearch.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/api4/elasticsearch.go b/api4/elasticsearch.go
new file mode 100644
index 000000000..05ef1f539
--- /dev/null
+++ b/api4/elasticsearch.go
@@ -0,0 +1,33 @@
+// Copyright (c) 2017-present 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 InitElasticsearch() {
+ l4g.Debug(utils.T("api.elasticsearch.init.debug"))
+
+ BaseRoutes.Elasticsearch.Handle("/test", ApiSessionRequired(testElasticsearch)).Methods("POST")
+}
+
+func testElasticsearch(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.TestElasticsearch(); err != nil {
+ c.Err = err
+ return
+ }
+
+ ReturnStatusOK(w)
+}