From 6c0fefad152e1843bccf80fb675301b789f70dd5 Mon Sep 17 00:00:00 2001 From: JoramWilander Date: Mon, 10 Aug 2015 14:47:45 -0400 Subject: added getChannelCounts service and refactored the client to more intelligently pull channel data --- model/channel_count.go | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 model/channel_count.go (limited to 'model/channel_count.go') diff --git a/model/channel_count.go b/model/channel_count.go new file mode 100644 index 000000000..05d8401e1 --- /dev/null +++ b/model/channel_count.go @@ -0,0 +1,46 @@ +// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. +// See License.txt for license information. + +package model + +import ( + "crypto/md5" + "encoding/json" + "io" + "strconv" +) + +type ChannelCounts struct { + Counts map[string]int64 `json:"counts"` +} + +func (o *ChannelCounts) Etag() string { + str := "" + for id, count := range o.Counts { + str += id + strconv.FormatInt(count, 10) + } + + data := []byte(str) + + return Etag(md5.Sum(data)) +} + +func (o *ChannelCounts) ToJson() string { + b, err := json.Marshal(o) + if err != nil { + return "" + } else { + return string(b) + } +} + +func ChannelCountsFromJson(data io.Reader) *ChannelCounts { + decoder := json.NewDecoder(data) + var o ChannelCounts + err := decoder.Decode(&o) + if err == nil { + return &o + } else { + return nil + } +} -- cgit v1.2.3-1-g7c22