mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* WIP * Adding bleve to go modules * WIP * Adding missing files from searchengine implementation * WIP * WIP * WIP * WIP * WIP * WIP * User and channel indexing and searches implemented * Make bleve tests run with in-memory indexes * Implement post index and deletion tests * Initial commits for the search layer * Removing unnecesary indexing * WIP * WIP * More fixes for tests * Adding the search layer * Finishing the migration of searchers to the layer * Removing unnecesary code * Allowing multiple engines active at the same time * WIP * Add simple post search * Print information when using bleve * Adding some debugging to understand better how the searches are working * Making more dynamic config of search engines * Add post search basics * Adding the Purge API endpoint * Fixing bleve config updates * Adding missed file * Regenerating search engine mocks * Adding missed v5 to modules imports * fixing i18n * Fixing some test around search engine * Removing all bleve traces * Cleaning up the vendors directory and go.mod/go.sum files * Regenerating timer layer * Adding properly the license * Fixing govet shadow error * Fixing some tests * Fixing TestSearchPostsFromUser * Fixing another test * Fixing more tests * Fixing more tests * Removing SearchEngine redundant text from searchengine module code * Fixing some reindexing problems in members updates * Fixing tests * Addressing PR comments * Reverting go.mod and go.sum * Addressing PR comments * Fixing tests compilation * Fixing govet * Adding search engine stop method * Being more explicit on where we use includeDeleted * Adding GetSqlSupplier test helper method * Mocking elasticsearch start function * Fixing tests Co-authored-by: Miguel de la Cruz <miguel@mcrx.me> Co-authored-by: mattermod <mattermod@users.noreply.github.com>
68 lines
2.0 KiB
Go
68 lines
2.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
const USER_SEARCH_MAX_LIMIT = 1000
|
|
const USER_SEARCH_DEFAULT_LIMIT = 100
|
|
|
|
// UserSearch captures the parameters provided by a client for initiating a user search.
|
|
type UserSearch struct {
|
|
Term string `json:"term"`
|
|
TeamId string `json:"team_id"`
|
|
NotInTeamId string `json:"not_in_team_id"`
|
|
InChannelId string `json:"in_channel_id"`
|
|
NotInChannelId string `json:"not_in_channel_id"`
|
|
GroupConstrained bool `json:"group_constrained"`
|
|
AllowInactive bool `json:"allow_inactive"`
|
|
WithoutTeam bool `json:"without_team"`
|
|
Limit int `json:"limit"`
|
|
Role string `json:"role"`
|
|
}
|
|
|
|
// ToJson convert a User to a json string
|
|
func (u *UserSearch) ToJson() []byte {
|
|
b, _ := json.Marshal(u)
|
|
return b
|
|
}
|
|
|
|
// UserSearchFromJson will decode the input and return a User
|
|
func UserSearchFromJson(data io.Reader) *UserSearch {
|
|
us := UserSearch{}
|
|
json.NewDecoder(data).Decode(&us)
|
|
|
|
if us.Limit == 0 {
|
|
us.Limit = USER_SEARCH_DEFAULT_LIMIT
|
|
}
|
|
|
|
return &us
|
|
}
|
|
|
|
// UserSearchOptions captures internal parameters derived from the user's permissions and a
|
|
// UserSearch request.
|
|
type UserSearchOptions struct {
|
|
// IsAdmin tracks whether or not the search is being conducted by an administrator.
|
|
IsAdmin bool
|
|
// AllowEmails allows search to examine the emails of users.
|
|
AllowEmails bool
|
|
// AllowFullNames allows search to examine the full names of users, vs. just usernames and nicknames.
|
|
AllowFullNames bool
|
|
// AllowInactive configures whether or not to return inactive users in the search results.
|
|
AllowInactive bool
|
|
// Narrows the search to the group constrained users
|
|
GroupConstrained bool
|
|
// Limit limits the total number of results returned.
|
|
Limit int
|
|
// Filters for the given role
|
|
Role string
|
|
// Restrict to search in a list of teams and channels
|
|
ViewRestrictions *ViewUsersRestrictions
|
|
// List of allowed channels
|
|
ListOfAllowedChannels []string
|
|
}
|