passepartout-apple/Passepartout-iOS/Global/IssueReporter.swift

102 lines
4.4 KiB
Swift
Raw Normal View History

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
import TunnelKit
2018-10-11 07:13:19 +00:00
import MessageUI
import PassepartoutCore
2018-10-11 07:13:19 +00:00
class IssueReporter: NSObject {
static let shared = IssueReporter()
private weak var viewController: UIViewController?
override private init() {
super.init()
}
2019-09-05 20:50:56 +00:00
func present(in viewController: UIViewController, withIssue issue: Issue) {
2018-10-11 07:13:19 +00:00
guard MFMailComposeViewController.canSendMail() else {
let app = UIApplication.shared
let V = AppConstants.IssueReporter.Email.self
let body = V.body(V.template, DebugLog(raw: "--").decoratedString())
guard let url = Utils.mailto(to: V.recipient, subject: V.subject, body: body), app.canOpenURL(url) else {
let alert = Macros.alert(L10n.Core.IssueReporter.title, L10n.Core.Global.emailNotConfigured)
alert.addCancelAction(L10n.Core.Global.ok)
viewController.present(alert, animated: true, completion: nil)
return
}
app.open(url, options: [:], completionHandler: nil)
2018-10-11 07:13:19 +00:00
return
}
self.viewController = viewController
2019-09-05 20:50:56 +00:00
if issue.debugLog {
let alert = Macros.alert(L10n.Core.IssueReporter.title, L10n.Core.IssueReporter.message)
alert.addDefaultAction(L10n.Core.IssueReporter.Buttons.accept) {
VPN.shared.requestDebugLog(fallback: AppConstants.Log.debugSnapshot) {
2019-09-05 20:50:56 +00:00
self.composeEmail(withDebugLog: $0, configurationURL: issue.configurationURL, description: issue.description)
}
2018-10-11 07:13:19 +00:00
}
alert.addCancelAction(L10n.Core.Global.cancel)
viewController.present(alert, animated: true, completion: nil)
} else {
2019-09-05 20:50:56 +00:00
composeEmail(withDebugLog: nil, configurationURL: issue.configurationURL, description: issue.description)
2018-10-11 07:13:19 +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()
vc.setToRecipients([AppConstants.IssueReporter.Email.recipient])
vc.setSubject(AppConstants.IssueReporter.Email.subject)
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()
vc.addAttachmentData(attachment, mimeType: AppConstants.IssueReporter.MIME.debugLog, fileName: AppConstants.IssueReporter.Filenames.debugLog)
}
if let url = configurationURL {
do {
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) {
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)
}
}