2016-04-10 21:39:38 +00:00
|
|
|
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2016-08-15 16:47:31 +00:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2016-04-10 21:39:38 +00:00
|
|
|
"unicode/utf8"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
PREFERENCE_CATEGORY_DIRECT_CHANNEL_SHOW = "direct_channel_show"
|
|
|
|
PREFERENCE_CATEGORY_TUTORIAL_STEPS = "tutorial_step"
|
|
|
|
PREFERENCE_CATEGORY_ADVANCED_SETTINGS = "advanced_settings"
|
2016-08-15 16:47:31 +00:00
|
|
|
PREFERENCE_CATEGORY_FLAGGED_POST = "flagged_post"
|
2016-04-10 21:39:38 +00:00
|
|
|
|
2016-09-17 13:19:18 +00:00
|
|
|
PREFERENCE_CATEGORY_DISPLAY_SETTINGS = "display_settings"
|
|
|
|
PREFERENCE_NAME_COLLAPSE_SETTING = "collapse_previews"
|
|
|
|
PREFERENCE_NAME_DISPLAY_NAME_FORMAT = "name_format"
|
|
|
|
PREFERENCE_VALUE_DISPLAY_NAME_NICKNAME = "nickname_full_name"
|
|
|
|
PREFERENCE_VALUE_DISPLAY_NAME_FULL = "full_name"
|
|
|
|
PREFERENCE_VALUE_DISPLAY_NAME_USERNAME = "username"
|
|
|
|
PREFERENCE_DEFAULT_DISPLAY_NAME_FORMAT = PREFERENCE_VALUE_DISPLAY_NAME_USERNAME
|
2016-06-23 18:28:05 +00:00
|
|
|
|
2016-08-15 16:47:31 +00:00
|
|
|
PREFERENCE_CATEGORY_THEME = "theme"
|
|
|
|
// the name for theme props is the team id
|
|
|
|
|
|
|
|
PREFERENCE_CATEGORY_AUTHORIZED_OAUTH_APP = "oauth_app"
|
|
|
|
// the name for oauth_app is the client_id and value is the current scope
|
|
|
|
|
2016-04-10 21:39:38 +00:00
|
|
|
PREFERENCE_CATEGORY_LAST = "last"
|
|
|
|
PREFERENCE_NAME_LAST_CHANNEL = "channel"
|
2016-09-17 13:19:18 +00:00
|
|
|
|
|
|
|
PREFERENCE_CATEGORY_NOTIFICATIONS = "notifications"
|
|
|
|
PREFERENCE_NAME_EMAIL_INTERVAL = "email_interval"
|
|
|
|
PREFERENCE_DEFAULT_EMAIL_INTERVAL = "30" // default to match the interval of the "immediate" setting (ie 30 seconds)
|
2016-04-10 21:39:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Preference struct {
|
|
|
|
UserId string `json:"user_id"`
|
|
|
|
Category string `json:"category"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Value string `json:"value"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Preference) ToJson() string {
|
|
|
|
b, err := json.Marshal(o)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
} else {
|
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func PreferenceFromJson(data io.Reader) *Preference {
|
|
|
|
decoder := json.NewDecoder(data)
|
|
|
|
var o Preference
|
|
|
|
err := decoder.Decode(&o)
|
|
|
|
if err == nil {
|
|
|
|
return &o
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Preference) IsValid() *AppError {
|
|
|
|
if len(o.UserId) != 26 {
|
|
|
|
return NewLocAppError("Preference.IsValid", "model.preference.is_valid.id.app_error", nil, "user_id="+o.UserId)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(o.Category) == 0 || len(o.Category) > 32 {
|
|
|
|
return NewLocAppError("Preference.IsValid", "model.preference.is_valid.category.app_error", nil, "category="+o.Category)
|
|
|
|
}
|
|
|
|
|
2016-08-15 16:47:31 +00:00
|
|
|
if len(o.Name) > 32 {
|
2016-04-10 21:39:38 +00:00
|
|
|
return NewLocAppError("Preference.IsValid", "model.preference.is_valid.name.app_error", nil, "name="+o.Name)
|
|
|
|
}
|
|
|
|
|
2016-08-15 16:47:31 +00:00
|
|
|
if utf8.RuneCountInString(o.Value) > 2000 {
|
2016-04-10 21:39:38 +00:00
|
|
|
return NewLocAppError("Preference.IsValid", "model.preference.is_valid.value.app_error", nil, "value="+o.Value)
|
|
|
|
}
|
|
|
|
|
2016-08-15 16:47:31 +00:00
|
|
|
if o.Category == PREFERENCE_CATEGORY_THEME {
|
|
|
|
var unused map[string]string
|
|
|
|
if err := json.NewDecoder(strings.NewReader(o.Value)).Decode(&unused); err != nil {
|
|
|
|
return NewLocAppError("Preference.IsValid", "model.preference.is_valid.theme.app_error", nil, "value="+o.Value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-10 21:39:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
2016-08-15 16:47:31 +00:00
|
|
|
|
|
|
|
func (o *Preference) PreUpdate() {
|
|
|
|
if o.Category == PREFERENCE_CATEGORY_THEME {
|
|
|
|
// decode the value of theme (a map of strings to string) and eliminate any invalid values
|
|
|
|
var props map[string]string
|
|
|
|
if err := json.NewDecoder(strings.NewReader(o.Value)).Decode(&props); err != nil {
|
|
|
|
// just continue, the invalid preference value should get caught by IsValid before saving
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
colorPattern := regexp.MustCompile(`^#[0-9a-fA-F]{3}([0-9a-fA-F]{3})?$`)
|
|
|
|
|
|
|
|
// blank out any invalid theme values
|
|
|
|
for name, value := range props {
|
|
|
|
if name == "image" || name == "type" || name == "codeTheme" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if !colorPattern.MatchString(value) {
|
|
|
|
props[name] = "#ffffff"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if b, err := json.Marshal(props); err == nil {
|
|
|
|
o.Value = string(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|