summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2023-08-05 20:43:19 +0200
committerGitHub <noreply@github.com>2023-08-05 20:43:19 +0200
commit56e7bd01ca09ad52b0c4f48f146a20a4f1b78696 (patch)
treeb1355645342667209263cbd355dc0b4254f1e8fe /vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go
parent9459495484d6e06a3d46de64fccd8d06f7ccc72c (diff)
downloadmatterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.gz
matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.tar.bz2
matterbridge-msglm-56e7bd01ca09ad52b0c4f48f146a20a4f1b78696.zip
Update dependencies and remove old matterclient lib (#2067)HEADmaster
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go')
-rw-r--r--vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go77
1 files changed, 0 insertions, 77 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go b/vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go
deleted file mode 100644
index 0a721eac..00000000
--- a/vendor/github.com/mattermost/mattermost-server/v5/model/user_search.go
+++ /dev/null
@@ -1,77 +0,0 @@
-// 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"`
- InGroupId string `json:"in_group_id"`
- GroupConstrained bool `json:"group_constrained"`
- AllowInactive bool `json:"allow_inactive"`
- WithoutTeam bool `json:"without_team"`
- Limit int `json:"limit"`
- Role string `json:"role"`
- Roles []string `json:"roles"`
- ChannelRoles []string `json:"channel_roles"`
- TeamRoles []string `json:"team_roles"`
-}
-
-// 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
- // Filters for users that have any of the given system roles
- Roles []string
- // Filters for users that have the given channel roles to be used when searching in a channel
- ChannelRoles []string
- // Filters for users that have the given team roles to be used when searching in a team
- TeamRoles []string
- // Restrict to search in a list of teams and channels
- ViewRestrictions *ViewUsersRestrictions
- // List of allowed channels
- ListOfAllowedChannels []string
-}