// // ShortcutsAddViewController.swift // Passepartout-iOS // // Created by Davide De Rosa on 3/18/19. // Copyright (c) 2019 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 . // import UIKit import IntentsUI import Passepartout_Core @available(iOS 12, *) protocol ShortcutsAddViewControllerDelegate: class { func shortcutAddController(_ controller: UIViewController?, voiceShortcut: INVoiceShortcut) func shortcutAddControllerDidCancel(_ controller: UIViewController?) } @available(iOS 12, *) class ShortcutsAddViewController: UITableViewController, INUIAddVoiceShortcutViewControllerDelegate, TableModelHost { weak var delegate: ShortcutsAddViewControllerDelegate? // MARK: TableModel let model: TableModel = { let model: TableModel = TableModel() model.add(.vpn) model.add(.wifi) model.add(.cellular) model.set([.connect, .enableVPN, .disableVPN], in: .vpn) model.set([.trustCurrentWiFi, .untrustCurrentWiFi], in: .wifi) model.set([.trustCellular, .untrustCellular], in: .cellular) model.setHeader(L10n.Shortcuts.Add.Sections.Vpn.header, for: .vpn) model.setHeader(L10n.Shortcuts.Add.Sections.Wifi.header, for: .wifi) model.setHeader(L10n.Shortcuts.Add.Sections.Cellular.header, for: .cellular) return model }() func reloadModel() { } // MARK: UIViewController override func viewDidLoad() { super.viewDidLoad() title = L10n.Shortcuts.Add.title } // MARK: UITableViewController enum SectionType { case vpn case wifi case cellular } enum RowType { case connect // host or provider+location case enableVPN case disableVPN case trustCurrentWiFi case untrustCurrentWiFi case trustCellular case untrustCellular } override func numberOfSections(in tableView: UITableView) -> Int { return model.count } override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { return model.header(for: section) } override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return model.count(for: section) } override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = Cells.setting.dequeue(from: tableView, for: indexPath) switch model.row(at: indexPath) { case .connect: cell.leftText = L10n.Shortcuts.Add.Cells.Connect.caption case .enableVPN: cell.leftText = L10n.Shortcuts.Add.Cells.EnableVpn.caption case .disableVPN: cell.leftText = L10n.Shortcuts.Add.Cells.DisableVpn.caption case .trustCurrentWiFi: cell.leftText = L10n.Shortcuts.Add.Cells.TrustCurrentWifi.caption case .untrustCurrentWiFi: cell.leftText = L10n.Shortcuts.Add.Cells.UntrustCurrentWifi.caption case .trustCellular: cell.leftText = L10n.Shortcuts.Add.Cells.TrustCellular.caption case .untrustCellular: cell.leftText = L10n.Shortcuts.Add.Cells.UntrustCellular.caption } cell.apply(Theme.current) return cell } override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { switch model.row(at: indexPath) { case .connect: addConnect() case .enableVPN: addEnable() case .disableVPN: addDisable() case .trustCurrentWiFi: addTrustWiFi() case .untrustCurrentWiFi: addUntrustWiFi() case .trustCellular: addTrustCellular() case .untrustCellular: addUntrustCellular() } } // MARK: Actions override func prepare(for segue: UIStoryboardSegue, sender: Any?) { if let vc = segue.destination as? ShortcutsConnectToViewController { vc.delegate = delegate } } private func addConnect() { guard TransientStore.shared.service.hasProfiles() else { let alert = Macros.alert( L10n.Shortcuts.Add.Cells.Connect.caption, L10n.Shortcuts.Add.Alerts.NoProfiles.message ) alert.addAction(L10n.Global.ok) { if let ip = self.tableView.indexPathForSelectedRow { self.tableView.deselectRow(at: ip, animated: true) } } present(alert, animated: true, completion: nil) return } perform(segue: StoryboardSegue.Shortcuts.connectToSegueIdentifier) } private func addEnable() { addShortcut(with: EnableVPNIntent()) } private func addDisable() { addShortcut(with: DisableVPNIntent()) } private func addTrustWiFi() { addShortcut(with: TrustCurrentNetworkIntent()) } private func addUntrustWiFi() { addShortcut(with: UntrustCurrentNetworkIntent()) } private func addTrustCellular() { addShortcut(with: TrustCellularNetworkIntent()) } private func addUntrustCellular() { addShortcut(with: UntrustCellularNetworkIntent()) } private func addShortcut(with intent: INIntent) { guard let shortcut = INShortcut(intent: intent) else { return } let vc = INUIAddVoiceShortcutViewController(shortcut: shortcut) vc.delegate = self present(vc, animated: true, completion: nil) } @IBAction private func close() { dismiss(animated: true, completion: nil) } // MARK: INUIAddVoiceShortcutViewControllerDelegate func addVoiceShortcutViewController(_ controller: INUIAddVoiceShortcutViewController, didFinishWith voiceShortcut: INVoiceShortcut?, error: Error?) { guard let voiceShortcut = voiceShortcut else { delegate?.shortcutAddControllerDidCancel(self) return } delegate?.shortcutAddController(self, voiceShortcut: voiceShortcut) } func addVoiceShortcutViewControllerDidCancel(_ controller: INUIAddVoiceShortcutViewController) { delegate?.shortcutAddControllerDidCancel(self) } }