https://community-daily.mattermost.com/boards/workspace/zyoahc9uapdn3xdptac6jb69ic/285b80a3-257d-41f6-8cf4-ed80ca9d92e5/495cdb4d-c13a-4992-8eb9-80cfee2819a4?c=c6753a1c-dbbf-4316-8e4e-c58ebb65d6e0 ```release-note NONE ```
63 строки
1.8 KiB
Go
63 строки
1.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/mattermost/mattermost-server/v6/model"
|
|
"github.com/mattermost/mattermost-server/v6/services/searchengine"
|
|
)
|
|
|
|
func (a *App) TestElasticsearch(cfg *model.Config) *model.AppError {
|
|
if *cfg.ElasticsearchSettings.Password == model.FakeSetting {
|
|
if *cfg.ElasticsearchSettings.ConnectionURL == *a.Config().ElasticsearchSettings.ConnectionURL && *cfg.ElasticsearchSettings.Username == *a.Config().ElasticsearchSettings.Username {
|
|
*cfg.ElasticsearchSettings.Password = *a.Config().ElasticsearchSettings.Password
|
|
} else {
|
|
return model.NewAppError("TestElasticsearch", "ent.elasticsearch.test_config.reenter_password", nil, "", http.StatusBadRequest)
|
|
}
|
|
}
|
|
|
|
seI := a.SearchEngine().ElasticsearchEngine
|
|
if seI == nil {
|
|
err := model.NewAppError("TestElasticsearch", "ent.elasticsearch.test_config.license.error", nil, "", http.StatusNotImplemented)
|
|
return err
|
|
}
|
|
if err := seI.TestConfig(cfg); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *App) SetSearchEngine(se *searchengine.Broker) {
|
|
a.srv.SearchEngine = se
|
|
}
|
|
|
|
func (a *App) PurgeElasticsearchIndexes() *model.AppError {
|
|
engine := a.SearchEngine().ElasticsearchEngine
|
|
if engine == nil {
|
|
err := model.NewAppError("PurgeElasticsearchIndexes", "ent.elasticsearch.test_config.license.error", nil, "", http.StatusNotImplemented)
|
|
return err
|
|
}
|
|
|
|
if err := engine.PurgeIndexes(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *App) PurgeBleveIndexes() *model.AppError {
|
|
engine := a.SearchEngine().BleveEngine
|
|
if engine == nil {
|
|
err := model.NewAppError("PurgeBleveIndexes", "searchengine.bleve.disabled.error", nil, "", http.StatusNotImplemented)
|
|
return err
|
|
}
|
|
if err := engine.PurgeIndexes(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|