searchengine

package
v5.39.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 15, 2021 License: AGPL-3.0, Apache-2.0 Imports: 6 Imported by: 20

Documentation

Index

Constants

This section is empty.

Variables

View Source
var EmailRegex = regexp.MustCompile(`^[^\s"]+@[^\s"]+$`)

Functions

func GetSuggestionInputsSplitBy added in v5.24.0

func GetSuggestionInputsSplitBy(term, splitStr string) []string

func GetSuggestionInputsSplitByMultiple added in v5.24.0

func GetSuggestionInputsSplitByMultiple(term string, splitStrs []string) []string

Types

type Broker

type Broker struct {
	ElasticsearchEngine SearchEngineInterface
	BleveEngine         SearchEngineInterface
	// contains filtered or unexported fields
}

func NewBroker

func NewBroker(cfg *model.Config, jobServer *jobs.JobServer) *Broker

func (*Broker) GetActiveEngines

func (seb *Broker) GetActiveEngines() []SearchEngineInterface

func (*Broker) RegisterBleveEngine added in v5.24.0

func (seb *Broker) RegisterBleveEngine(be SearchEngineInterface)

func (*Broker) RegisterElasticsearchEngine

func (seb *Broker) RegisterElasticsearchEngine(es SearchEngineInterface)

func (*Broker) UpdateConfig

func (seb *Broker) UpdateConfig(cfg *model.Config) *model.AppError

type SearchEngineInterface

type SearchEngineInterface interface {
	Start() *model.AppError
	Stop() *model.AppError
	GetFullVersion() string
	GetVersion() int
	GetPlugins() []string
	UpdateConfig(cfg *model.Config)
	GetName() string
	IsActive() bool
	IsIndexingEnabled() bool
	IsSearchEnabled() bool
	IsAutocompletionEnabled() bool
	IsIndexingSync() bool
	IndexPost(post *model.Post, teamId string) *model.AppError
	SearchPosts(channels *model.ChannelList, searchParams []*model.SearchParams, page, perPage int) ([]string, model.PostSearchMatches, *model.AppError)
	DeletePost(post *model.Post) *model.AppError
	DeleteChannelPosts(channelID string) *model.AppError
	DeleteUserPosts(userID string) *model.AppError
	IndexChannel(channel *model.Channel) *model.AppError
	SearchChannels(teamId, term string) ([]string, *model.AppError)
	DeleteChannel(channel *model.Channel) *model.AppError
	IndexUser(user *model.User, teamsIds, channelsIds []string) *model.AppError
	SearchUsersInChannel(teamId, channelId string, restrictedToChannels []string, term string, options *model.UserSearchOptions) ([]string, []string, *model.AppError)
	SearchUsersInTeam(teamId string, restrictedToChannels []string, term string, options *model.UserSearchOptions) ([]string, *model.AppError)
	DeleteUser(user *model.User) *model.AppError
	IndexFile(file *model.FileInfo, channelId string) *model.AppError
	SearchFiles(channels *model.ChannelList, searchParams []*model.SearchParams, page, perPage int) ([]string, *model.AppError)
	DeleteFile(fileID string) *model.AppError
	DeletePostFiles(postID string) *model.AppError
	DeleteUserFiles(userID string) *model.AppError
	DeleteFilesBatch(endTime, limit int64) *model.AppError
	TestConfig(cfg *model.Config) *model.AppError
	PurgeIndexes() *model.AppError
	RefreshIndexes() *model.AppError
	DataRetentionDeleteIndexes(cutoff time.Time) *model.AppError
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL