mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-13 04:57:45 -04:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (shard 0) (push) Blocked by required conditions
Server CI / Postgres (shard 1) (push) Blocked by required conditions
Server CI / Postgres (shard 2) (push) Blocked by required conditions
Server CI / Postgres (shard 3) (push) Blocked by required conditions
Server CI / Merge Postgres Test Results (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-external-links (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
102 lines
3.6 KiB
Go
102 lines
3.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
PushNotifyApple = "apple"
|
|
PushNotifyAndroid = "android"
|
|
PushNotifyAppleReactNative = "apple_rn"
|
|
PushNotifyAndroidReactNative = "android_rn"
|
|
|
|
PushTypeMessage = "message"
|
|
PushTypeClear = "clear"
|
|
PushTypeUpdateBadge = "update_badge"
|
|
PushTypeSession = "session"
|
|
PushTypeTest = "test"
|
|
PushMessageV2 = "v2"
|
|
|
|
PushSoundNone = "none"
|
|
|
|
// The category is set to handle a set of interactive Actions
|
|
// with the push notifications
|
|
CategoryCanReply = "CAN_REPLY"
|
|
|
|
// Push notification server URLs
|
|
// Legacy URLs are DNS aliases that automatically route to the regional endpoints
|
|
MHPNSLegacyUS = "https://push.mattermost.com"
|
|
MHPNSLegacyDE = "https://hpns-de.mattermost.com"
|
|
// Current regional URLs
|
|
MHPNSGlobal = "https://global.push.mattermost.com"
|
|
MHPNSUS = "https://us.push.mattermost.com"
|
|
MHPNSEU = "https://eu.push.mattermost.com"
|
|
MHPNSAP = "https://ap.push.mattermost.com"
|
|
MHPNS = MHPNSUS // Legacy constant for backwards compatibility
|
|
|
|
PushSendPrepare = "Prepared to send"
|
|
PushSendSuccess = "Successful"
|
|
PushNotSent = "Not Sent due to preferences"
|
|
PushReceived = "Received by device"
|
|
)
|
|
|
|
// PushSubType allows for passing additional message type information
|
|
// to mobile clients in a backwards-compatible way
|
|
type PushSubType string
|
|
|
|
// PushSubTypeCalls is used by the Calls plugin
|
|
const PushSubTypeCalls PushSubType = "calls"
|
|
|
|
type PushNotificationAck struct {
|
|
Id string `json:"id"`
|
|
ClientReceivedAt int64 `json:"received_at"`
|
|
ClientPlatform string `json:"platform"`
|
|
NotificationType string `json:"type"`
|
|
PostId string `json:"post_id,omitempty"`
|
|
IsIdLoaded bool `json:"is_id_loaded"`
|
|
}
|
|
|
|
type PushNotification struct {
|
|
AckId string `json:"ack_id"`
|
|
Platform string `json:"platform"`
|
|
ServerId string `json:"server_id"`
|
|
DeviceId string `json:"device_id"`
|
|
PostId string `json:"post_id"`
|
|
Category string `json:"category,omitempty"`
|
|
Sound string `json:"sound,omitempty"`
|
|
Message string `json:"message,omitempty"`
|
|
Badge int `json:"badge,omitempty"`
|
|
ContentAvailable int `json:"cont_ava,omitempty"`
|
|
TeamId string `json:"team_id,omitempty"`
|
|
ChannelId string `json:"channel_id,omitempty"`
|
|
RootId string `json:"root_id,omitempty"`
|
|
ChannelName string `json:"channel_name,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
SubType PushSubType `json:"sub_type,omitempty"`
|
|
SenderId string `json:"sender_id,omitempty"`
|
|
SenderName string `json:"sender_name,omitempty"`
|
|
OverrideUsername string `json:"override_username,omitempty"`
|
|
OverrideIconURL string `json:"override_icon_url,omitempty"`
|
|
FromWebhook string `json:"from_webhook,omitempty"`
|
|
Version string `json:"version,omitempty"`
|
|
IsCRTEnabled bool `json:"is_crt_enabled"`
|
|
IsIdLoaded bool `json:"is_id_loaded"`
|
|
PostType string `json:"-"`
|
|
ChannelType ChannelType `json:"-"`
|
|
Signature string `json:"signature"`
|
|
}
|
|
|
|
func (pn *PushNotification) DeepCopy() *PushNotification {
|
|
pnCopy := *pn
|
|
return &pnCopy
|
|
}
|
|
|
|
func (pn *PushNotification) SetDeviceIdAndPlatform(deviceId string) {
|
|
if platform, id, ok := strings.Cut(deviceId, ":"); ok {
|
|
pn.Platform = platform
|
|
pn.DeviceId = id
|
|
}
|
|
}
|