#import "SNSMobileSdkCordovaPlugin.h"
#import <Cordova/CDV.h>
#import <IdensicMobileSDK/IdensicMobileSDK.h>

@interface SNSMobileSdkCordovaPlugin ()
@property (nonatomic, copy) void(^tokenExpirationOnComplete)(NSString * _Nullable newAccessToken);
@property (nonatomic, weak) SNSMobileSDK *sdk;
@end

@implementation SNSMobileSdkCordovaPlugin

- (void)launchSNSMobileSDK:(CDVInvokedUrlCommand *)command {
    
    NSDictionary *params = command.arguments.firstObject;
    
    if (![params isKindOfClass:NSDictionary.class]) {
        return [self complete:command withInvalidParameters:@"No params detected"];
    }
    
    NSString *apiUrl = params[@"apiUrl"];
    NSString *accessToken = params[@"accessToken"];
    NSString *locale = params[@"locale"];
    
    SNSEnvironment environment = (apiUrl && apiUrl.length > 0) ? apiUrl : SNSEnvironmentProduction;

    SNSMobileSDK *sdk = [SNSMobileSDK setupWithAccessToken:accessToken
                                               environment:environment];

    if (locale) {
        sdk.locale = locale;
    }
    
    if (!sdk.isReady) {
        [self complete:command withSDK:sdk];
        return;
    }
    
    self.sdk = sdk;

    if ([params[@"debug"] boolValue]) {
        sdk.logLevel = SNSLogLevel_Debug;
    }
    
    if (params[@"isAnalyticsEnabled"]) {
        sdk.isAnalyticsEnabled = [params[@"isAnalyticsEnabled"] boolValue];
    }

    if ([params[@"autoCloseOnApprove"] isKindOfClass:NSNumber.class]) {
        [sdk setOnApproveDismissalTimeInterval:[params[@"autoCloseOnApprove"] doubleValue]];
    }

    if (params[@"settings"]) {
        sdk.settings = params[@"settings"];
    }

    if (params[@"strings"]) {
        sdk.strings = params[@"strings"];
    }

    if (params[@"applicantConf"][@"email"]) {
        sdk.initialEmail = params[@"applicantConf"][@"email"];
    }
    if (params[@"applicantConf"][@"phone"]) {
        sdk.initialPhone = params[@"applicantConf"][@"phone"];
    }

    if (params[@"preferredDocumentDefinitions"]) {
        [sdk setPreferredDocumentDefinitionsFromJSON: params[@"preferredDocumentDefinitions"]];
    }

    __weak SNSMobileSdkCordovaPlugin *weakSelf = self;
    
    [sdk tokenExpirationHandler:^(void (^ _Nonnull onComplete)(NSString * _Nullable)) {
        
        weakSelf.tokenExpirationOnComplete = onComplete;
        
        [weakSelf.commandDelegate evalJs:@"SNSMobileSDK.getNewAccessToken();" scheduledOnRunLoop:NO];
    }];

    [sdk onDidDismiss:^(SNSMobileSDK * _Nonnull sdk) {
        
        [weakSelf complete:command withSDK:sdk];
    }];
    
    if (params[@"hasHandlers"][@"onStatusChanged"]) {

        [sdk setOnStatusDidChange:^(SNSMobileSDK * _Nonnull sdk, SNSMobileSDKStatus prevStatus) {
            
            [weakSelf sendEventWithName:@"onStatusChanged" body:@{
                @"newStatus": [sdk descriptionForStatus:sdk.status] ?: @"",
                @"prevStatus": [sdk descriptionForStatus:prevStatus] ?: @"",
            }];
        }];
    }
    
    if (params[@"hasHandlers"][@"onEvent"]) {
        
        [sdk onEvent:^(SNSMobileSDK * _Nonnull sdk, SNSEvent * _Nonnull event) {

            [weakSelf sendEventWithName:@"onEvent" body:@{
                @"eventType": [event descriptionForEventType:event.eventType] ?: @"",
                @"payload": event.payload ?: @{},
            }];
        }];
    }

    if (params[@"theme"]) {
    
        sdk.theme = [SNSTheme fromJSON:params[@"theme"]];
    }

    [self applyCustomizationIfAny];

    [sdk presentFrom:self.viewController];
}

- (void)setNewAccessToken:(CDVInvokedUrlCommand*)command {
    
    NSString *newAccessToken = command.arguments.firstObject;
    
//    NSLog(@"got new token: %@", newAccessToken);
    
    dispatch_async(dispatch_get_main_queue(), ^{
        if (self.tokenExpirationOnComplete) {
            self.tokenExpirationOnComplete(newAccessToken);
            self.tokenExpirationOnComplete = nil;
        }
    });
}

- (void)dismiss:(CDVInvokedUrlCommand*)command {

    [self.sdk dismiss];
}

#pragma mark - Customization

/**
 * Usage:
 *
 * Add a class named `IdensicMobileSDKCustomization` into the main project
 * and define a static method named `apply:` that will take an instance of `SNSMobileSDK`
 *
 * For example, in Swift:
 *
 * import IdensicMobileSDK
 *
 * class IdensicMobileSDKCustomization: NSObject {
 *
 *   @objc static func apply(_ sdk: SNSMobileSDK) {
 *   }
 * }
 *
 */
- (void)applyCustomizationIfAny {
    
    NSString *className = @"IdensicMobileSDKCustomization";
    
    Class customization = [NSBundle.mainBundle classNamed:className];
    if (!customization) {
        NSString *classPrefix = [NSBundle.mainBundle objectForInfoDictionaryKey:(__bridge NSString *)kCFBundleExecutableKey];
        if (classPrefix) {
            customization = [NSBundle.mainBundle classNamed:[NSString stringWithFormat:@"%@.%@", classPrefix, className]];
        }
    }
    
    if (customization && [customization respondsToSelector:@selector(apply:)]) {
        [customization performSelector:@selector(apply:) withObject:self.sdk];
    }
}

#pragma mark - Helpers

- (NSString *)stringFromJSON:(NSDictionary *)dict {
    
    NSError *error;
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:dict
                                                       options:0
                                                         error:&error];
    
    if (!jsonData) {
        return @"{}";
    } else {
        return [NSString.alloc initWithData:jsonData encoding:NSUTF8StringEncoding];
    }
}

- (void)sendEventWithName:(NSString *)name body:(NSDictionary *)body {

    NSString *jsonString = body ? [self stringFromJSON:body] : @"{}"; 

    NSString *command = [NSString stringWithFormat:@"SNSMobileSDK.sendEvent('%@', %@);", name, jsonString];

    if (NSThread.isMainThread) {
        [self.commandDelegate evalJs:command scheduledOnRunLoop:NO];
    } else{
        dispatch_async(dispatch_get_main_queue(), ^{
            [self.commandDelegate evalJs:command scheduledOnRunLoop:NO];
        });
    }
}

- (void)complete:(CDVInvokedUrlCommand *)command withSDK:(SNSMobileSDK *)sdk {

    NSMutableDictionary *result = NSMutableDictionary.new;
    
    result[@"success"] = @(sdk.status != SNSMobileSDKStatus_Failed);
    result[@"status"] = [sdk descriptionForStatus:sdk.status];
    
    if (sdk.status == SNSMobileSDKStatus_Failed) {
        result[@"errorType"] = [sdk descriptionForFailReason:sdk.failReason];
        result[@"errorMsg"] = sdk.verboseStatus;
    }

    [self complete:command withResult:result.copy];
}

- (void)complete:(CDVInvokedUrlCommand *)command withInvalidParameters:(NSString *)message {

    NSDictionary *result = @{
        @"success": @NO,
        @"status": @"Failed",
        @"errorType": @"InvalidParameters",
        @"errorMsg": message ?: @"",
    };
    
    [self complete:command withResult:result];
}

- (void)complete:(CDVInvokedUrlCommand *)command withResult:(NSDictionary *)result {
    
    CDVCommandStatus commandStatus = CDVCommandStatus_OK; //[result[@"success"] boolValue] ? CDVCommandStatus_OK : CDVCommandStatus_ERROR;
    
    CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:commandStatus
                                                  messageAsDictionary:result];
    
    [self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}

@end
