2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
2016-07-18 11:10:03 -04:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"io"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
2018-04-12 12:02:36 -07:00
|
|
|
STATUS_OUT_OF_OFFICE = "ooo"
|
2016-09-02 12:50:15 -04:00
|
|
|
STATUS_OFFLINE = "offline"
|
|
|
|
|
STATUS_AWAY = "away"
|
2017-10-25 17:51:13 +02:00
|
|
|
STATUS_DND = "dnd"
|
2016-09-02 12:50:15 -04:00
|
|
|
STATUS_ONLINE = "online"
|
2017-02-17 08:21:06 -05:00
|
|
|
STATUS_CACHE_SIZE = SESSION_CACHE_SIZE
|
2016-10-19 14:49:25 -04:00
|
|
|
STATUS_CHANNEL_TIMEOUT = 20000 // 20 seconds
|
|
|
|
|
STATUS_MIN_UPDATE_TIME = 120000 // 2 minutes
|
2016-07-18 11:10:03 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Status struct {
|
|
|
|
|
UserId string `json:"user_id"`
|
|
|
|
|
Status string `json:"status"`
|
2016-08-31 06:24:14 -07:00
|
|
|
Manual bool `json:"manual"`
|
2016-07-18 11:10:03 -04:00
|
|
|
LastActivityAt int64 `json:"last_activity_at"`
|
2018-06-21 13:42:20 -04:00
|
|
|
ActiveChannel string `json:"active_channel,omitempty" db:"-"`
|
2016-07-18 11:10:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Status) ToJson() string {
|
2018-06-21 13:42:20 -04:00
|
|
|
tempChannelId := o.ActiveChannel
|
|
|
|
|
o.ActiveChannel = ""
|
|
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
|
o.ActiveChannel = tempChannelId
|
|
|
|
|
return string(b)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Status) ToClusterJson() string {
|
2018-01-30 17:23:00 -06:00
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
|
return string(b)
|
2016-07-18 11:10:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func StatusFromJson(data io.Reader) *Status {
|
2018-01-30 17:23:00 -06:00
|
|
|
var o *Status
|
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
|
return o
|
2016-07-18 11:10:03 -04:00
|
|
|
}
|
2017-01-10 11:38:03 -05:00
|
|
|
|
2017-03-30 17:09:39 +02:00
|
|
|
func StatusListToJson(u []*Status) string {
|
2018-06-21 13:42:20 -04:00
|
|
|
activeChannels := make([]string, len(u))
|
|
|
|
|
for index, s := range u {
|
|
|
|
|
activeChannels[index] = s.ActiveChannel
|
|
|
|
|
s.ActiveChannel = ""
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-30 17:23:00 -06:00
|
|
|
b, _ := json.Marshal(u)
|
2018-06-21 13:42:20 -04:00
|
|
|
|
|
|
|
|
for index, s := range u {
|
|
|
|
|
s.ActiveChannel = activeChannels[index]
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-30 17:23:00 -06:00
|
|
|
return string(b)
|
2017-03-30 17:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func StatusListFromJson(data io.Reader) []*Status {
|
|
|
|
|
var statuses []*Status
|
2018-01-30 17:23:00 -06:00
|
|
|
json.NewDecoder(data).Decode(&statuses)
|
|
|
|
|
return statuses
|
2017-03-30 17:09:39 +02:00
|
|
|
}
|
|
|
|
|
|
2017-01-10 11:38:03 -05: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
|
|
|
|
|
}
|