passepartout-apple/Passepartout-iOS/Scenes/Organizer/WizardProviderViewControlle...

103 lines
3.5 KiB
Swift
Raw Normal View History

2018-10-11 07:13:19 +00:00
//
// WizardProviderViewController.swift
// Passepartout-iOS
//
// Created by Davide De Rosa on 9/4/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 UIKit
import PassepartoutCore
2018-10-11 07:13:19 +00:00
class WizardProviderViewController: UITableViewController {
var available: [Infrastructure.Metadata] = []
2018-10-11 07:13:19 +00:00
private var createdProfile: ProviderConnectionProfile?
override func viewDidLoad() {
super.viewDidLoad()
title = L10n.Core.Organizer.Sections.Providers.header
2018-10-11 07:13:19 +00:00
}
private func next(withMetadata metadata: Infrastructure.Metadata) {
guard ProductManager.shared.isEligible(forProvider: metadata.name) else {
presentPurchaseScreen(forProduct: metadata.product)
return
}
let profile = ProviderConnectionProfile(name: metadata.name)
2018-10-11 07:13:19 +00:00
createdProfile = profile
let accountVC = StoryboardScene.Main.accountIdentifier.instantiate()
let infrastructure = InfrastructureFactory.shared.infrastructure(forName: metadata.name)
2018-10-11 07:13:19 +00:00
accountVC.usernamePlaceholder = infrastructure.defaults.username
accountVC.infrastructureName = infrastructure.name
accountVC.delegate = self
navigationController?.pushViewController(accountVC, animated: true)
}
private func finish(withCredentials credentials: Credentials) {
guard let profile = createdProfile else {
fatalError("No profile created?")
}
let service = TransientStore.shared.service
2018-10-11 07:13:19 +00:00
dismiss(animated: true) {
service.addOrReplaceProfile(profile, credentials: credentials)
2018-10-11 07:13:19 +00:00
}
}
@IBAction private func close() {
dismiss(animated: true, completion: nil)
}
}
// MARK: -
extension WizardProviderViewController {
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return available.count
2018-10-11 07:13:19 +00:00
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let metadata = available[indexPath.row]
2018-10-11 07:13:19 +00:00
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
cell.imageView?.image = metadata.logo
cell.leftText = metadata.description
2018-10-11 07:13:19 +00:00
return cell
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let metadata = available[indexPath.row]
next(withMetadata: metadata)
2018-10-11 07:13:19 +00:00
}
}
// MARK: -
extension WizardProviderViewController: AccountViewControllerDelegate {
func accountController(_: AccountViewController, didEnterCredentials credentials: Credentials) {
}
func accountControllerDidComplete(_ vc: AccountViewController) {
finish(withCredentials: vc.credentials)
}
}