mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* 7494 added the role to the user search filter * 7494 changed the getUser function to accept the options * added the role filter for the getAllProfiles method * 7494 added the Inactive filter for AllProfiles * 7494 refactored the where clause generation * 7494 added the roles and inactive filters for inTeam Query * 7494 fixed the review comments
61 lines
1.7 KiB
Go
61 lines
1.7 KiB
Go
// Copyright (c) 2016-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"`
|
|
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 {
|
|
var 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
|
|
// Limit limits the total number of results returned.
|
|
Limit int
|
|
// Filters for the given role
|
|
Role string
|
|
}
|