5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 18:22:30 +00:00
matterbridge/vendor/github.com/mattermost/mattermost-server/v5/model/channel_member.go

195 lines
6.1 KiB
Go
Raw Normal View History

2017-08-16 21:37:37 +00:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2020-08-09 22:29:54 +00:00
// See LICENSE.txt for license information.
2016-04-10 21:39:38 +00:00
package model
import (
"encoding/json"
"io"
2018-02-08 23:11:04 +00:00
"net/http"
2016-04-10 21:39:38 +00:00
"strings"
)
const (
2020-08-09 22:29:54 +00:00
CHANNEL_NOTIFY_DEFAULT = "default"
CHANNEL_NOTIFY_ALL = "all"
CHANNEL_NOTIFY_MENTION = "mention"
CHANNEL_NOTIFY_NONE = "none"
CHANNEL_MARK_UNREAD_ALL = "all"
CHANNEL_MARK_UNREAD_MENTION = "mention"
IGNORE_CHANNEL_MENTIONS_DEFAULT = "default"
IGNORE_CHANNEL_MENTIONS_OFF = "off"
IGNORE_CHANNEL_MENTIONS_ON = "on"
IGNORE_CHANNEL_MENTIONS_NOTIFY_PROP = "ignore_channel_mentions"
2016-04-10 21:39:38 +00:00
)
2017-01-16 22:59:50 +00:00
type ChannelUnread struct {
2017-08-16 21:37:37 +00:00
TeamId string `json:"team_id"`
ChannelId string `json:"channel_id"`
MsgCount int64 `json:"msg_count"`
MentionCount int64 `json:"mention_count"`
NotifyProps StringMap `json:"-"`
2017-01-16 22:59:50 +00:00
}
2020-08-09 22:29:54 +00:00
type ChannelUnreadAt struct {
TeamId string `json:"team_id"`
UserId string `json:"user_id"`
ChannelId string `json:"channel_id"`
MsgCount int64 `json:"msg_count"`
MentionCount int64 `json:"mention_count"`
LastViewedAt int64 `json:"last_viewed_at"`
NotifyProps StringMap `json:"-"`
}
2016-04-10 21:39:38 +00:00
type ChannelMember struct {
ChannelId string `json:"channel_id"`
UserId string `json:"user_id"`
Roles string `json:"roles"`
LastViewedAt int64 `json:"last_viewed_at"`
MsgCount int64 `json:"msg_count"`
MentionCount int64 `json:"mention_count"`
NotifyProps StringMap `json:"notify_props"`
LastUpdateAt int64 `json:"last_update_at"`
2020-08-09 22:29:54 +00:00
SchemeGuest bool `json:"scheme_guest"`
SchemeUser bool `json:"scheme_user"`
SchemeAdmin bool `json:"scheme_admin"`
ExplicitRoles string `json:"explicit_roles"`
2016-04-10 21:39:38 +00:00
}
2016-11-12 21:00:53 +00:00
type ChannelMembers []ChannelMember
type ChannelMemberForExport struct {
ChannelMember
ChannelName string
2020-08-09 22:29:54 +00:00
Username string
}
2016-11-12 21:00:53 +00:00
func (o *ChannelMembers) ToJson() string {
if b, err := json.Marshal(o); err != nil {
return "[]"
} else {
return string(b)
}
}
2017-08-16 21:37:37 +00:00
func (o *ChannelUnread) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2017-08-16 21:37:37 +00:00
}
2020-08-09 22:29:54 +00:00
func (o *ChannelUnreadAt) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
}
2016-11-12 21:00:53 +00:00
func ChannelMembersFromJson(data io.Reader) *ChannelMembers {
var o *ChannelMembers
json.NewDecoder(data).Decode(&o)
return o
2016-11-12 21:00:53 +00:00
}
2017-08-16 21:37:37 +00:00
func ChannelUnreadFromJson(data io.Reader) *ChannelUnread {
var o *ChannelUnread
json.NewDecoder(data).Decode(&o)
return o
2017-08-16 21:37:37 +00:00
}
2020-08-09 22:29:54 +00:00
func ChannelUnreadAtFromJson(data io.Reader) *ChannelUnreadAt {
var o *ChannelUnreadAt
json.NewDecoder(data).Decode(&o)
return o
}
2016-04-10 21:39:38 +00:00
func (o *ChannelMember) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2016-04-10 21:39:38 +00:00
}
func ChannelMemberFromJson(data io.Reader) *ChannelMember {
var o *ChannelMember
json.NewDecoder(data).Decode(&o)
return o
2016-04-10 21:39:38 +00:00
}
func (o *ChannelMember) IsValid() *AppError {
2020-08-09 22:29:54 +00:00
if !IsValidId(o.ChannelId) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.channel_id.app_error", nil, "", http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
2020-08-09 22:29:54 +00:00
if !IsValidId(o.UserId) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.user_id.app_error", nil, "", http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
2017-03-25 20:04:10 +00:00
notifyLevel := o.NotifyProps[DESKTOP_NOTIFY_PROP]
2016-04-10 21:39:38 +00:00
if len(notifyLevel) > 20 || !IsChannelNotifyLevelValid(notifyLevel) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.notify_level.app_error", nil, "notify_level="+notifyLevel, http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
2017-03-25 20:04:10 +00:00
markUnreadLevel := o.NotifyProps[MARK_UNREAD_NOTIFY_PROP]
2016-04-10 21:39:38 +00:00
if len(markUnreadLevel) > 20 || !IsChannelMarkUnreadLevelValid(markUnreadLevel) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.unread_level.app_error", nil, "mark_unread_level="+markUnreadLevel, http.StatusBadRequest)
2016-04-10 21:39:38 +00:00
}
2017-03-25 20:04:10 +00:00
if pushLevel, ok := o.NotifyProps[PUSH_NOTIFY_PROP]; ok {
if len(pushLevel) > 20 || !IsChannelNotifyLevelValid(pushLevel) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.push_level.app_error", nil, "push_notification_level="+pushLevel, http.StatusBadRequest)
2017-03-25 20:04:10 +00:00
}
}
if sendEmail, ok := o.NotifyProps[EMAIL_NOTIFY_PROP]; ok {
if len(sendEmail) > 20 || !IsSendEmailValid(sendEmail) {
2018-02-08 23:11:04 +00:00
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.email_value.app_error", nil, "push_notification_level="+sendEmail, http.StatusBadRequest)
2017-03-25 20:04:10 +00:00
}
}
2020-08-09 22:29:54 +00:00
if ignoreChannelMentions, ok := o.NotifyProps[IGNORE_CHANNEL_MENTIONS_NOTIFY_PROP]; ok {
if len(ignoreChannelMentions) > 40 || !IsIgnoreChannelMentionsValid(ignoreChannelMentions) {
return NewAppError("ChannelMember.IsValid", "model.channel_member.is_valid.ignore_channel_mentions_value.app_error", nil, "ignore_channel_mentions="+ignoreChannelMentions, http.StatusBadRequest)
}
}
2016-04-10 21:39:38 +00:00
return nil
}
func (o *ChannelMember) PreSave() {
o.LastUpdateAt = GetMillis()
}
func (o *ChannelMember) PreUpdate() {
o.LastUpdateAt = GetMillis()
}
2016-11-12 21:00:53 +00:00
func (o *ChannelMember) GetRoles() []string {
return strings.Fields(o.Roles)
}
2016-04-10 21:39:38 +00:00
func IsChannelNotifyLevelValid(notifyLevel string) bool {
return notifyLevel == CHANNEL_NOTIFY_DEFAULT ||
notifyLevel == CHANNEL_NOTIFY_ALL ||
notifyLevel == CHANNEL_NOTIFY_MENTION ||
notifyLevel == CHANNEL_NOTIFY_NONE
}
func IsChannelMarkUnreadLevelValid(markUnreadLevel string) bool {
return markUnreadLevel == CHANNEL_MARK_UNREAD_ALL || markUnreadLevel == CHANNEL_MARK_UNREAD_MENTION
}
2017-03-25 20:04:10 +00:00
func IsSendEmailValid(sendEmail string) bool {
return sendEmail == CHANNEL_NOTIFY_DEFAULT || sendEmail == "true" || sendEmail == "false"
}
2020-08-09 22:29:54 +00:00
func IsIgnoreChannelMentionsValid(ignoreChannelMentions string) bool {
return ignoreChannelMentions == IGNORE_CHANNEL_MENTIONS_ON || ignoreChannelMentions == IGNORE_CHANNEL_MENTIONS_OFF || ignoreChannelMentions == IGNORE_CHANNEL_MENTIONS_DEFAULT
}
2016-04-10 21:39:38 +00:00
func GetDefaultChannelNotifyProps() StringMap {
return StringMap{
2020-08-09 22:29:54 +00:00
DESKTOP_NOTIFY_PROP: CHANNEL_NOTIFY_DEFAULT,
MARK_UNREAD_NOTIFY_PROP: CHANNEL_MARK_UNREAD_ALL,
PUSH_NOTIFY_PROP: CHANNEL_NOTIFY_DEFAULT,
EMAIL_NOTIFY_PROP: CHANNEL_NOTIFY_DEFAULT,
IGNORE_CHANNEL_MENTIONS_NOTIFY_PROP: IGNORE_CHANNEL_MENTIONS_DEFAULT,
2016-04-10 21:39:38 +00:00
}
}