summaryrefslogtreecommitdiffstats
path: root/model/channel_data.go
blob: aae0a1490ec8db9a350e6637d977674d6f1349df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"encoding/json"
	"io"
)

type ChannelData struct {
	Channel *Channel       `json:"channel"`
	Member  *ChannelMember `json:"member"`
}

func (o *ChannelData) Etag() string {
	var mt int64 = 0
	if o.Member != nil {
		mt = o.Member.LastUpdateAt
	}

	return Etag(o.Channel.Id, o.Channel.UpdateAt, o.Channel.LastPostAt, mt)
}

func (o *ChannelData) ToJson() string {
	b, _ := json.Marshal(o)
	return string(b)
}

func ChannelDataFromJson(data io.Reader) *ChannelData {
	var o *ChannelData
	json.NewDecoder(data).Decode(&o)
	return o
}