//
//  JPushDelegate.m
//  delegateExtention
//
//  Created by 万思 on 2020/2/15.
//  Copyright (c) 2020年 JPush. All rights reserved.
//

#import "JPushDelegate.h"
#import "JPushPlugin.h"
#import <objc/runtime.h>
#import <AdSupport/AdSupport.h>
#import <UserNotifications/UserNotifications.h>
#import "JPushDefine.h"

@implementation JPushDelegate

static JPushDelegate* _instance = nil;
// 初始化 全局变量
 NSString * _Nonnull deviceTokenAPNS = @"";
// 实现setter方法
void setDeviceTokenAPNS(NSString * _Nonnull value) {
    deviceTokenAPNS = value;
}
+(JPushDelegate*) getInstance {
    if (!_instance) {
        _instance = [[JPushDelegate alloc] init];
    }
    return _instance;
}

+(void)initJPush{
    JPushDelegate* _self = [JPushDelegate getInstance];
    [[NSNotificationCenter defaultCenter] addObserver:_self selector:@selector(applicationDidLaunch:) name:UIApplicationDidFinishLaunchingNotification object:nil];
}

NSDictionary *_launchOptions;
-(void)applicationDidLaunch:(NSNotification *)notification{
    
    if (!_jpushEventCache) {
        _jpushEventCache = @{}.mutableCopy;
    }
    
    [JPUSHService registrationIDCompletionHandler:^(int resCode, NSString *registrationID) {
        NSDictionary *event = @{@"registrationId": registrationID?:@""};
        [JPushPlugin fireDocumentEvent:JPushDocumentEvent_receiveRegistrationId jsString:[event toJsonString]];
    }];
    
    if (notification != nil &&
        [[UIDevice currentDevice].systemVersion floatValue] < 10.0) {// iOS 10 以后通过 openNotification 这个回调触发事件。
        if (notification.userInfo) {
            
            if ([notification.userInfo valueForKey:UIApplicationLaunchOptionsRemoteNotificationKey]) {
                [JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification
                                      jsString:[[self jpushFormatAPNSDic: notification.userInfo[UIApplicationLaunchOptionsRemoteNotificationKey]] toJsonString]];
            }
            
            if ([notification.userInfo valueForKey:UIApplicationLaunchOptionsLocalNotificationKey]) {
                UILocalNotification *localNotification = [notification.userInfo valueForKey:UIApplicationLaunchOptionsLocalNotificationKey];
                NSMutableDictionary *localNotificationEvent = @{}.mutableCopy;
                localNotificationEvent[@"content"] = localNotification.alertBody;
                localNotificationEvent[@"badge"] = @(localNotification.applicationIconBadgeNumber);
                localNotificationEvent[@"extras"] = localNotification.userInfo;
                
                [JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[localNotificationEvent toJsonString]];
            }
        }
    }
    
    [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{
    NSLog(@"我来到这里: %@\n");
    [self registerForRemoteNotification];
    [JPushPlugin setupJPushSDK:_launchOptions];
}

- (void)jpushSDKDidLoginNotification {
    NSDictionary *event = @{@"registrationId": JPUSHService.registrationID};
    [JPushPlugin fireDocumentEvent:JPushDocumentEvent_receiveRegistrationId jsString:[event toJsonString]];
}

- (NSMutableDictionary *)jpushFormatAPNSDic:(NSDictionary *)dic {
    NSMutableDictionary *extras = @{}.mutableCopy;
    for (NSString *key in dic) {
        if([key isEqualToString:@"_j_business"]      ||
           [key isEqualToString:@"_j_msgid"]         ||
           [key isEqualToString:@"_j_uid"]           ||
           [key isEqualToString:@"actionIdentifier"] ||
           [key isEqualToString:@"aps"]) {
            continue;
        }
        extras[key] = dic[key];
    }
    NSMutableDictionary *formatDic = dic.mutableCopy;
    formatDic[@"extras"] = extras;
    return formatDic;
}

-(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 UIApplicationStateBackground:
            eventName = JPushDocumentEvent_BackgroundNotification;
            break;
        default:
            eventName = JPushDocumentEvent_ReceiveNotification;
            break;
    }
    
    [JPushPlugin fireDocumentEvent:eventName jsString:[[self jpushFormatAPNSDic: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 = @{}.mutableCopy;
    
    if ([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
        userInfo = [self jpushFormatAPNSDic:notification.request.content.userInfo];
    } else {
        UNNotificationContent *content = notification.request.content;
        userInfo[@"content"] = content.body;
        userInfo[@"badge"] = content.badge;
        userInfo[@"extras"] = content.userInfo;
        userInfo[@"identifier"] = notification.request.identifier;
    }
    
    completionHandler(UNNotificationPresentationOptionBadge|UNNotificationPresentationOptionSound|UNNotificationPresentationOptionAlert);
    
    if ([userInfo[@"aps"][@"content-available"] isEqualToNumber:@(1)]) {// content-available 当用户开启后台推送是，防止触发两次事件
        return;
    }
    
    [JPushPlugin fireDocumentEvent:JPushDocumentEvent_ReceiveNotification jsString:[userInfo toJsonString]];
    
}

-(void)jpushNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandler{
    UNNotification *notification = response.notification;
    NSMutableDictionary *userInfo = @{}.mutableCopy;
    
    if ([notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) {
        userInfo = [self jpushFormatAPNSDic:notification.request.content.userInfo];
    } else {
        UNNotificationContent *content = notification.request.content;
        userInfo[@"content"] = content.body;
        userInfo[@"badge"] = content.badge;
        userInfo[@"extras"] = content.userInfo;
        userInfo[@"identifier"] = notification.request.identifier;
    }
    
    [JPushPlugin fireDocumentEvent:JPushDocumentEvent_OpenNotification jsString:[userInfo toJsonString]];
    completionHandler();
}

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification {
    NSMutableDictionary *localNotificationEvent = @{}.mutableCopy;
    localNotificationEvent[@"content"] = notification.alertBody;
    localNotificationEvent[@"badge"] = @(notification.applicationIconBadgeNumber);
    localNotificationEvent[@"extras"] = notification.userInfo;
    
    [[NSNotificationCenter defaultCenter] postNotificationName:JPushDocumentEvent_ReceiveLocalNotification object:localNotificationEvent];
}

- (void)applicationWillEnterForeground:(UIApplication *)application {
    //  [application setApplicationIconBadgeNumber:0];
    //  [application cancelAllLocalNotifications];
}

- (void)applicationDidEnterBackground:(UIApplication *)application {
    //  [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
}

@end
