//
//  ParsedFile+Alerts.swift
//  Passepartout-iOS
//
//  Created by Davide De Rosa on 10/27/18.
//  Copyright (c) 2018 Davide De Rosa. All rights reserved.
//
//  https://github.com/passepartoutvpn
//
//  This file is part of Passepartout.
//
//  Passepartout is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//
//  Passepartout is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with Passepartout.  If not, see <http://www.gnu.org/licenses/>.
//

import Foundation
import UIKit
import TunnelKit
import SwiftyBeaver

private let log = SwiftyBeaver.self

extension ParsedFile {
    static func from(_ url: URL, withErrorAlertIn viewController: UIViewController) -> ParsedFile? {
        let file: ParsedFile
        log.debug("Parsing configuration URL: \(url)")
        do {
            file = try TunnelKitProvider.Configuration.parsed(fromURL: url)
        } catch let e {
            let message = localizedMessage(forError: e)
            alertImportError(url: url, in: viewController, withMessage: message)
            return nil
        }
        return file
    }
    
    private static func alertImportError(url: URL, in vc: UIViewController, withMessage message: String) {
        let alert = Macros.alert(url.normalizedFilename, message)
//        alert.addDefaultAction(L10n.ParsedFile.Alerts.Buttons.report) {
//            var attach = IssueReporter.Attachments(debugLog: false, configurationURL: url)
//            attach.description = message
//            IssueReporter.shared.present(in: vc, withAttachments: attach)
//        }
        alert.addCancelAction(L10n.Global.ok)
        vc.present(alert, animated: true, completion: nil)
    }

    static func alertImportWarning(url: URL, in vc: UIViewController, withWarning warning: ApplicationError, completionHandler: @escaping (Bool) -> Void) {
        let message = details(forWarning: warning)
        let alert = Macros.alert(url.normalizedFilename, L10n.ParsedFile.Alerts.PotentiallyUnsupported.message(message))
        alert.addDefaultAction(L10n.Global.ok) {
            completionHandler(true)
        }
        alert.addCancelAction(L10n.Global.cancel) {
            completionHandler(false)
        }
        vc.present(alert, animated: true, completion: nil)
    }
    
    private static func localizedMessage(forError error: Error) -> String {
        if let appError = error as? ApplicationError {
            switch appError {
            case .missingConfiguration(let option):
                log.error("Could not parse configuration URL: missing configuration, \(option)")
                return L10n.ParsedFile.Alerts.Missing.message(option)
                
            case .unsupportedConfiguration(let option):
                log.error("Could not parse configuration URL: unsupported configuration, \(option)")
                return L10n.ParsedFile.Alerts.Unsupported.message(option)
                
            default:
                break
            }
        }
        log.error("Could not parse configuration URL: \(error)")
        return L10n.ParsedFile.Alerts.Parsing.message(error.localizedDescription)
    }
    
    private static func details(forWarning warning: ApplicationError) -> String {
        switch warning {
        case .missingConfiguration(let option):
            return option
            
        case .unsupportedConfiguration(let option):
            return option
            
        default:
            fatalError("Only use .missingConfiguration or .unsupportedConfiguration for warnings")
        }
    }
}