summaryrefslogtreecommitdiffstats
path: root/model/push_notification.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-12-01 08:33:23 -0800
committerCorey Hulen <corey@hulen.com>2015-12-01 08:33:23 -0800
commite460bc2665ea3af927055f30727cb97952e64313 (patch)
treec3e98a2ca7c5d8ebf2ac298ef846734c1dc29a45 /model/push_notification.go
parent62c96514bfa243029dba2d9b47b5b8a8322059e4 (diff)
parentf5907e21cad055b241718d2bd1530bd4c22e77c7 (diff)
downloadchat-e460bc2665ea3af927055f30727cb97952e64313.tar.gz
chat-e460bc2665ea3af927055f30727cb97952e64313.tar.bz2
chat-e460bc2665ea3af927055f30727cb97952e64313.zip
Merge pull request #1555 from mattermost/PLT-902
PLT-902 switching to push proxy server
Diffstat (limited to 'model/push_notification.go')
-rw-r--r--model/push_notification.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/model/push_notification.go b/model/push_notification.go
new file mode 100644
index 000000000..76f5bd125
--- /dev/null
+++ b/model/push_notification.go
@@ -0,0 +1,45 @@
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package model
+
+import (
+ "encoding/json"
+ "io"
+)
+
+const (
+ PUSH_NOTIFY_APPLE = "apple"
+ PUSH_NOTIFY_ANDROID = "android"
+)
+
+type PushNotification struct {
+ Platform string `json:"platform"`
+ ServerId string `json:"server_id"`
+ DeviceId string `json:"device_id"`
+ Category string `json:"category"`
+ Sound string `json:"sound"`
+ Message string `json:"message"`
+ Badge int `json:"badge"`
+ ContentAvailable int `json:"cont_ava"`
+}
+
+func (me *PushNotification) ToJson() string {
+ b, err := json.Marshal(me)
+ if err != nil {
+ return ""
+ } else {
+ return string(b)
+ }
+}
+
+func PushNotificationFromJson(data io.Reader) *PushNotification {
+ decoder := json.NewDecoder(data)
+ var me PushNotification
+ err := decoder.Decode(&me)
+ if err == nil {
+ return &me
+ } else {
+ return nil
+ }
+}