PLT-5012 Combine updateLastViewedAt, setLastViewedAt and setActiveChannel into a single API (#4840)
* Combine updateLastViewedAt, setLastViewedAt and setActiveChannel into a single API * Remove preference DB writes
Этот коммит содержится в:
коммит произвёл
Christopher Speller
родитель
139cb52c99
Коммит
ba6e370ca7
168
api/channel.go
168
api/channel.go
@@ -25,6 +25,7 @@ func InitChannel() {
|
|||||||
BaseRoutes.Channels.Handle("/counts", ApiUserRequired(getChannelCounts)).Methods("GET")
|
BaseRoutes.Channels.Handle("/counts", ApiUserRequired(getChannelCounts)).Methods("GET")
|
||||||
BaseRoutes.Channels.Handle("/members", ApiUserRequired(getMyChannelMembers)).Methods("GET")
|
BaseRoutes.Channels.Handle("/members", ApiUserRequired(getMyChannelMembers)).Methods("GET")
|
||||||
BaseRoutes.Channels.Handle("/create", ApiUserRequired(createChannel)).Methods("POST")
|
BaseRoutes.Channels.Handle("/create", ApiUserRequired(createChannel)).Methods("POST")
|
||||||
|
BaseRoutes.Channels.Handle("/view", ApiUserRequired(viewChannel)).Methods("POST")
|
||||||
BaseRoutes.Channels.Handle("/create_direct", ApiUserRequired(createDirectChannel)).Methods("POST")
|
BaseRoutes.Channels.Handle("/create_direct", ApiUserRequired(createDirectChannel)).Methods("POST")
|
||||||
BaseRoutes.Channels.Handle("/update", ApiUserRequired(updateChannel)).Methods("POST")
|
BaseRoutes.Channels.Handle("/update", ApiUserRequired(updateChannel)).Methods("POST")
|
||||||
BaseRoutes.Channels.Handle("/update_header", ApiUserRequired(updateChannelHeader)).Methods("POST")
|
BaseRoutes.Channels.Handle("/update_header", ApiUserRequired(updateChannelHeader)).Methods("POST")
|
||||||
@@ -43,9 +44,6 @@ func InitChannel() {
|
|||||||
BaseRoutes.NeedChannel.Handle("/delete", ApiUserRequired(deleteChannel)).Methods("POST")
|
BaseRoutes.NeedChannel.Handle("/delete", ApiUserRequired(deleteChannel)).Methods("POST")
|
||||||
BaseRoutes.NeedChannel.Handle("/add", ApiUserRequired(addMember)).Methods("POST")
|
BaseRoutes.NeedChannel.Handle("/add", ApiUserRequired(addMember)).Methods("POST")
|
||||||
BaseRoutes.NeedChannel.Handle("/remove", ApiUserRequired(removeMember)).Methods("POST")
|
BaseRoutes.NeedChannel.Handle("/remove", ApiUserRequired(removeMember)).Methods("POST")
|
||||||
BaseRoutes.NeedChannel.Handle("/update_last_viewed_at", ApiUserRequired(updateLastViewedAt)).Methods("POST")
|
|
||||||
BaseRoutes.NeedChannel.Handle("/set_last_viewed_at", ApiUserRequired(setLastViewedAt)).Methods("POST")
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func createChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
func createChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -873,103 +871,6 @@ func deleteChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func setLastViewedAt(c *Context, w http.ResponseWriter, r *http.Request) {
|
|
||||||
params := mux.Vars(r)
|
|
||||||
id := params["channel_id"]
|
|
||||||
|
|
||||||
data := model.StringInterfaceFromJson(r.Body)
|
|
||||||
newLastViewedAt := int64(data["last_viewed_at"].(float64))
|
|
||||||
|
|
||||||
Srv.Store.Channel().SetLastViewedAt(id, c.Session.UserId, newLastViewedAt)
|
|
||||||
|
|
||||||
chanPref := model.Preference{
|
|
||||||
UserId: c.Session.UserId,
|
|
||||||
Category: c.TeamId,
|
|
||||||
Name: model.PREFERENCE_NAME_LAST_CHANNEL,
|
|
||||||
Value: id,
|
|
||||||
}
|
|
||||||
|
|
||||||
teamPref := model.Preference{
|
|
||||||
UserId: c.Session.UserId,
|
|
||||||
Category: model.PREFERENCE_CATEGORY_LAST,
|
|
||||||
Name: model.PREFERENCE_NAME_LAST_TEAM,
|
|
||||||
Value: c.TeamId,
|
|
||||||
}
|
|
||||||
|
|
||||||
Srv.Store.Preference().Save(&model.Preferences{teamPref, chanPref})
|
|
||||||
|
|
||||||
message := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_CHANNEL_VIEWED, c.TeamId, "", c.Session.UserId, nil)
|
|
||||||
message.Add("channel_id", id)
|
|
||||||
|
|
||||||
go Publish(message)
|
|
||||||
|
|
||||||
result := make(map[string]string)
|
|
||||||
result["id"] = id
|
|
||||||
w.Write([]byte(model.MapToJson(result)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func updateLastViewedAt(c *Context, w http.ResponseWriter, r *http.Request) {
|
|
||||||
params := mux.Vars(r)
|
|
||||||
id := params["channel_id"]
|
|
||||||
|
|
||||||
data := model.StringInterfaceFromJson(r.Body)
|
|
||||||
|
|
||||||
var active bool
|
|
||||||
var ok bool
|
|
||||||
if active, ok = data["active"].(bool); !ok {
|
|
||||||
active = true
|
|
||||||
}
|
|
||||||
|
|
||||||
doClearPush := false
|
|
||||||
if *utils.Cfg.EmailSettings.SendPushNotifications && !c.Session.IsMobileApp() && active {
|
|
||||||
if result := <-Srv.Store.User().GetUnreadCountForChannel(c.Session.UserId, id); result.Err != nil {
|
|
||||||
l4g.Error(utils.T("api.channel.update_last_viewed_at.get_unread_count_for_channel.error"), c.Session.UserId, id, result.Err.Error())
|
|
||||||
} else {
|
|
||||||
if result.Data.(int64) > 0 {
|
|
||||||
doClearPush = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
go func() {
|
|
||||||
if err := SetActiveChannel(c.Session.UserId, id); err != nil {
|
|
||||||
l4g.Error(err.Error())
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
Srv.Store.Channel().UpdateLastViewedAt(id, c.Session.UserId)
|
|
||||||
|
|
||||||
// Must be after update so that unread count is correct
|
|
||||||
if doClearPush {
|
|
||||||
go clearPushNotification(c.Session.UserId, id)
|
|
||||||
}
|
|
||||||
|
|
||||||
chanPref := model.Preference{
|
|
||||||
UserId: c.Session.UserId,
|
|
||||||
Category: c.TeamId,
|
|
||||||
Name: model.PREFERENCE_NAME_LAST_CHANNEL,
|
|
||||||
Value: id,
|
|
||||||
}
|
|
||||||
|
|
||||||
teamPref := model.Preference{
|
|
||||||
UserId: c.Session.UserId,
|
|
||||||
Category: model.PREFERENCE_CATEGORY_LAST,
|
|
||||||
Name: model.PREFERENCE_NAME_LAST_TEAM,
|
|
||||||
Value: c.TeamId,
|
|
||||||
}
|
|
||||||
|
|
||||||
Srv.Store.Preference().Save(&model.Preferences{teamPref, chanPref})
|
|
||||||
|
|
||||||
message := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_CHANNEL_VIEWED, c.TeamId, "", c.Session.UserId, nil)
|
|
||||||
message.Add("channel_id", id)
|
|
||||||
|
|
||||||
go Publish(message)
|
|
||||||
|
|
||||||
result := make(map[string]string)
|
|
||||||
result["id"] = id
|
|
||||||
w.Write([]byte(model.MapToJson(result)))
|
|
||||||
}
|
|
||||||
|
|
||||||
func getChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
func getChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
params := mux.Vars(r)
|
params := mux.Vars(r)
|
||||||
id := params["channel_id"]
|
id := params["channel_id"]
|
||||||
@@ -1001,7 +902,27 @@ func getChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
w.Write([]byte(data.ToJson()))
|
w.Write([]byte(data.ToJson()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func SetActiveChannel(userId string, channelId string) *model.AppError {
|
||||||
|
status, err := GetStatus(userId)
|
||||||
|
if err != nil {
|
||||||
|
status = &model.Status{userId, model.STATUS_ONLINE, false, model.GetMillis(), channelId}
|
||||||
|
} else {
|
||||||
|
status.ActiveChannel = channelId
|
||||||
|
if !status.Manual {
|
||||||
|
status.Status = model.STATUS_ONLINE
|
||||||
|
}
|
||||||
|
status.LastActivityAt = model.GetMillis()
|
||||||
|
}
|
||||||
|
|
||||||
|
AddStatusCache(status)
|
||||||
|
|
||||||
|
if result := <-Srv.Store.Status().SaveOrUpdate(status); result.Err != nil {
|
||||||
|
return result.Err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func getChannelByName(c *Context, w http.ResponseWriter, r *http.Request) {
|
func getChannelByName(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -1332,3 +1253,50 @@ func autocompleteChannels(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
w.Write([]byte(channels.ToJson()))
|
w.Write([]byte(channels.ToJson()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func viewChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
view := model.ChannelViewFromJson(r.Body)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
if err := SetActiveChannel(c.Session.UserId, view.ChannelId); err != nil {
|
||||||
|
l4g.Error(err.Error())
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if len(view.ChannelId) > 0 {
|
||||||
|
|
||||||
|
if view.Time == 0 {
|
||||||
|
if result := <-Srv.Store.Channel().UpdateLastViewedAt(view.ChannelId, c.Session.UserId); result.Err != nil {
|
||||||
|
c.Err = result.Err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if result := <-Srv.Store.Channel().SetLastViewedAt(view.ChannelId, c.Session.UserId, view.Time); result.Err != nil {
|
||||||
|
c.Err = result.Err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(view.PrevChannelId) > 0 {
|
||||||
|
Srv.Store.Channel().UpdateLastViewedAt(view.PrevChannelId, c.Session.UserId)
|
||||||
|
|
||||||
|
// Only clear push notifications if a channel switch occured
|
||||||
|
if *utils.Cfg.EmailSettings.SendPushNotifications && !c.Session.IsMobileApp() {
|
||||||
|
go func() {
|
||||||
|
if result := <-Srv.Store.User().GetUnreadCountForChannel(c.Session.UserId, view.ChannelId); result.Err != nil {
|
||||||
|
l4g.Error(utils.T("api.channel.update_last_viewed_at.get_unread_count_for_channel.error"), c.Session.UserId, view.ChannelId, result.Err.Error())
|
||||||
|
} else {
|
||||||
|
if result.Data.(int64) > 0 {
|
||||||
|
clearPushNotification(c.Session.UserId, view.ChannelId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
message := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_CHANNEL_VIEWED, c.TeamId, "", c.Session.UserId, nil)
|
||||||
|
message.Add("channel_id", view.ChannelId)
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnStatusOK(w)
|
||||||
|
}
|
||||||
|
|||||||
@@ -724,8 +724,9 @@ func TestGetChannel(t *testing.T) {
|
|||||||
t.Fatal("cache should be empty")
|
t.Fatal("cache should be empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := Client.UpdateLastViewedAt(channel2.Id, true); err != nil {
|
view := model.ChannelView{ChannelId: channel2.Id, PrevChannelId: channel1.Id}
|
||||||
t.Fatal(err)
|
if _, resp := Client.ViewChannel(view); resp.Error != nil {
|
||||||
|
t.Fatal(resp.Error)
|
||||||
}
|
}
|
||||||
|
|
||||||
if resp, err := Client.GetChannel(channel1.Id, ""); err != nil {
|
if resp, err := Client.GetChannel(channel1.Id, ""); err != nil {
|
||||||
@@ -1735,3 +1736,44 @@ func TestGetChannelByName(t *testing.T) {
|
|||||||
t.Fatal("Should fail due to not enough permissions")
|
t.Fatal("Should fail due to not enough permissions")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestViewChannel(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
Client := th.BasicClient
|
||||||
|
|
||||||
|
view := model.ChannelView{
|
||||||
|
ChannelId: th.BasicChannel.Id,
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, resp := Client.ViewChannel(view); resp.Error != nil {
|
||||||
|
t.Fatal(resp.Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
view.PrevChannelId = th.BasicChannel.Id
|
||||||
|
|
||||||
|
if _, resp := Client.ViewChannel(view); resp.Error != nil {
|
||||||
|
t.Fatal(resp.Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
view.PrevChannelId = ""
|
||||||
|
view.Time = 1234567890
|
||||||
|
|
||||||
|
if _, resp := Client.ViewChannel(view); resp.Error != nil {
|
||||||
|
t.Fatal(resp.Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
view.PrevChannelId = "junk"
|
||||||
|
view.Time = 0
|
||||||
|
|
||||||
|
if _, resp := Client.ViewChannel(view); resp.Error != nil {
|
||||||
|
t.Fatal(resp.Error)
|
||||||
|
}
|
||||||
|
|
||||||
|
rdata := Client.Must(Client.GetChannel(th.BasicChannel.Id, "")).Data.(*model.ChannelData)
|
||||||
|
|
||||||
|
if rdata.Channel.TotalMsgCount != rdata.Member.MsgCount {
|
||||||
|
t.Log(rdata.Channel.TotalMsgCount)
|
||||||
|
t.Log(rdata.Member.MsgCount)
|
||||||
|
t.Fatal("message counts don't match")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
l4g "github.com/alecthomas/log4go"
|
l4g "github.com/alecthomas/log4go"
|
||||||
|
"github.com/gorilla/mux"
|
||||||
"github.com/mattermost/platform/model"
|
"github.com/mattermost/platform/model"
|
||||||
"github.com/mattermost/platform/utils"
|
"github.com/mattermost/platform/utils"
|
||||||
)
|
)
|
||||||
@@ -16,7 +17,15 @@ import (
|
|||||||
func InitDeprecated() {
|
func InitDeprecated() {
|
||||||
l4g.Debug(utils.T("api.channel.init.debug"))
|
l4g.Debug(utils.T("api.channel.init.debug"))
|
||||||
|
|
||||||
BaseRoutes.Channels.Handle("/more", ApiUserRequired(getMoreChannels)).Methods("GET") // SCHEDULED FOR DEPRECATION IN 3.7
|
/* start - SCHEDULED FOR DEPRECATION IN 3.7 */
|
||||||
|
BaseRoutes.Channels.Handle("/more", ApiUserRequired(getMoreChannels)).Methods("GET")
|
||||||
|
/* end - SCHEDULED FOR DEPRECATION IN 3.7 */
|
||||||
|
|
||||||
|
/* start - SCHEDULED FOR DEPRECATION IN 3.8 */
|
||||||
|
BaseRoutes.NeedChannel.Handle("/update_last_viewed_at", ApiUserRequired(updateLastViewedAt)).Methods("POST")
|
||||||
|
BaseRoutes.NeedChannel.Handle("/set_last_viewed_at", ApiUserRequired(setLastViewedAt)).Methods("POST")
|
||||||
|
BaseRoutes.Users.Handle("/status/set_active_channel", ApiUserRequired(setActiveChannel)).Methods("POST")
|
||||||
|
/* end - SCHEDULED FOR DEPRECATION IN 3.8 */
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMoreChannels(c *Context, w http.ResponseWriter, r *http.Request) {
|
func getMoreChannels(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
@@ -37,3 +46,118 @@ func getMoreChannels(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
w.Write([]byte(data.ToJson()))
|
w.Write([]byte(data.ToJson()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func updateLastViewedAt(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
params := mux.Vars(r)
|
||||||
|
id := params["channel_id"]
|
||||||
|
|
||||||
|
data := model.StringInterfaceFromJson(r.Body)
|
||||||
|
|
||||||
|
var active bool
|
||||||
|
var ok bool
|
||||||
|
if active, ok = data["active"].(bool); !ok {
|
||||||
|
active = true
|
||||||
|
}
|
||||||
|
|
||||||
|
doClearPush := false
|
||||||
|
if *utils.Cfg.EmailSettings.SendPushNotifications && !c.Session.IsMobileApp() && active {
|
||||||
|
if result := <-Srv.Store.User().GetUnreadCountForChannel(c.Session.UserId, id); result.Err != nil {
|
||||||
|
l4g.Error(utils.T("api.channel.update_last_viewed_at.get_unread_count_for_channel.error"), c.Session.UserId, id, result.Err.Error())
|
||||||
|
} else {
|
||||||
|
if result.Data.(int64) > 0 {
|
||||||
|
doClearPush = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
if err := SetActiveChannel(c.Session.UserId, id); err != nil {
|
||||||
|
l4g.Error(err.Error())
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
Srv.Store.Channel().UpdateLastViewedAt(id, c.Session.UserId)
|
||||||
|
|
||||||
|
// Must be after update so that unread count is correct
|
||||||
|
if doClearPush {
|
||||||
|
go clearPushNotification(c.Session.UserId, id)
|
||||||
|
}
|
||||||
|
|
||||||
|
chanPref := model.Preference{
|
||||||
|
UserId: c.Session.UserId,
|
||||||
|
Category: c.TeamId,
|
||||||
|
Name: model.PREFERENCE_NAME_LAST_CHANNEL,
|
||||||
|
Value: id,
|
||||||
|
}
|
||||||
|
|
||||||
|
teamPref := model.Preference{
|
||||||
|
UserId: c.Session.UserId,
|
||||||
|
Category: model.PREFERENCE_CATEGORY_LAST,
|
||||||
|
Name: model.PREFERENCE_NAME_LAST_TEAM,
|
||||||
|
Value: c.TeamId,
|
||||||
|
}
|
||||||
|
|
||||||
|
Srv.Store.Preference().Save(&model.Preferences{teamPref, chanPref})
|
||||||
|
|
||||||
|
message := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_CHANNEL_VIEWED, c.TeamId, "", c.Session.UserId, nil)
|
||||||
|
message.Add("channel_id", id)
|
||||||
|
|
||||||
|
go Publish(message)
|
||||||
|
|
||||||
|
result := make(map[string]string)
|
||||||
|
result["id"] = id
|
||||||
|
w.Write([]byte(model.MapToJson(result)))
|
||||||
|
}
|
||||||
|
|
||||||
|
func setLastViewedAt(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
params := mux.Vars(r)
|
||||||
|
id := params["channel_id"]
|
||||||
|
|
||||||
|
data := model.StringInterfaceFromJson(r.Body)
|
||||||
|
newLastViewedAt := int64(data["last_viewed_at"].(float64))
|
||||||
|
|
||||||
|
Srv.Store.Channel().SetLastViewedAt(id, c.Session.UserId, newLastViewedAt)
|
||||||
|
|
||||||
|
chanPref := model.Preference{
|
||||||
|
UserId: c.Session.UserId,
|
||||||
|
Category: c.TeamId,
|
||||||
|
Name: model.PREFERENCE_NAME_LAST_CHANNEL,
|
||||||
|
Value: id,
|
||||||
|
}
|
||||||
|
|
||||||
|
teamPref := model.Preference{
|
||||||
|
UserId: c.Session.UserId,
|
||||||
|
Category: model.PREFERENCE_CATEGORY_LAST,
|
||||||
|
Name: model.PREFERENCE_NAME_LAST_TEAM,
|
||||||
|
Value: c.TeamId,
|
||||||
|
}
|
||||||
|
|
||||||
|
Srv.Store.Preference().Save(&model.Preferences{teamPref, chanPref})
|
||||||
|
|
||||||
|
message := model.NewWebSocketEvent(model.WEBSOCKET_EVENT_CHANNEL_VIEWED, c.TeamId, "", c.Session.UserId, nil)
|
||||||
|
message.Add("channel_id", id)
|
||||||
|
|
||||||
|
go Publish(message)
|
||||||
|
|
||||||
|
result := make(map[string]string)
|
||||||
|
result["id"] = id
|
||||||
|
w.Write([]byte(model.MapToJson(result)))
|
||||||
|
}
|
||||||
|
|
||||||
|
func setActiveChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
||||||
|
data := model.MapFromJson(r.Body)
|
||||||
|
|
||||||
|
var channelId string
|
||||||
|
var ok bool
|
||||||
|
if channelId, ok = data["channel_id"]; !ok || len(channelId) > 26 {
|
||||||
|
c.SetInvalidParam("setActiveChannel", "channel_id")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := SetActiveChannel(c.Session.UserId, channelId); err != nil {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ReturnStatusOK(w)
|
||||||
|
}
|
||||||
|
|||||||
@@ -41,3 +41,44 @@ func TestGetMoreChannel(t *testing.T) {
|
|||||||
t.Fatal("cache should be empty")
|
t.Fatal("cache should be empty")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
func TestSetActiveChannel(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
Client := th.BasicClient
|
||||||
|
|
||||||
|
if _, err := Client.SetActiveChannel(th.BasicChannel.Id); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
status, _ := GetStatus(th.BasicUser.Id)
|
||||||
|
if status.ActiveChannel != th.BasicChannel.Id {
|
||||||
|
t.Fatal("active channel should be set")
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := Client.SetActiveChannel(""); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
status, _ = GetStatus(th.BasicUser.Id)
|
||||||
|
if status.ActiveChannel != "" {
|
||||||
|
t.Fatal("active channel should be blank")
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := Client.SetActiveChannel("123456789012345678901234567890"); err == nil {
|
||||||
|
t.Fatal("should have failed, id too long")
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := Client.UpdateLastViewedAt(th.BasicChannel.Id, true); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
time.Sleep(500 * time.Millisecond)
|
||||||
|
|
||||||
|
status, _ = GetStatus(th.BasicUser.Id)
|
||||||
|
need to check if offline to catch race
|
||||||
|
if status.Status != model.STATUS_OFFLINE && status.ActiveChannel != th.BasicChannel.Id {
|
||||||
|
t.Fatal("active channel should be set")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|||||||
@@ -37,7 +37,6 @@ func InitStatus() {
|
|||||||
|
|
||||||
BaseRoutes.Users.Handle("/status", ApiUserRequired(getStatusesHttp)).Methods("GET")
|
BaseRoutes.Users.Handle("/status", ApiUserRequired(getStatusesHttp)).Methods("GET")
|
||||||
BaseRoutes.Users.Handle("/status/ids", ApiUserRequired(getStatusesByIdsHttp)).Methods("POST")
|
BaseRoutes.Users.Handle("/status/ids", ApiUserRequired(getStatusesByIdsHttp)).Methods("POST")
|
||||||
BaseRoutes.Users.Handle("/status/set_active_channel", ApiUserRequired(setActiveChannel)).Methods("POST")
|
|
||||||
BaseRoutes.WebSocket.Handle("get_statuses", ApiWebSocketHandler(getStatusesWebSocket))
|
BaseRoutes.WebSocket.Handle("get_statuses", ApiWebSocketHandler(getStatusesWebSocket))
|
||||||
BaseRoutes.WebSocket.Handle("get_statuses_by_ids", ApiWebSocketHandler(getStatusesByIdsWebSocket))
|
BaseRoutes.WebSocket.Handle("get_statuses_by_ids", ApiWebSocketHandler(getStatusesByIdsWebSocket))
|
||||||
}
|
}
|
||||||
@@ -305,42 +304,3 @@ func DoesStatusAllowPushNotification(user *model.User, status *model.Status, cha
|
|||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
func setActiveChannel(c *Context, w http.ResponseWriter, r *http.Request) {
|
|
||||||
data := model.MapFromJson(r.Body)
|
|
||||||
|
|
||||||
var channelId string
|
|
||||||
var ok bool
|
|
||||||
if channelId, ok = data["channel_id"]; !ok || len(channelId) > 26 {
|
|
||||||
c.SetInvalidParam("setActiveChannel", "channel_id")
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := SetActiveChannel(c.Session.UserId, channelId); err != nil {
|
|
||||||
c.Err = err
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
ReturnStatusOK(w)
|
|
||||||
}
|
|
||||||
|
|
||||||
func SetActiveChannel(userId string, channelId string) *model.AppError {
|
|
||||||
status, err := GetStatus(userId)
|
|
||||||
if err != nil {
|
|
||||||
status = &model.Status{userId, model.STATUS_ONLINE, false, model.GetMillis(), channelId}
|
|
||||||
} else {
|
|
||||||
status.ActiveChannel = channelId
|
|
||||||
if !status.Manual {
|
|
||||||
status.Status = model.STATUS_ONLINE
|
|
||||||
}
|
|
||||||
status.LastActivityAt = model.GetMillis()
|
|
||||||
}
|
|
||||||
|
|
||||||
AddStatusCache(status)
|
|
||||||
|
|
||||||
if result := <-Srv.Store.Status().SaveOrUpdate(status); result.Err != nil {
|
|
||||||
return result.Err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -229,44 +229,3 @@ func TestGetStatusesByIds(t *testing.T) {
|
|||||||
t.Fatal("should have errored")
|
t.Fatal("should have errored")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
func TestSetActiveChannel(t *testing.T) {
|
|
||||||
th := Setup().InitBasic()
|
|
||||||
Client := th.BasicClient
|
|
||||||
|
|
||||||
if _, err := Client.SetActiveChannel(th.BasicChannel.Id); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
status, _ := GetStatus(th.BasicUser.Id)
|
|
||||||
if status.ActiveChannel != th.BasicChannel.Id {
|
|
||||||
t.Fatal("active channel should be set")
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := Client.SetActiveChannel(""); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
status, _ = GetStatus(th.BasicUser.Id)
|
|
||||||
if status.ActiveChannel != "" {
|
|
||||||
t.Fatal("active channel should be blank")
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := Client.SetActiveChannel("123456789012345678901234567890"); err == nil {
|
|
||||||
t.Fatal("should have failed, id too long")
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := Client.UpdateLastViewedAt(th.BasicChannel.Id, true); err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
time.Sleep(500 * time.Millisecond)
|
|
||||||
|
|
||||||
status, _ = GetStatus(th.BasicUser.Id)
|
|
||||||
need to check if offline to catch race
|
|
||||||
if status.Status != model.STATUS_OFFLINE && status.ActiveChannel != th.BasicChannel.Id {
|
|
||||||
t.Fatal("active channel should be set")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|||||||
35
model/channel_view.go
Обычный файл
35
model/channel_view.go
Обычный файл
@@ -0,0 +1,35 @@
|
|||||||
|
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||||
|
// See License.txt for license information.
|
||||||
|
|
||||||
|
package model
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ChannelView struct {
|
||||||
|
ChannelId string `json:"channel_id"`
|
||||||
|
PrevChannelId string `json:"prev_channel_id"`
|
||||||
|
Time int64 `json:"time"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *ChannelView) ToJson() string {
|
||||||
|
b, err := json.Marshal(o)
|
||||||
|
if err != nil {
|
||||||
|
return ""
|
||||||
|
} else {
|
||||||
|
return string(b)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func ChannelViewFromJson(data io.Reader) *ChannelView {
|
||||||
|
decoder := json.NewDecoder(data)
|
||||||
|
var o ChannelView
|
||||||
|
err := decoder.Decode(&o)
|
||||||
|
if err == nil {
|
||||||
|
return &o
|
||||||
|
} else {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -48,6 +48,13 @@ type Result struct {
|
|||||||
Data interface{}
|
Data interface{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ResponseMetadata struct {
|
||||||
|
StatusCode int
|
||||||
|
Error *AppError
|
||||||
|
RequestId string
|
||||||
|
Etag string
|
||||||
|
}
|
||||||
|
|
||||||
type Client struct {
|
type Client struct {
|
||||||
Url string // The location of the server like "http://localhost:8065"
|
Url string // The location of the server like "http://localhost:8065"
|
||||||
ApiUrl string // The api location of the server like "http://localhost:8065/api/v3"
|
ApiUrl string // The api location of the server like "http://localhost:8065/api/v3"
|
||||||
@@ -1329,6 +1336,7 @@ func (c *Client) RemoveChannelMember(id, user_id string) (*Result, *AppError) {
|
|||||||
// UpdateLastViewedAt will mark a channel as read.
|
// UpdateLastViewedAt will mark a channel as read.
|
||||||
// The channelId indicates the channel to mark as read. If active is true, push notifications
|
// The channelId indicates the channel to mark as read. If active is true, push notifications
|
||||||
// will be cleared if there are unread messages. The default for active is true.
|
// will be cleared if there are unread messages. The default for active is true.
|
||||||
|
// SCHEDULED FOR DEPRECATION IN 3.8 - use ViewChannel instead
|
||||||
func (c *Client) UpdateLastViewedAt(channelId string, active bool) (*Result, *AppError) {
|
func (c *Client) UpdateLastViewedAt(channelId string, active bool) (*Result, *AppError) {
|
||||||
data := make(map[string]interface{})
|
data := make(map[string]interface{})
|
||||||
data["active"] = active
|
data["active"] = active
|
||||||
@@ -1341,6 +1349,24 @@ func (c *Client) UpdateLastViewedAt(channelId string, active bool) (*Result, *Ap
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ViewChannel performs all the actions related to viewing a channel. This includes marking
|
||||||
|
// the channel and the previous one as read, marking the channel as being actively viewed.
|
||||||
|
// ChannelId is required but may be blank to indicate no channel is being viewed.
|
||||||
|
// PrevChannelId is optional, populate to indicate a channel switch occurred. Optionally
|
||||||
|
// provide a non-zero Time, in Unix milliseconds, to manually set the viewing time.
|
||||||
|
func (c *Client) ViewChannel(params ChannelView) (bool, *ResponseMetadata) {
|
||||||
|
if r, err := c.DoApiPost(c.GetTeamRoute()+"/channels/view", params.ToJson()); err != nil {
|
||||||
|
return false, &ResponseMetadata{StatusCode: r.StatusCode, Error: err}
|
||||||
|
} else {
|
||||||
|
return c.CheckStatusOK(r),
|
||||||
|
&ResponseMetadata{
|
||||||
|
StatusCode: r.StatusCode,
|
||||||
|
RequestId: r.Header.Get(HEADER_REQUEST_ID),
|
||||||
|
Etag: r.Header.Get(HEADER_ETAG_SERVER),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Client) GetChannelStats(id string, etag string) (*Result, *AppError) {
|
func (c *Client) GetChannelStats(id string, etag string) (*Result, *AppError) {
|
||||||
if r, err := c.DoApiGet(c.GetChannelRoute(id)+"/stats", "", etag); err != nil {
|
if r, err := c.DoApiGet(c.GetChannelRoute(id)+"/stats", "", etag); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -1718,6 +1744,7 @@ func (c *Client) GetStatusesByIds(userIds []string) (*Result, *AppError) {
|
|||||||
// SetActiveChannel sets the the channel id the user is currently viewing.
|
// SetActiveChannel sets the the channel id the user is currently viewing.
|
||||||
// The channelId key is required but the value can be blank. Returns standard
|
// The channelId key is required but the value can be blank. Returns standard
|
||||||
// response.
|
// response.
|
||||||
|
// SCHEDULED FOR DEPRECATION IN 3.8 - use ViewChannel instead
|
||||||
func (c *Client) SetActiveChannel(channelId string) (*Result, *AppError) {
|
func (c *Client) SetActiveChannel(channelId string) (*Result, *AppError) {
|
||||||
data := map[string]string{}
|
data := map[string]string{}
|
||||||
data["channel_id"] = channelId
|
data["channel_id"] = channelId
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export function executeCommand(message, args, success, error) {
|
|||||||
|
|
||||||
export function setChannelAsRead(channelIdParam) {
|
export function setChannelAsRead(channelIdParam) {
|
||||||
const channelId = channelIdParam || ChannelStore.getCurrentId();
|
const channelId = channelIdParam || ChannelStore.getCurrentId();
|
||||||
AsyncClient.updateLastViewedAt();
|
AsyncClient.viewChannel();
|
||||||
ChannelStore.resetCounts(channelId);
|
ChannelStore.resetCounts(channelId);
|
||||||
ChannelStore.emitChange();
|
ChannelStore.emitChange();
|
||||||
if (channelId === ChannelStore.getCurrentId()) {
|
if (channelId === ChannelStore.getCurrentId()) {
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ export function emitChannelClickEvent(channel) {
|
|||||||
|
|
||||||
getMyChannelMembersPromise.then(() => {
|
getMyChannelMembersPromise.then(() => {
|
||||||
AsyncClient.getChannelStats(chan.id, true);
|
AsyncClient.getChannelStats(chan.id, true);
|
||||||
AsyncClient.updateLastViewedAt(chan.id);
|
AsyncClient.viewChannel(chan.id, ChannelStore.getCurrentId());
|
||||||
loadPosts(chan.id);
|
loadPosts(chan.id);
|
||||||
trackPage();
|
trackPage();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ export function handleNewPost(post, msg) {
|
|||||||
|
|
||||||
if (ChannelStore.getCurrentId() === post.channel_id) {
|
if (ChannelStore.getCurrentId() === post.channel_id) {
|
||||||
if (window.isActive) {
|
if (window.isActive) {
|
||||||
AsyncClient.updateLastViewedAt(null, false);
|
AsyncClient.viewChannel();
|
||||||
} else {
|
} else {
|
||||||
AsyncClient.getChannel(post.channel_id);
|
AsyncClient.getChannel(post.channel_id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -205,7 +205,7 @@ function handlePostEditEvent(msg) {
|
|||||||
// Update channel state
|
// Update channel state
|
||||||
if (ChannelStore.getCurrentId() === msg.broadcast.channel_id) {
|
if (ChannelStore.getCurrentId() === msg.broadcast.channel_id) {
|
||||||
if (window.isActive) {
|
if (window.isActive) {
|
||||||
AsyncClient.updateLastViewedAt(null, false);
|
AsyncClient.viewChannel();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1187,6 +1187,7 @@ export default class Client {
|
|||||||
end(this.handleResponse.bind(this, 'getStatuses', success, error));
|
end(this.handleResponse.bind(this, 'getStatuses', success, error));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SCHEDULED FOR DEPRECATION IN 3.8 - use viewChannel instead
|
||||||
setActiveChannel(id, success, error) {
|
setActiveChannel(id, success, error) {
|
||||||
request.
|
request.
|
||||||
post(`${this.getUsersRoute()}/status/set_active_channel`).
|
post(`${this.getUsersRoute()}/status/set_active_channel`).
|
||||||
@@ -1366,6 +1367,17 @@ export default class Client {
|
|||||||
this.track('api', 'api_channels_delete');
|
this.track('api', 'api_channels_delete');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
viewChannel(channelId, prevChannelId = '', time = 0, success, error) {
|
||||||
|
request.
|
||||||
|
post(`${this.getChannelsRoute()}/view`).
|
||||||
|
set(this.defaultHeaders).
|
||||||
|
type('application/json').
|
||||||
|
accept('application/json').
|
||||||
|
send({channel_id: channelId, prev_channel_id: prevChannelId, time}).
|
||||||
|
end(this.handleResponse.bind(this, 'viewChannel', success, error));
|
||||||
|
}
|
||||||
|
|
||||||
|
// SCHEDULED FOR DEPRECATION IN 3.8 - use viewChannel instead
|
||||||
updateLastViewedAt(channelId, active, success, error) {
|
updateLastViewedAt(channelId, active, success, error) {
|
||||||
request.
|
request.
|
||||||
post(`${this.getChannelNeededRoute(channelId)}/update_last_viewed_at`).
|
post(`${this.getChannelNeededRoute(channelId)}/update_last_viewed_at`).
|
||||||
@@ -1376,6 +1388,7 @@ export default class Client {
|
|||||||
end(this.handleResponse.bind(this, 'updateLastViewedAt', success, error));
|
end(this.handleResponse.bind(this, 'updateLastViewedAt', success, error));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SCHEDULED FOR DEPRECATION IN 3.8 - use viewChannel instead
|
||||||
setLastViewedAt(channelId, lastViewedAt, success, error) {
|
setLastViewedAt(channelId, lastViewedAt, success, error) {
|
||||||
request.
|
request.
|
||||||
post(`${this.getChannelNeededRoute(channelId)}/set_last_viewed_at`).
|
post(`${this.getChannelNeededRoute(channelId)}/set_last_viewed_at`).
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ export default class NeedsTeam extends React.Component {
|
|||||||
// Set up tracking for whether the window is active
|
// Set up tracking for whether the window is active
|
||||||
window.isActive = true;
|
window.isActive = true;
|
||||||
$(window).on('focus', () => {
|
$(window).on('focus', () => {
|
||||||
AsyncClient.updateLastViewedAt();
|
AsyncClient.viewChannel();
|
||||||
ChannelStore.resetCounts(ChannelStore.getCurrentId());
|
ChannelStore.resetCounts(ChannelStore.getCurrentId());
|
||||||
ChannelStore.emitChange();
|
ChannelStore.emitChange();
|
||||||
window.isActive = true;
|
window.isActive = true;
|
||||||
@@ -103,7 +103,7 @@ export default class NeedsTeam extends React.Component {
|
|||||||
$(window).on('blur', () => {
|
$(window).on('blur', () => {
|
||||||
window.isActive = false;
|
window.isActive = false;
|
||||||
if (UserStore.getCurrentUser()) {
|
if (UserStore.getCurrentUser()) {
|
||||||
AsyncClient.setActiveChannel('');
|
AsyncClient.viewChannel('');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ export default class PostViewCache extends React.Component {
|
|||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
if (UserStore.getCurrentUser()) {
|
if (UserStore.getCurrentUser()) {
|
||||||
AsyncClient.setActiveChannel('');
|
AsyncClient.viewChannel('');
|
||||||
}
|
}
|
||||||
ChannelStore.removeChangeListener(this.onChannelChange);
|
ChannelStore.removeChangeListener(this.onChannelChange);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -211,6 +211,23 @@ describe('Client.Channels', function() {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('viewChannel', function(done) {
|
||||||
|
TestHelper.initBasic(() => {
|
||||||
|
var channel = TestHelper.basicChannel();
|
||||||
|
TestHelper.basicClient().viewChannel(
|
||||||
|
channel.id,
|
||||||
|
'',
|
||||||
|
0,
|
||||||
|
function() {
|
||||||
|
done();
|
||||||
|
},
|
||||||
|
function(err) {
|
||||||
|
done(new Error(err.message));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('updateLastViewedAt', function(done) {
|
it('updateLastViewedAt', function(done) {
|
||||||
TestHelper.initBasic(() => {
|
TestHelper.initBasic(() => {
|
||||||
var channel = TestHelper.basicChannel();
|
var channel = TestHelper.basicChannel();
|
||||||
|
|||||||
@@ -138,33 +138,20 @@ export function getMyChannelMembers() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function updateLastViewedAt(id, active) {
|
export function viewChannel(channelId = ChannelStore.getCurrentId(), prevChannelId = '', time = 0) {
|
||||||
let channelId;
|
|
||||||
if (id) {
|
|
||||||
channelId = id;
|
|
||||||
} else {
|
|
||||||
channelId = ChannelStore.getCurrentId();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (channelId == null) {
|
if (channelId == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isCallInProgress(`updateLastViewed${channelId}`)) {
|
if (isCallInProgress(`viewChannel${channelId}`)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let isActive;
|
callTracker[`viewChannel${channelId}`] = utils.getTimestamp();
|
||||||
if (active == null) {
|
Client.viewChannel(
|
||||||
isActive = true;
|
|
||||||
} else {
|
|
||||||
isActive = active;
|
|
||||||
}
|
|
||||||
|
|
||||||
callTracker[`updateLastViewed${channelId}`] = utils.getTimestamp();
|
|
||||||
Client.updateLastViewedAt(
|
|
||||||
channelId,
|
channelId,
|
||||||
isActive,
|
prevChannelId,
|
||||||
|
time,
|
||||||
() => {
|
() => {
|
||||||
AppDispatcher.handleServerAction({
|
AppDispatcher.handleServerAction({
|
||||||
type: ActionTypes.RECEIVED_PREFERENCE,
|
type: ActionTypes.RECEIVED_PREFERENCE,
|
||||||
@@ -175,59 +162,14 @@ export function updateLastViewedAt(id, active) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
callTracker[`updateLastViewed${channelId}`] = 0;
|
callTracker[`viewChannel${channelId}`] = 0;
|
||||||
ErrorStore.clearLastError();
|
ErrorStore.clearLastError();
|
||||||
},
|
},
|
||||||
(err) => {
|
(err) => {
|
||||||
callTracker[`updateLastViewed${channelId}`] = 0;
|
callTracker[`viewChannel${channelId}`] = 0;
|
||||||
const count = ErrorStore.getConnectionErrorCount();
|
const count = ErrorStore.getConnectionErrorCount();
|
||||||
ErrorStore.setConnectionErrorCount(count + 1);
|
ErrorStore.setConnectionErrorCount(count + 1);
|
||||||
dispatchError(err, 'updateLastViewedAt');
|
dispatchError(err, 'viewChannel');
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function setLastViewedAt(lastViewedAt, id) {
|
|
||||||
let channelId;
|
|
||||||
if (id) {
|
|
||||||
channelId = id;
|
|
||||||
} else {
|
|
||||||
channelId = ChannelStore.getCurrentId();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (channelId == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (lastViewedAt == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isCallInProgress(`setLastViewedAt${channelId}${lastViewedAt}`)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
callTracker[`setLastViewedAt${channelId}${lastViewedAt}`] = utils.getTimestamp();
|
|
||||||
Client.setLastViewedAt(
|
|
||||||
channelId,
|
|
||||||
lastViewedAt,
|
|
||||||
() => {
|
|
||||||
AppDispatcher.handleServerAction({
|
|
||||||
type: ActionTypes.RECEIVED_PREFERENCE,
|
|
||||||
preference: {
|
|
||||||
category: 'last',
|
|
||||||
name: TeamStore.getCurrentId(),
|
|
||||||
value: channelId
|
|
||||||
}
|
|
||||||
});
|
|
||||||
callTracker[`setLastViewedAt${channelId}${lastViewedAt}`] = 0;
|
|
||||||
ErrorStore.clearLastError();
|
|
||||||
},
|
|
||||||
(err) => {
|
|
||||||
callTracker[`setLastViewedAt${channelId}${lastViewedAt}`] = 0;
|
|
||||||
var count = ErrorStore.getConnectionErrorCount();
|
|
||||||
ErrorStore.setConnectionErrorCount(count + 1);
|
|
||||||
dispatchError(err, 'setLastViewedAt');
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -795,24 +737,6 @@ export function getStatuses() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function setActiveChannel(channelId) {
|
|
||||||
if (isCallInProgress(`setActiveChannel${channelId}`)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
callTracker[`setActiveChannel${channelId}`] = utils.getTimestamp();
|
|
||||||
Client.setActiveChannel(
|
|
||||||
channelId,
|
|
||||||
() => {
|
|
||||||
callTracker[`setActiveChannel${channelId}`] = 0;
|
|
||||||
},
|
|
||||||
(err) => {
|
|
||||||
callTracker[`setActiveChannel${channelId}`] = 0;
|
|
||||||
dispatchError(err, 'setActiveChannel');
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getMyTeam() {
|
export function getMyTeam() {
|
||||||
if (isCallInProgress('getMyTeam')) {
|
if (isCallInProgress('getMyTeam')) {
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user