-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Program.swift
243 lines (220 loc) · 7.78 KB
/
Program.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
//===----------------------------------------------------------------------===//
//
// This source file is part of the APNSwift open source project
//
// Copyright (c) 2022 the APNSwift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of APNSwift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import APNSCore
import APNS
import Logging
import Foundation
let logger = Logger(label: "APNSwiftExample")
@available(macOS 11.0, *)
@main
struct Main {
/// To use this example app please provide proper values for variable below.
static let deviceToken = ""
static let pushKitDeviceToken = ""
static let ephemeralPushToken = "" // PTT
static let fileProviderDeviceToken = ""
static let appBundleID = ""
static let privateKey = """
"""
static let keyIdentifier = ""
static let teamIdentifier = ""
static func main() async throws {
let client = APNSClient(
configuration: .init(
authenticationMethod: .jwt(
privateKey: try .init(pemRepresentation: privateKey),
keyIdentifier: keyIdentifier,
teamIdentifier: teamIdentifier
),
environment: .development
),
eventLoopGroupProvider: .createNew,
responseDecoder: JSONDecoder(),
requestEncoder: JSONEncoder()
)
do {
try await Self.sendSimpleAlert(with: client)
try await Self.sendLocalizedAlert(with: client)
try await Self.sendThreadedAlert(with: client)
try await Self.sendCustomCategoryAlert(with: client)
try await Self.sendMutableContentAlert(with: client)
try await Self.sendBackground(with: client)
try await Self.sendVoIP(with: client)
try await Self.sendFileProvider(with: client)
try await Self.sendPushToTalk(with: client)
} catch {
logger.warning("error sending push: \(error)")
}
try? await client.shutdown()
}
}
// MARK: Alerts
@available(macOS 11.0, *)
extension Main {
static func sendSimpleAlert(with client: some APNSClientProtocol) async throws {
try await client.sendAlertNotification(
.init(
alert: .init(
title: .raw("Simple Alert"),
subtitle: .raw("Subtitle"),
body: .raw("Body"),
launchImage: nil
),
expiration: .immediately,
priority: .immediately,
topic: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.deviceToken
)
logger.info("successfully sent simple alert notification")
}
static func sendLocalizedAlert(with client: some APNSClientProtocol) async throws {
try await client.sendAlertNotification(
.init(
alert: .init(
title: .localized(key: "title", arguments: ["Localized"]),
subtitle: .localized(key: "subtitle", arguments: ["APNS"]),
body: .localized(key: "body", arguments: ["APNS"]),
launchImage: nil
),
expiration: .immediately,
priority: .immediately,
topic: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.deviceToken
)
logger.info("successfully sent alert localized notification")
}
static func sendThreadedAlert(with client: some APNSClientProtocol) async throws {
try await client.sendAlertNotification(
.init(
alert: .init(
title: .raw("Threaded Alert"),
subtitle: .raw("Subtitle"),
body: .raw("Body"),
launchImage: nil
),
expiration: .immediately,
priority: .immediately,
topic: self.appBundleID,
payload: EmptyPayload(),
threadID: "thread"
),
deviceToken: self.deviceToken
)
logger.info("successfully sent threaded alert")
}
static func sendCustomCategoryAlert(with client: some APNSClientProtocol) async throws {
try await client.sendAlertNotification(
.init(
alert: .init(
title: .raw("Custom Category Alert"),
subtitle: .raw("Subtitle"),
body: .raw("Body"),
launchImage: nil
),
expiration: .immediately,
priority: .immediately,
topic: self.appBundleID,
payload: EmptyPayload(),
category: "CUSTOM"
),
deviceToken: self.deviceToken
)
logger.info("successfully sent custom category alert")
}
static func sendMutableContentAlert(with client: some APNSClientProtocol) async throws {
try await client.sendAlertNotification(
.init(
alert: .init(
title: .raw("Mutable Alert"),
subtitle: .raw("Subtitle"),
body: .raw("Body"),
launchImage: nil
),
expiration: .immediately,
priority: .immediately,
topic: self.appBundleID,
payload: EmptyPayload(),
mutableContent: 1
),
deviceToken: self.deviceToken
)
logger.info("successfully sent mutable content alert")
}
}
// MARK: Background
@available(macOS 11.0, *)
extension Main {
static func sendBackground(with client: some APNSClientProtocol) async throws {
try await client.sendBackgroundNotification(
.init(
expiration: .immediately,
topic: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.deviceToken
)
logger.info("successfully sent background notification")
}
}
// MARK: VoIP
@available(macOS 11.0, *)
extension Main {
static func sendVoIP(with client: some APNSClientProtocol) async throws {
try await client.sendVoIPNotification(
.init(
expiration: .immediately,
priority: .immediately,
appID: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.pushKitDeviceToken
)
logger.info("successfully sent VoIP notification")
}
}
// MARK: FileProvider
@available(macOS 11.0, *)
extension Main {
static func sendFileProvider(with client: some APNSClientProtocol) async throws {
try await client.sendFileProviderNotification(
.init(
expiration: .immediately,
appID: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.fileProviderDeviceToken
)
logger.info("successfully sent FileProvider notification")
}
}
// MARK: Push to Talk (PTT)
@available(macOS 11.0, *)
extension Main {
static func sendPushToTalk(with client: some APNSClientProtocol) async throws {
try await client.sendPushToTalkNotification(
.init(
expiration: .immediately,
priority: .immediately,
appID: self.appBundleID,
payload: EmptyPayload()
),
deviceToken: self.ephemeralPushToken
)
logger.info("successfully sent Push to Talk notification")
}
}