2018-10-11 07:13:19 +00:00
|
|
|
//
|
|
|
|
// IssueReporter.swift
|
|
|
|
// Passepartout-iOS
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 9/26/18.
|
2019-03-09 10:44:44 +00:00
|
|
|
// Copyright (c) 2019 Davide De Rosa. All rights reserved.
|
2018-10-11 07:13:19 +00:00
|
|
|
//
|
2018-11-03 21:33:30 +00:00
|
|
|
// https://github.com/passepartoutvpn
|
2018-10-11 07:13:19 +00:00
|
|
|
//
|
|
|
|
// 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
|
2018-10-26 22:17:28 +00:00
|
|
|
import TunnelKit
|
2018-10-11 07:13:19 +00:00
|
|
|
import MessageUI
|
2019-03-18 10:52:19 +00:00
|
|
|
import Passepartout_Core
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
class IssueReporter: NSObject {
|
2018-10-23 08:25:41 +00:00
|
|
|
struct Attachments {
|
|
|
|
let debugLog: Bool
|
|
|
|
|
|
|
|
let configurationURL: URL?
|
|
|
|
|
2018-10-23 08:49:35 +00:00
|
|
|
var description: String?
|
|
|
|
|
2018-10-23 08:25:41 +00:00
|
|
|
init(debugLog: Bool, configurationURL: URL?) {
|
|
|
|
self.debugLog = debugLog
|
|
|
|
self.configurationURL = configurationURL
|
|
|
|
}
|
|
|
|
|
|
|
|
init(debugLog: Bool, profile: ConnectionProfile) {
|
|
|
|
let url = TransientStore.shared.service.configurationURL(for: profile)
|
|
|
|
self.init(debugLog: debugLog, configurationURL: url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
static let shared = IssueReporter()
|
|
|
|
|
|
|
|
private weak var viewController: UIViewController?
|
|
|
|
|
|
|
|
override private init() {
|
|
|
|
super.init()
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:25:41 +00:00
|
|
|
func present(in viewController: UIViewController, withAttachments attachments: Attachments) {
|
2018-10-11 07:13:19 +00:00
|
|
|
guard MFMailComposeViewController.canSendMail() else {
|
2019-04-07 14:16:59 +00:00
|
|
|
let alert = Macros.alert(L10n.IssueReporter.title, L10n.Global.emailNotConfigured)
|
2018-10-11 07:13:19 +00:00
|
|
|
alert.addCancelAction(L10n.Global.ok)
|
|
|
|
viewController.present(alert, animated: true, completion: nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
self.viewController = viewController
|
|
|
|
|
2018-10-23 08:25:41 +00:00
|
|
|
if attachments.debugLog {
|
|
|
|
let alert = Macros.alert(L10n.IssueReporter.title, L10n.IssueReporter.message)
|
|
|
|
alert.addDefaultAction(L10n.IssueReporter.Buttons.accept) {
|
|
|
|
VPN.shared.requestDebugLog(fallback: AppConstants.Log.debugSnapshot) {
|
2018-10-23 08:49:35 +00:00
|
|
|
self.composeEmail(withDebugLog: $0, configurationURL: attachments.configurationURL, description: attachments.description)
|
2018-10-23 08:25:41 +00:00
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
2018-10-23 08:25:41 +00:00
|
|
|
alert.addCancelAction(L10n.Global.cancel)
|
|
|
|
viewController.present(alert, animated: true, completion: nil)
|
|
|
|
} else {
|
2018-10-23 08:49:35 +00:00
|
|
|
composeEmail(withDebugLog: nil, configurationURL: attachments.configurationURL, description: attachments.description)
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:49:35 +00:00
|
|
|
private func composeEmail(withDebugLog debugLog: String?, configurationURL: URL?, description: String?) {
|
2018-10-11 07:13:19 +00:00
|
|
|
let metadata = DebugLog(raw: "--").decoratedString()
|
|
|
|
|
|
|
|
let vc = MFMailComposeViewController()
|
2019-04-07 14:27:16 +00:00
|
|
|
vc.setToRecipients([AppConstants.IssueReporter.Email.recipient])
|
2019-04-07 14:56:38 +00:00
|
|
|
vc.setSubject(AppConstants.IssueReporter.Email.subject)
|
2019-04-07 14:27:16 +00:00
|
|
|
vc.setMessageBody(AppConstants.IssueReporter.Email.body(description ?? AppConstants.IssueReporter.Email.template, metadata), isHTML: false)
|
2018-10-11 07:13:19 +00:00
|
|
|
if let raw = debugLog {
|
|
|
|
let attachment = DebugLog(raw: raw).decoratedData()
|
2018-10-23 08:25:41 +00:00
|
|
|
vc.addAttachmentData(attachment, mimeType: AppConstants.IssueReporter.MIME.debugLog, fileName: AppConstants.IssueReporter.Filenames.debugLog)
|
|
|
|
}
|
2018-10-26 22:17:28 +00:00
|
|
|
if let url = configurationURL {
|
|
|
|
do {
|
2019-05-23 21:13:45 +00:00
|
|
|
let parsedFile = try OpenVPN.ConfigurationParser.parsed(fromURL: url, returnsStripped: true)
|
2018-10-27 09:36:41 +00:00
|
|
|
if let attachment = parsedFile.strippedLines?.joined(separator: "\n").data(using: .utf8) {
|
2018-10-26 22:17:28 +00:00
|
|
|
vc.addAttachmentData(attachment, mimeType: AppConstants.IssueReporter.MIME.configuration, fileName: AppConstants.IssueReporter.Filenames.configuration)
|
|
|
|
}
|
|
|
|
} catch {
|
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
vc.mailComposeDelegate = self
|
|
|
|
vc.apply(Theme.current)
|
|
|
|
viewController?.present(vc, animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension IssueReporter: MFMailComposeViewControllerDelegate {
|
|
|
|
func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
|
|
|
|
viewController?.dismiss(animated: true, completion: nil)
|
|
|
|
}
|
|
|
|
}
|