-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathAppDelegate.swift
175 lines (149 loc) · 7.44 KB
/
AppDelegate.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
//
// AppDelegate.swift
// SendbirdUIKit-Sample
//
// Created by Tez Park on 13/03/2020.
// Copyright © 2020 SendBird, Inc. All rights reserved.
//
import UIKit
import SendbirdChatSDK
#if canImport(SendbirdUIKit)
@_exported import SendbirdUIKit
#endif
@_exported import SendbirdUIMessageTemplate
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate {
var window: UIWindow?
var pendingNotificationPayload: NSDictionary?
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
SendbirdUI.setLogLevel(.all)
#if INSPECTION
SendbirdUI.setLogLevel(.all)
self.renderViewForInspection()
#endif
self.uikitConfigs()
// INFO: This method could cause the 800100 error. However, it's not a problem because the device push token will be kept by the ChatSDK and the token will be registered after the connection is established.
self.initializeRemoteNotification()
#if INSPECTION
self.addObserversForInspection()
#endif
return true
}
func applicationDidBecomeActive(_ application: UIApplication) {
application.applicationIconBadgeNumber = 0
}
func initializeRemoteNotification() {
let center = UNUserNotificationCenter.current()
center.delegate = self
center.requestAuthorization(options: [.sound, .alert]) { granted, error in
DispatchQueue.main.async {
UIApplication.shared.registerForRemoteNotifications()
}
}
}
func application(_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
// Register a device token to SendBird server.
SendbirdUI.registerPush(deviceToken: deviceToken) { success in
}
}
public func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Swift.Void)
{
#if INSPECTION
self.saveForegroundRemoteNotificationPayload(payload: notification.request.content.userInfo)
#endif
// Foreground setting
// completionHandler( [.alert, .badge, .sound])
}
public func userNotificationCenter(_ center: UNUserNotificationCenter,
didReceive response: UNNotificationResponse,
withCompletionHandler completionHandler: @escaping () -> Swift.Void) {
let userInfo = response.notification.request.content.userInfo
guard let payload: NSDictionary = userInfo["sendbird"] as? NSDictionary else { return }
#if INSPECTION
// This code is not for general purpose and can only be available in Inspection mode sample.
self.markPushNotificationAsClicked(remoteNotificationPayload: userInfo)
#else
SendbirdChat.markPushNotificationAsClicked(remoteNotificationPayload: userInfo)
#endif
let signedInApp = UserDefaults.loadSignedInSampleApp()
if signedInApp != .none {
self.pendingNotificationPayload = payload
guard let channel: NSDictionary = payload["channel"] as? NSDictionary, let channelURL: String = channel["channel_url"] as? String else { return }
guard let rootViewController = UIApplication.shared.keyWindow?.rootViewController else { return }
var topController = rootViewController
while let presentedViewController = topController.presentedViewController {
topController = presentedViewController
}
if topController is UINavigationController && !topController.children.isEmpty {
topController = topController.children.last!
}
switch topController {
case let vc as BasicUsagesViewController:
guard let channelType = payload["channel_type"] as? String else { return }
if channelType == "group_messaging" {
vc.startGroupChatAction(channelURL: channelURL)
}
case let vc as MainChannelTabbarController:
// Group Channels in Basic Usage
if vc.selectedIndex == 1 { // My settings tab
vc.selectedIndex = 0 // Select Channels tab
}
if let nc = vc.selectedViewController as? UINavigationController {
if nc.visibleViewController is SBUGroupChannelViewController { // SBUGroupChannelViewController is already pushed.
nc.popViewController(animated: false) // Move to channel list
}
}
self.pendingNotificationPayload = nil
SendbirdUI.moveToChannel(channelURL: channelURL, basedOnChannelList: true)
case let vc as MainOpenChannelTabbarController:
vc.dismiss(animated: false) {
}
case let vc as BusinessMessagingSelectionViewController:
guard let channelType = payload["channel_type"] as? String else { return }
let authType = UserDefaults.loadAuthType()
if channelType == "notification_feed" {
vc.openFeedOnly(channelURL: channelURL)
} else if channelType == "chat" && authType == .websocket {
vc.openChatAndFeed(channelURL: channelURL)
}
case let vc as BusinessMessagingTabBarController:
guard let channelType = payload["channel_type"] as? String else { return }
vc.channelURLforPushNotification = channelURL
if channelType == "notification_feed" {
vc.channelType = .feed
vc.openFeedChannelIfNeeded()
} else if channelType == "chat" {
vc.channelType = .group
vc.openChatChannelIfNeeded()
}
default:
break
}
}
}
func uikitConfigs() {
// SBUGlobals.accessToken = ""
SendbirdUI.config.common.isUsingDefaultUserProfileEnabled = true
// Reply
SendbirdUI.config.groupChannel.channel.replyType = .quoteReply
// Channel List - Typing indicator
SendbirdUI.config.groupChannel.channelList.isTypingIndicatorEnabled = true
// Channel List - Message receipt state
SendbirdUI.config.groupChannel.channelList.isMessageReceiptStatusEnabled = true
// User Mention
SendbirdUI.config.groupChannel.channel.isMentionEnabled = true
// GroupChannel - Voice Message
SendbirdUI.config.groupChannel.channel.isVoiceMessageEnabled = true
// GroupChannel - suggested replies
SendbirdUI.config.groupChannel.channel.isSuggestedRepliesEnabled = true
// GroupChannel - form type message
SendbirdUI.config.groupChannel.channel.isFormTypeMessageEnabled = true
if #available(iOS 14, *) {
SendbirdUI.config.groupChannel.channel.isMultipleFilesMessageEnabled = true
}
}
}