mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
97 lines
3.2 KiB
Swift
97 lines
3.2 KiB
Swift
//
|
|
// Copyright (c) 2016 Google Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import UIKit
|
|
import Firebase
|
|
import FirebaseInstanceID
|
|
import FirebaseMessaging
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
|
|
// Register for remote notifications
|
|
if #available(iOS 8.0, *) {
|
|
let settings: UIUserNotificationSettings =
|
|
UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: nil)
|
|
application.registerUserNotificationSettings(settings)
|
|
application.registerForRemoteNotifications()
|
|
} else {
|
|
// Fallback
|
|
let types: UIRemoteNotificationType = [.Alert, .Badge, .Sound]
|
|
application.registerForRemoteNotificationTypes(types)
|
|
}
|
|
|
|
FIRApp.configure()
|
|
|
|
// Add observer for InstanceID token refresh callback.
|
|
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(self.tokenRefreshNotificaiton),
|
|
name: kFIRInstanceIDTokenRefreshNotification, object: nil)
|
|
|
|
return true
|
|
}
|
|
|
|
// [START receive_message]
|
|
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject],
|
|
fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
|
|
// If you are receiving a notification message while your app is in the background,
|
|
// this callback will not be fired till the user taps on the notification launching the application.
|
|
// TODO: Handle data of notification
|
|
|
|
// Print message ID.
|
|
print("Message ID: \(userInfo["gcm.message_id"]!)")
|
|
|
|
// Print full message.
|
|
print("%@", userInfo)
|
|
}
|
|
// [END receive_message]
|
|
|
|
// [START refresh_token]
|
|
func tokenRefreshNotificaiton(notification: NSNotification) {
|
|
let refreshedToken = FIRInstanceID.instanceID().token()!
|
|
print("InstanceID token: \(refreshedToken)")
|
|
|
|
// Connect to FCM since connection may have failed when attempted before having a token.
|
|
connectToFcm()
|
|
}
|
|
// [END refresh_token]
|
|
|
|
// [START connect_to_fcm]
|
|
func connectToFcm() {
|
|
FIRMessaging.messaging().connectWithCompletion { (error) in
|
|
if (error != nil) {
|
|
print("Unable to connect with FCM. \(error)")
|
|
} else {
|
|
print("Connected to FCM.")
|
|
}
|
|
}
|
|
}
|
|
// [END connect_to_fcm]
|
|
|
|
func applicationDidBecomeActive(application: UIApplication) {
|
|
connectToFcm()
|
|
}
|
|
|
|
// [START disconnect_from_fcm]
|
|
func applicationDidEnterBackground(application: UIApplication) {
|
|
FIRMessaging.messaging().disconnect()
|
|
print("Disconnected from FCM.")
|
|
}
|
|
// [END disconnect_from_fcm]
|
|
}
|