mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
119 lines
2.9 KiB
Go
119 lines
2.9 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
USERNAME = "Username"
|
|
)
|
|
|
|
//msgp:tuple TeamMember
|
|
// This struct's serializer methods are auto-generated. If a new field is added/removed,
|
|
// please run make gen-serialized.
|
|
type TeamMember struct {
|
|
TeamId string `json:"team_id"`
|
|
UserId string `json:"user_id"`
|
|
Roles string `json:"roles"`
|
|
DeleteAt int64 `json:"delete_at"`
|
|
SchemeGuest bool `json:"scheme_guest"`
|
|
SchemeUser bool `json:"scheme_user"`
|
|
SchemeAdmin bool `json:"scheme_admin"`
|
|
ExplicitRoles string `json:"explicit_roles"`
|
|
}
|
|
|
|
//msgp:ignore TeamUnread
|
|
type TeamUnread struct {
|
|
TeamId string `json:"team_id"`
|
|
MsgCount int64 `json:"msg_count"`
|
|
MentionCount int64 `json:"mention_count"`
|
|
MentionCountRoot int64 `json:"mention_count_root"`
|
|
MsgCountRoot int64 `json:"msg_count_root"`
|
|
ThreadCount int64 `json:"thread_count"`
|
|
ThreadMentionCount int64 `json:"thread_mention_count"`
|
|
}
|
|
|
|
//msgp:ignore TeamMemberForExport
|
|
type TeamMemberForExport struct {
|
|
TeamMember
|
|
TeamName string
|
|
}
|
|
|
|
//msgp:ignore TeamMemberWithError
|
|
type TeamMemberWithError struct {
|
|
UserId string `json:"user_id"`
|
|
Member *TeamMember `json:"member"`
|
|
Error *AppError `json:"error"`
|
|
}
|
|
|
|
//msgp:ignore EmailInviteWithError
|
|
type EmailInviteWithError struct {
|
|
Email string `json:"email"`
|
|
Error *AppError `json:"error"`
|
|
}
|
|
|
|
//msgp:ignore TeamMembersGetOptions
|
|
type TeamMembersGetOptions struct {
|
|
// Sort the team members. Accepts "Username", but defaults to "Id".
|
|
Sort string
|
|
|
|
// If true, exclude team members whose corresponding user is deleted.
|
|
ExcludeDeletedUsers bool
|
|
|
|
// Restrict to search in a list of teams and channels
|
|
ViewRestrictions *ViewUsersRestrictions
|
|
}
|
|
|
|
func EmailInviteWithErrorToEmails(o []*EmailInviteWithError) []string {
|
|
var ret []string
|
|
for _, o := range o {
|
|
if o.Error == nil {
|
|
ret = append(ret, o.Email)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func EmailInviteWithErrorToString(o *EmailInviteWithError) string {
|
|
return fmt.Sprintf("%s:%s", o.Email, o.Error.Error())
|
|
}
|
|
|
|
func TeamMembersWithErrorToTeamMembers(o []*TeamMemberWithError) []*TeamMember {
|
|
var ret []*TeamMember
|
|
for _, o := range o {
|
|
if o.Error == nil {
|
|
ret = append(ret, o.Member)
|
|
}
|
|
}
|
|
return ret
|
|
}
|
|
|
|
func TeamMemberWithErrorToString(o *TeamMemberWithError) string {
|
|
return fmt.Sprintf("%s:%s", o.UserId, o.Error.Error())
|
|
}
|
|
|
|
func (o *TeamMember) IsValid() *AppError {
|
|
|
|
if !IsValidId(o.TeamId) {
|
|
return NewAppError("TeamMember.IsValid", "model.team_member.is_valid.team_id.app_error", nil, "", http.StatusBadRequest)
|
|
}
|
|
|
|
if !IsValidId(o.UserId) {
|
|
return NewAppError("TeamMember.IsValid", "model.team_member.is_valid.user_id.app_error", nil, "", http.StatusBadRequest)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (o *TeamMember) PreUpdate() {
|
|
}
|
|
|
|
func (o *TeamMember) GetRoles() []string {
|
|
return strings.Fields(o.Roles)
|
|
}
|