mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Create the system console setting and send to webapp
* MI-1145: Add custom status APIs
* MI-1145 Add slash commands to set and clear status
* Add validation for custom status API
* Trim custom status message
* Code refactoring
- Run gofmt
- Rename constants
* Remove sendUserUpdated webhook event
* Fix recent custom status length
* Update error conditions
* Disable /status slash command when config setting is off
* MI-1155: Create the feature flag for custom status APIs and slash commands
* Move recent custom statuses to user preferences (#7)
* Move recent custom statuses to user preferences
* Code refactoring and feedback changes
* Update slash command text and emoji regex
* Make the custom status feature flag off by default
* Update SetCustomStatus, handle recents not set better
* Update status codes
* Update slash command handling
* Add telementry settings
* Fix i18n order
* Revert "Fix i18n order"
This reverts commit 499f7eaca8.
* Update i18n strings
104 lines
2.1 KiB
Go
104 lines
2.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
const (
|
|
UserPropsKeyCustomStatus = "customStatus"
|
|
|
|
CustomStatusTextMaxRunes = 100
|
|
MaxRecentCustomStatuses = 5
|
|
)
|
|
|
|
type CustomStatus struct {
|
|
Emoji string `json:"emoji"`
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
func (cs *CustomStatus) TrimMessage() {
|
|
runes := []rune(cs.Text)
|
|
if len(runes) > CustomStatusTextMaxRunes {
|
|
cs.Text = string(runes[:CustomStatusTextMaxRunes])
|
|
}
|
|
}
|
|
|
|
func (cs *CustomStatus) ToJson() string {
|
|
csCopy := *cs
|
|
b, _ := json.Marshal(csCopy)
|
|
return string(b)
|
|
}
|
|
|
|
func CustomStatusFromJson(data io.Reader) *CustomStatus {
|
|
var cs *CustomStatus
|
|
_ = json.NewDecoder(data).Decode(&cs)
|
|
return cs
|
|
}
|
|
|
|
type RecentCustomStatuses []CustomStatus
|
|
|
|
func (rcs *RecentCustomStatuses) Contains(cs *CustomStatus) bool {
|
|
var csJSON = cs.ToJson()
|
|
|
|
// status is empty
|
|
if cs == nil || csJSON == "" || (cs.Emoji == "" && cs.Text == "") {
|
|
return false
|
|
}
|
|
|
|
for _, status := range *rcs {
|
|
if status.ToJson() == csJSON {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (rcs *RecentCustomStatuses) Add(cs *CustomStatus) *RecentCustomStatuses {
|
|
newRCS := (*rcs)[:0]
|
|
|
|
// if same `text` exists in existing recent custom statuses, modify existing status
|
|
for _, status := range *rcs {
|
|
if status.Text != cs.Text {
|
|
newRCS = append(newRCS, status)
|
|
}
|
|
}
|
|
newRCS = append(RecentCustomStatuses{*cs}, newRCS...)
|
|
if len(newRCS) > MaxRecentCustomStatuses {
|
|
newRCS = newRCS[:MaxRecentCustomStatuses]
|
|
}
|
|
return &newRCS
|
|
}
|
|
|
|
func (rcs *RecentCustomStatuses) Remove(cs *CustomStatus) *RecentCustomStatuses {
|
|
var csJSON = cs.ToJson()
|
|
if csJSON == "" || (cs.Emoji == "" && cs.Text == "") {
|
|
return rcs
|
|
}
|
|
|
|
newRCS := (*rcs)[:0]
|
|
for _, status := range *rcs {
|
|
if status.ToJson() != csJSON {
|
|
newRCS = append(newRCS, status)
|
|
}
|
|
}
|
|
|
|
return &newRCS
|
|
}
|
|
|
|
func (rcs *RecentCustomStatuses) ToJson() string {
|
|
rcsCopy := *rcs
|
|
b, _ := json.Marshal(rcsCopy)
|
|
return string(b)
|
|
}
|
|
|
|
func RecentCustomStatusesFromJson(data io.Reader) *RecentCustomStatuses {
|
|
var rcs *RecentCustomStatuses
|
|
_ = json.NewDecoder(data).Decode(&rcs)
|
|
return rcs
|
|
}
|