|
|
|
|
@@ -1,156 +1,170 @@
|
|
|
|
|
//
|
|
|
|
|
// AppDelegate+JPush.m
|
|
|
|
|
// delegateExtention
|
|
|
|
|
//
|
|
|
|
|
// Created by 张庆贺 on 15/8/3.
|
|
|
|
|
// Copyright (c) 2015年 JPush. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import "AppDelegate+JPush.h"
|
|
|
|
|
#import "JPushPlugin.h"
|
|
|
|
|
#import <objc/runtime.h>
|
|
|
|
|
#import <AdSupport/AdSupport.h>
|
|
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
|
#import "JPushDefine.h"
|
|
|
|
|
|
|
|
|
|
@implementation AppDelegate (JPush)
|
|
|
|
|
|
|
|
|
|
+(void)load{
|
|
|
|
|
Method origin1;
|
|
|
|
|
Method swizzle1;
|
|
|
|
|
origin1 = class_getInstanceMethod([self class],@selector(init));
|
|
|
|
|
swizzle1 = class_getInstanceMethod([self class], @selector(init_plus));
|
|
|
|
|
method_exchangeImplementations(origin1, swizzle1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(instancetype)init_plus{
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidLaunch:) name:UIApplicationDidFinishLaunchingNotification object:nil];
|
|
|
|
|
return [self init_plus];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)fireOpenNotification:(NSTimer*)timer{
|
|
|
|
|
if (SharedJPushPlugin) {
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[timer.userInfo toJsonString]];
|
|
|
|
|
[timer invalidate];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NSDictionary *_launchOptions;
|
|
|
|
|
-(void)applicationDidLaunch:(NSNotification *)notification{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (notification) {
|
|
|
|
|
if (notification.userInfo) {
|
|
|
|
|
NSDictionary *userInfo1 = [notification.userInfo valueForKey:UIApplicationLaunchOptionsRemoteNotificationKey];
|
|
|
|
|
if (userInfo1.count > 0) {
|
|
|
|
|
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(fireOpenNotification:) userInfo:userInfo1 repeats:YES];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NSDictionary *userInfo2 = [notification.userInfo valueForKey:UIApplicationLaunchOptionsLocalNotificationKey];
|
|
|
|
|
if (userInfo2.count > 0) {
|
|
|
|
|
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(fireOpenNotification:) userInfo:userInfo2 repeats:YES];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[JPUSHService setDebugMode];
|
|
|
|
|
|
|
|
|
|
NSString *plistPath = [[NSBundle mainBundle] pathForResource:JPushConfig_FileName ofType:@"plist"];
|
|
|
|
|
NSMutableDictionary *plistData = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
|
|
|
|
|
NSNumber *delay = [plistData valueForKey:JPushConfig_Delay];
|
|
|
|
|
|
|
|
|
|
_launchOptions = notification.userInfo;
|
|
|
|
|
|
|
|
|
|
if (![delay boolValue]) {
|
|
|
|
|
[self startJPushSDK];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)startJPushSDK{
|
|
|
|
|
[self registerForRemoteNotification];
|
|
|
|
|
[JPushPlugin setupJPushSDK:_launchOptions];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)registerForRemoteNotification{
|
|
|
|
|
if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
|
|
|
|
|
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
|
|
|
|
|
JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
|
|
|
|
|
entity.types = UNAuthorizationOptionAlert|UNAuthorizationOptionBadge|UNAuthorizationOptionSound;
|
|
|
|
|
[JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
|
|
|
|
|
#endif
|
|
|
|
|
}else if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) {
|
|
|
|
|
//可以添加自定义categories
|
|
|
|
|
[JPUSHService registerForRemoteNotificationTypes:(UIUserNotificationTypeBadge |
|
|
|
|
|
UIUserNotificationTypeSound |
|
|
|
|
|
UIUserNotificationTypeAlert)
|
|
|
|
|
categories:nil];
|
|
|
|
|
} else if([[UIDevice currentDevice].systemVersion floatValue] < 8.0){
|
|
|
|
|
//categories 必须为nil
|
|
|
|
|
[JPUSHService registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge |
|
|
|
|
|
UIRemoteNotificationTypeSound |
|
|
|
|
|
UIRemoteNotificationTypeAlert)
|
|
|
|
|
categories:nil];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
|
|
[JPUSHService registerDeviceToken:deviceToken];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
|
|
|
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
|
|
|
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_ReceiveNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
|
|
|
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
|
|
|
NSString *eventName;
|
|
|
|
|
switch ([UIApplication sharedApplication].applicationState) {
|
|
|
|
|
case UIApplicationStateInactive:
|
|
|
|
|
eventName = JPushDocumentEvent_OpenNotification;
|
|
|
|
|
break;
|
|
|
|
|
case UIApplicationStateActive:
|
|
|
|
|
eventName = JPushDocumentEvent_ReceiveNotification;
|
|
|
|
|
break;
|
|
|
|
|
case UIApplicationStateBackground:
|
|
|
|
|
eventName = JPushDocumentEvent_BackgroundNotification;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
[JPushPlugin fireDocumentEvent:eventName jsString:[userInfo toJsonString]];
|
|
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(30 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
|
|
completionHandler(UIBackgroundFetchResultNewData);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler{
|
|
|
|
|
NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithDictionary:notification.request.content.userInfo];
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_ReceiveNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
completionHandler(UNNotificationPresentationOptionBadge|UNNotificationPresentationOptionSound|UNNotificationPresentationOptionAlert);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{
|
|
|
|
|
NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithDictionary:response.notification.request.content.userInfo];
|
|
|
|
|
@try {
|
|
|
|
|
[userInfo setValue:[response valueForKey:@"userText"] forKey:@"userText"];
|
|
|
|
|
} @catch (NSException *exception) { }
|
|
|
|
|
[userInfo setValue:response.actionIdentifier forKey:@"actionIdentifier"];
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
completionHandler();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:JPushDocumentEvent_ReceiveLocalNotification object:notification.userInfo];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
|
|
|
|
// [application setApplicationIconBadgeNumber:0];
|
|
|
|
|
// [application cancelAllLocalNotifications];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
|
|
|
// [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
//
|
|
|
|
|
// AppDelegate+JPush.m
|
|
|
|
|
// delegateExtention
|
|
|
|
|
//
|
|
|
|
|
// Created by 张庆贺 on 15/8/3.
|
|
|
|
|
// Copyright (c) 2015年 JPush. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import "AppDelegate+JPush.h"
|
|
|
|
|
#import "JPushPlugin.h"
|
|
|
|
|
#import <objc/runtime.h>
|
|
|
|
|
#import <AdSupport/AdSupport.h>
|
|
|
|
|
#import <UserNotifications/UserNotifications.h>
|
|
|
|
|
#import "JPushDefine.h"
|
|
|
|
|
|
|
|
|
|
@implementation AppDelegate (JPush)
|
|
|
|
|
|
|
|
|
|
+(void)load{
|
|
|
|
|
Method origin1;
|
|
|
|
|
Method swizzle1;
|
|
|
|
|
origin1 = class_getInstanceMethod([self class],@selector(init));
|
|
|
|
|
swizzle1 = class_getInstanceMethod([self class], @selector(init_plus));
|
|
|
|
|
method_exchangeImplementations(origin1, swizzle1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(instancetype)init_plus{
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidLaunch:) name:UIApplicationDidFinishLaunchingNotification object:nil];
|
|
|
|
|
return [self init_plus];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)fireOpenNotification:(NSTimer*)timer{
|
|
|
|
|
if (SharedJPushPlugin) {
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[timer.userInfo toJsonString]];
|
|
|
|
|
[timer invalidate];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NSDictionary *_launchOptions;
|
|
|
|
|
-(void)applicationDidLaunch:(NSNotification *)notification{
|
|
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(jpushSDKDidLoginNotification) name:kJPFNetworkDidLoginNotification object:nil];
|
|
|
|
|
|
|
|
|
|
if (notification) {
|
|
|
|
|
if (notification.userInfo) {
|
|
|
|
|
|
|
|
|
|
if ([notification.userInfo valueForKey:UIApplicationLaunchOptionsRemoteNotificationKey]) {
|
|
|
|
|
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(fireOpenNotification:)
|
|
|
|
|
userInfo:[notification.userInfo
|
|
|
|
|
valueForKey:UIApplicationLaunchOptionsRemoteNotificationKey] repeats:YES];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ([notification.userInfo valueForKey:UIApplicationLaunchOptionsLocalNotificationKey]) {
|
|
|
|
|
UILocalNotification *localNotification = [notification.userInfo valueForKey:UIApplicationLaunchOptionsLocalNotificationKey];
|
|
|
|
|
|
|
|
|
|
NSDictionary* localNotificationEvent = @{@"content":localNotification.alertBody,
|
|
|
|
|
@"badge": @(localNotification.applicationIconBadgeNumber),
|
|
|
|
|
@"extras":localNotification.userInfo,
|
|
|
|
|
};
|
|
|
|
|
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(fireOpenNotification:) userInfo:localNotificationEvent repeats:YES];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JPUSHService setDebugMode];
|
|
|
|
|
|
|
|
|
|
NSString *plistPath = [[NSBundle mainBundle] pathForResource:JPushConfig_FileName ofType:@"plist"];
|
|
|
|
|
NSMutableDictionary *plistData = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
|
|
|
|
|
NSNumber *delay = [plistData valueForKey:JPushConfig_Delay];
|
|
|
|
|
|
|
|
|
|
_launchOptions = notification.userInfo;
|
|
|
|
|
|
|
|
|
|
if (![delay boolValue]) {
|
|
|
|
|
[self startJPushSDK];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)startJPushSDK{
|
|
|
|
|
[self registerForRemoteNotification];
|
|
|
|
|
[JPushPlugin setupJPushSDK:_launchOptions];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)jpushSDKDidLoginNotification {
|
|
|
|
|
NSDictionary *event = @{@"registrationId": JPUSHService.registrationID};
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_receiveRegistrationId jsString:[event toJsonString]];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)registerForRemoteNotification{
|
|
|
|
|
if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
|
|
|
|
|
#ifdef NSFoundationVersionNumber_iOS_9_x_Max
|
|
|
|
|
JPUSHRegisterEntity * entity = [[JPUSHRegisterEntity alloc] init];
|
|
|
|
|
entity.types = UNAuthorizationOptionAlert|UNAuthorizationOptionBadge|UNAuthorizationOptionSound;
|
|
|
|
|
[JPUSHService registerForRemoteNotificationConfig:entity delegate:self];
|
|
|
|
|
#endif
|
|
|
|
|
}else if ([[UIDevice currentDevice].systemVersion floatValue] >= 8.0) {
|
|
|
|
|
//可以添加自定义categories
|
|
|
|
|
[JPUSHService registerForRemoteNotificationTypes:(UIUserNotificationTypeBadge |
|
|
|
|
|
UIUserNotificationTypeSound |
|
|
|
|
|
UIUserNotificationTypeAlert)
|
|
|
|
|
categories:nil];
|
|
|
|
|
} else if([[UIDevice currentDevice].systemVersion floatValue] < 8.0){
|
|
|
|
|
//categories 必须为nil
|
|
|
|
|
[JPUSHService registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge |
|
|
|
|
|
UIRemoteNotificationTypeSound |
|
|
|
|
|
UIRemoteNotificationTypeAlert)
|
|
|
|
|
categories:nil];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
|
|
|
|
|
[JPUSHService registerDeviceToken:deviceToken];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo{
|
|
|
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
|
|
|
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_ReceiveNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{
|
|
|
|
|
[JPUSHService handleRemoteNotification:userInfo];
|
|
|
|
|
NSString *eventName;
|
|
|
|
|
switch ([UIApplication sharedApplication].applicationState) {
|
|
|
|
|
case UIApplicationStateInactive:
|
|
|
|
|
eventName = JPushDocumentEvent_OpenNotification;
|
|
|
|
|
break;
|
|
|
|
|
case UIApplicationStateActive:
|
|
|
|
|
eventName = JPushDocumentEvent_ReceiveNotification;
|
|
|
|
|
break;
|
|
|
|
|
case UIApplicationStateBackground:
|
|
|
|
|
eventName = JPushDocumentEvent_BackgroundNotification;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
[JPushPlugin fireDocumentEvent:eventName jsString:[userInfo toJsonString]];
|
|
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(30 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
|
|
completionHandler(UIBackgroundFetchResultNewData);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)jpushNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(NSInteger))completionHandler{
|
|
|
|
|
NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithDictionary:notification.request.content.userInfo];
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_ReceiveNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
completionHandler(UNNotificationPresentationOptionBadge|UNNotificationPresentationOptionSound|UNNotificationPresentationOptionAlert);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
-(void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{
|
|
|
|
|
NSMutableDictionary *userInfo = [NSMutableDictionary dictionaryWithDictionary:response.notification.request.content.userInfo];
|
|
|
|
|
@try {
|
|
|
|
|
[userInfo setValue:[response valueForKey:@"userText"] forKey:@"userText"];
|
|
|
|
|
} @catch (NSException *exception) { }
|
|
|
|
|
[userInfo setValue:response.actionIdentifier forKey:@"actionIdentifier"];
|
|
|
|
|
[JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[userInfo toJsonString]];
|
|
|
|
|
completionHandler();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:JPushDocumentEvent_ReceiveLocalNotification object:notification.userInfo];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)applicationWillEnterForeground:(UIApplication *)application {
|
|
|
|
|
// [application setApplicationIconBadgeNumber:0];
|
|
|
|
|
// [application cancelAllLocalNotifications];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)applicationDidEnterBackground:(UIApplication *)application {
|
|
|
|
|
// [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|