//
/* NOTICE: All information contained herein is, and remains the property of Brightinsight Inc. or its customer. 
The intellectual and technical concepts contained herein are proprietary to Brightinsight Inc. or its customer and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret or copyright law.
Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Brightinsight Inc. or its customer. Access to the source code contained herein is hereby forbidden to anyone except current Brightinsight Inc. employees, managers or contractors who have executed
Confidentiality and Non-disclosure agreements explicitly covering such access.
*/
/**
* System Name : BISDKCore
* Component ID : BISDKUploaderInteractor
* Description : 
* Author: Arnold Dominguez
* Copyright © : Brightinsight, Inc.
* -----------------------
* Revision Change
* -----------------------
* Author            Date             Version       Change-Description
*========================================================================================================
*/

import Foundation


protocol BISDKLogUploader {
}
extension BISDKLogUploader {
    func send(eventID: BISDKLogEventID, type: BISDKLogEventType, extras: [String: String], core: BISDKCoreModule?) {
        let logEvent = BISDKLogEvent(event: eventID, type: type, date: Date(), extras: extras)
        
        guard
            let uploader = try? core?.getUploader(),
            let payload = BISDKLogPayloadEncoder.encode(event: logEvent)
        else { return }
        
        uploader.save(payload: payload, for: .log) { uuid in
            #if DEBUG
            print("*** Log entity created with ID \(uuid) ***")
            #endif
        }
    }
}
