2017-08-16 21:37:37 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2016-04-10 21:39:38 +00:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2016-09-17 13:19:18 +00:00
|
|
|
"strings"
|
2016-04-10 21:39:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-03-25 20:04:10 +00:00
|
|
|
PUSH_NOTIFY_APPLE = "apple"
|
|
|
|
PUSH_NOTIFY_ANDROID = "android"
|
|
|
|
PUSH_NOTIFY_APPLE_REACT_NATIVE = "apple_rn"
|
|
|
|
PUSH_NOTIFY_ANDROID_REACT_NATIVE = "android_rn"
|
2016-05-15 21:02:30 +00:00
|
|
|
|
2016-09-17 13:19:18 +00:00
|
|
|
PUSH_TYPE_MESSAGE = "message"
|
|
|
|
PUSH_TYPE_CLEAR = "clear"
|
|
|
|
|
2016-05-15 21:02:30 +00:00
|
|
|
CATEGORY_DM = "DIRECT_MESSAGE"
|
|
|
|
|
|
|
|
MHPNS = "https://push.mattermost.com"
|
2016-04-10 21:39:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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"`
|
2017-01-16 22:59:50 +00:00
|
|
|
TeamId string `json:"team_id"`
|
2016-05-15 21:02:30 +00:00
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
ChannelName string `json:"channel_name"`
|
2016-09-17 13:19:18 +00:00
|
|
|
Type string `json:"type"`
|
2017-08-16 21:37:37 +00:00
|
|
|
SenderId string `json:"sender_id"`
|
|
|
|
OverrideUsername string `json:"override_username"`
|
|
|
|
OverrideIconUrl string `json:"override_icon_url"`
|
|
|
|
FromWebhook string `json:"from_webhook"`
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (me *PushNotification) ToJson() string {
|
|
|
|
b, err := json.Marshal(me)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
|
|
|
} else {
|
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-17 13:19:18 +00:00
|
|
|
func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) {
|
2017-03-25 20:04:10 +00:00
|
|
|
|
|
|
|
index := strings.Index(deviceId, ":")
|
|
|
|
|
|
|
|
if index > -1 {
|
|
|
|
me.Platform = deviceId[:index]
|
|
|
|
me.DeviceId = deviceId[index+1:]
|
2016-09-17 13:19:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-10 21:39:38 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|