2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2015-11-30 22:38:38 -08:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"io"
|
2016-08-31 12:52:14 -04:00
|
|
|
"strings"
|
2015-11-30 22:38:38 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
2017-02-23 08:53:43 -05:00
|
|
|
PUSH_NOTIFY_APPLE = "apple"
|
|
|
|
|
PUSH_NOTIFY_ANDROID = "android"
|
|
|
|
|
PUSH_NOTIFY_APPLE_REACT_NATIVE = "apple_rn"
|
|
|
|
|
PUSH_NOTIFY_ANDROID_REACT_NATIVE = "android_rn"
|
2016-03-11 00:14:55 -03:00
|
|
|
|
2016-08-31 12:52:14 -04:00
|
|
|
PUSH_TYPE_MESSAGE = "message"
|
|
|
|
|
PUSH_TYPE_CLEAR = "clear"
|
|
|
|
|
|
2017-08-28 11:54:23 -03:00
|
|
|
// The category is set to handle a set of interactive Actions
|
|
|
|
|
// with the push notifications
|
|
|
|
|
CATEGORY_CAN_REPLY = "CAN_REPLY"
|
2016-05-03 11:54:49 -04:00
|
|
|
|
|
|
|
|
MHPNS = "https://push.mattermost.com"
|
2015-11-30 22:38:38 -08: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"`
|
2016-11-21 17:55:43 -08:00
|
|
|
TeamId string `json:"team_id"`
|
2016-03-11 00:14:55 -03:00
|
|
|
ChannelId string `json:"channel_id"`
|
2017-08-28 11:54:23 -03:00
|
|
|
PostId string `json:"post_id"`
|
|
|
|
|
RootId string `json:"root_id"`
|
2016-03-11 00:14:55 -03:00
|
|
|
ChannelName string `json:"channel_name"`
|
2016-08-31 12:52:14 -04:00
|
|
|
Type string `json:"type"`
|
2017-04-27 04:51:19 -07:00
|
|
|
SenderId string `json:"sender_id"`
|
2017-04-26 07:29:50 -07:00
|
|
|
OverrideUsername string `json:"override_username"`
|
|
|
|
|
OverrideIconUrl string `json:"override_icon_url"`
|
|
|
|
|
FromWebhook string `json:"from_webhook"`
|
2015-11-30 22:38:38 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (me *PushNotification) ToJson() string {
|
2018-01-30 17:23:00 -06:00
|
|
|
b, _ := json.Marshal(me)
|
|
|
|
|
return string(b)
|
2015-11-30 22:38:38 -08:00
|
|
|
}
|
|
|
|
|
|
2016-08-31 12:52:14 -04:00
|
|
|
func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) {
|
2017-02-23 08:53:43 -05:00
|
|
|
|
2017-03-01 12:33:16 -05:00
|
|
|
index := strings.Index(deviceId, ":")
|
|
|
|
|
|
|
|
|
|
if index > -1 {
|
|
|
|
|
me.Platform = deviceId[:index]
|
|
|
|
|
me.DeviceId = deviceId[index+1:]
|
2016-08-31 12:52:14 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-30 22:38:38 -08:00
|
|
|
func PushNotificationFromJson(data io.Reader) *PushNotification {
|
2018-01-30 17:23:00 -06:00
|
|
|
var me *PushNotification
|
|
|
|
|
json.NewDecoder(data).Decode(&me)
|
|
|
|
|
return me
|
2015-11-30 22:38:38 -08:00
|
|
|
}
|