mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
50 lines
1.1 KiB
Go
50 lines
1.1 KiB
Go
|
// 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"
|
||
|
|
||
|
CATEGORY_DM = "DIRECT_MESSAGE"
|
||
|
)
|
||
|
|
||
|
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"`
|
||
|
ChannelId string `json:"channel_id"`
|
||
|
ChannelName string `json:"channel_name"`
|
||
|
}
|
||
|
|
||
|
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
|
||
|
}
|
||
|
}
|