2020-08-09 22:29:54 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
2016-08-15 16:47:31 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-11-18 17:55:05 +00:00
|
|
|
STATUS_OUT_OF_OFFICE = "ooo"
|
2016-09-17 13:19:18 +00:00
|
|
|
STATUS_OFFLINE = "offline"
|
|
|
|
STATUS_AWAY = "away"
|
2018-02-08 23:11:04 +00:00
|
|
|
STATUS_DND = "dnd"
|
2016-09-17 13:19:18 +00:00
|
|
|
STATUS_ONLINE = "online"
|
2017-03-25 20:04:10 +00:00
|
|
|
STATUS_CACHE_SIZE = SESSION_CACHE_SIZE
|
2016-11-12 21:00:53 +00:00
|
|
|
STATUS_CHANNEL_TIMEOUT = 20000 // 20 seconds
|
|
|
|
STATUS_MIN_UPDATE_TIME = 120000 // 2 minutes
|
2016-08-15 16:47:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Status struct {
|
|
|
|
UserId string `json:"user_id"`
|
|
|
|
Status string `json:"status"`
|
2016-09-17 13:19:18 +00:00
|
|
|
Manual bool `json:"manual"`
|
2016-08-15 16:47:31 +00:00
|
|
|
LastActivityAt int64 `json:"last_activity_at"`
|
2018-11-18 17:55:05 +00:00
|
|
|
ActiveChannel string `json:"active_channel,omitempty" db:"-"`
|
2016-08-15 16:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Status) ToJson() string {
|
2020-08-09 22:29:54 +00:00
|
|
|
oCopy := *o
|
|
|
|
oCopy.ActiveChannel = ""
|
|
|
|
b, _ := json.Marshal(oCopy)
|
2018-11-18 17:55:05 +00:00
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Status) ToClusterJson() string {
|
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
return string(b)
|
2016-08-15 16:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func StatusFromJson(data io.Reader) *Status {
|
2018-11-18 17:55:05 +00:00
|
|
|
var o *Status
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
return o
|
2016-08-15 16:47:31 +00:00
|
|
|
}
|
2017-01-16 22:59:50 +00:00
|
|
|
|
2017-08-16 21:37:37 +00:00
|
|
|
func StatusListToJson(u []*Status) string {
|
2020-08-09 22:29:54 +00:00
|
|
|
uCopy := make([]Status, len(u))
|
|
|
|
for i, s := range u {
|
|
|
|
sCopy := *s
|
|
|
|
sCopy.ActiveChannel = ""
|
|
|
|
uCopy[i] = sCopy
|
2018-11-18 17:55:05 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 22:29:54 +00:00
|
|
|
b, _ := json.Marshal(uCopy)
|
2018-11-18 17:55:05 +00:00
|
|
|
return string(b)
|
2017-08-16 21:37:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func StatusListFromJson(data io.Reader) []*Status {
|
|
|
|
var statuses []*Status
|
2018-11-18 17:55:05 +00:00
|
|
|
json.NewDecoder(data).Decode(&statuses)
|
|
|
|
return statuses
|
2017-08-16 21:37:37 +00:00
|
|
|
}
|
|
|
|
|
2017-01-16 22:59:50 +00:00
|
|
|
func StatusMapToInterfaceMap(statusMap map[string]*Status) map[string]interface{} {
|
|
|
|
interfaceMap := map[string]interface{}{}
|
|
|
|
for _, s := range statusMap {
|
|
|
|
// Omitted statues mean offline
|
|
|
|
if s.Status != STATUS_OFFLINE {
|
|
|
|
interfaceMap[s.UserId] = s.Status
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return interfaceMap
|
|
|
|
}
|