2018-10-11 07:13:19 +00:00
|
|
|
//
|
|
|
|
// ProviderPoolViewController.swift
|
|
|
|
// Passepartout-iOS
|
|
|
|
//
|
|
|
|
// Created by Davide De Rosa on 6/12/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
|
2019-03-18 10:52:19 +00:00
|
|
|
import Passepartout_Core
|
2018-10-11 07:13:19 +00:00
|
|
|
|
2019-04-06 19:10:37 +00:00
|
|
|
private class PoolModel {
|
|
|
|
let title: String
|
|
|
|
|
|
|
|
var poolsByGroup: [PoolGroup: [Pool]] = [:]
|
|
|
|
|
|
|
|
private(set) var sortedGroups: [PoolGroup] = []
|
|
|
|
|
2019-04-06 20:16:10 +00:00
|
|
|
var isEmpty: Bool {
|
|
|
|
return sortedGroups.isEmpty
|
|
|
|
}
|
|
|
|
|
2019-04-06 19:10:37 +00:00
|
|
|
init(title: String) {
|
|
|
|
self.title = title
|
|
|
|
}
|
|
|
|
|
|
|
|
func addPool(_ p: Pool) {
|
|
|
|
let group = p.group()
|
|
|
|
if var existingPools = poolsByGroup[group] {
|
|
|
|
existingPools.append(p)
|
|
|
|
poolsByGroup[group] = existingPools
|
|
|
|
} else {
|
|
|
|
poolsByGroup[group] = [p]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func sort() {
|
|
|
|
sortedGroups = poolsByGroup.keys.sorted()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
protocol ProviderPoolViewControllerDelegate: class {
|
|
|
|
func providerPoolController(_: ProviderPoolViewController, didSelectPool pool: Pool)
|
|
|
|
}
|
|
|
|
|
|
|
|
class ProviderPoolViewController: UIViewController {
|
|
|
|
@IBOutlet private weak var tableView: UITableView!
|
|
|
|
|
2019-04-06 19:10:37 +00:00
|
|
|
private var models: [PoolModel] = []
|
2019-04-06 13:07:52 +00:00
|
|
|
|
2019-04-06 14:07:54 +00:00
|
|
|
private var currentPool: Pool?
|
2018-10-11 07:13:19 +00:00
|
|
|
|
|
|
|
weak var delegate: ProviderPoolViewControllerDelegate?
|
|
|
|
|
2019-04-06 14:07:54 +00:00
|
|
|
func setPools(_ pools: [Pool], currentPoolId: String?) {
|
2019-04-06 19:10:37 +00:00
|
|
|
let freeModel = PoolModel(title: L10n.Provider.Pool.Sections.Free.header)
|
|
|
|
let paidModel = PoolModel(title: L10n.Provider.Pool.Sections.Paid.header)
|
2019-04-06 13:07:52 +00:00
|
|
|
for p in pools {
|
2019-04-06 19:10:37 +00:00
|
|
|
if p.isFree ?? false {
|
|
|
|
freeModel.addPool(p)
|
2019-04-06 13:12:39 +00:00
|
|
|
} else {
|
2019-04-06 19:10:37 +00:00
|
|
|
paidModel.addPool(p)
|
2019-04-06 13:12:39 +00:00
|
|
|
}
|
|
|
|
if p.id == currentPoolId {
|
|
|
|
currentPool = p
|
|
|
|
}
|
2019-04-06 13:07:52 +00:00
|
|
|
}
|
2019-04-06 19:10:37 +00:00
|
|
|
freeModel.sort()
|
|
|
|
paidModel.sort()
|
|
|
|
|
|
|
|
models = []
|
2019-04-06 20:16:10 +00:00
|
|
|
if !freeModel.isEmpty {
|
2019-04-06 19:10:37 +00:00
|
|
|
models.append(freeModel)
|
|
|
|
}
|
2019-04-06 20:16:10 +00:00
|
|
|
if !paidModel.isEmpty {
|
2019-04-06 19:10:37 +00:00
|
|
|
models.append(paidModel)
|
|
|
|
}
|
2019-04-06 13:07:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
// MARK: UIViewController
|
|
|
|
|
|
|
|
override func awakeFromNib() {
|
|
|
|
super.awakeFromNib()
|
|
|
|
|
|
|
|
applyDetailTitle(Theme.current)
|
|
|
|
}
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
|
|
|
|
|
|
|
title = L10n.Service.Cells.Provider.Pool.caption
|
|
|
|
tableView.reloadData()
|
|
|
|
if let ip = selectedIndexPath {
|
2019-04-06 18:14:54 +00:00
|
|
|
tableView.selectRowAsync(at: ip)
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MARK: -
|
|
|
|
|
|
|
|
extension ProviderPoolViewController: UITableViewDataSource, UITableViewDelegate {
|
|
|
|
private var selectedIndexPath: IndexPath? {
|
2019-04-06 19:10:37 +00:00
|
|
|
for (i, model) in models.enumerated() {
|
|
|
|
for entries in model.poolsByGroup.enumerated() {
|
|
|
|
guard let _ = entries.element.value.index(where: { $0.id == currentPool?.id }) else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
guard let row = model.sortedGroups.index(of: entries.element.key) else {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return IndexPath(row: row, section: i)
|
2019-04-06 13:07:52 +00:00
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
2019-04-06 13:07:52 +00:00
|
|
|
return nil
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 19:10:37 +00:00
|
|
|
func numberOfSections(in tableView: UITableView) -> Int {
|
|
|
|
return models.count
|
|
|
|
}
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
|
|
|
|
guard models.count > 1 else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
let model = models[section]
|
|
|
|
return model.title
|
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
|
2019-04-06 19:10:37 +00:00
|
|
|
let model = models[section]
|
|
|
|
return model.sortedGroups.count
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
|
2019-04-06 19:10:37 +00:00
|
|
|
let model = models[indexPath.section]
|
|
|
|
let group = model.sortedGroups[indexPath.row]
|
|
|
|
let groupPools = model.poolsByGroup[group]!
|
2019-04-06 13:12:39 +00:00
|
|
|
guard let pool = groupPools.first else {
|
|
|
|
fatalError("Empty pools in group \(group)")
|
|
|
|
}
|
|
|
|
|
2018-10-11 07:13:19 +00:00
|
|
|
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
|
2019-04-05 09:59:39 +00:00
|
|
|
cell.imageView?.image = pool.logo
|
2019-03-21 09:42:51 +00:00
|
|
|
cell.leftText = pool.localizedName
|
2019-04-06 13:12:39 +00:00
|
|
|
if groupPools.count > 1 {
|
|
|
|
cell.rightText = pool.area?.uppercased()
|
2019-04-06 18:14:54 +00:00
|
|
|
cell.accessoryType = .detailDisclosureButton // no checkmark!
|
2019-04-06 13:12:39 +00:00
|
|
|
} else {
|
|
|
|
cell.rightText = pool.areaId?.uppercased()
|
|
|
|
}
|
2018-10-11 07:13:19 +00:00
|
|
|
cell.isTappable = true
|
|
|
|
return cell
|
|
|
|
}
|
|
|
|
|
|
|
|
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
|
2019-04-06 19:10:37 +00:00
|
|
|
let model = models[indexPath.section]
|
|
|
|
let group = model.sortedGroups[indexPath.row]
|
|
|
|
let groupPools = model.poolsByGroup[group]!
|
2019-04-06 13:12:39 +00:00
|
|
|
guard let pool = groupPools.first else {
|
|
|
|
fatalError("Empty pools in group \(group)")
|
|
|
|
}
|
2019-04-06 14:43:43 +00:00
|
|
|
currentPool = pool
|
|
|
|
delegate?.providerPoolController(self, didSelectPool: pool)
|
|
|
|
}
|
2019-04-06 13:07:52 +00:00
|
|
|
|
2019-04-06 14:43:43 +00:00
|
|
|
func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath) {
|
2019-04-06 19:10:37 +00:00
|
|
|
let model = models[indexPath.section]
|
|
|
|
let group = model.sortedGroups[indexPath.row]
|
|
|
|
let groupPools = model.poolsByGroup[group]!
|
2019-04-06 14:43:43 +00:00
|
|
|
guard let pool = groupPools.first else {
|
|
|
|
fatalError("Empty pools in group \(group)")
|
|
|
|
}
|
|
|
|
guard groupPools.count > 1 else {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let vc = OptionViewController<Pool>()
|
|
|
|
vc.title = pool.localizedCountry
|
|
|
|
vc.options = groupPools
|
|
|
|
vc.selectedOption = currentPool
|
|
|
|
vc.descriptionBlock = { $0.areaId ?? "" } // XXX: fail gracefully
|
|
|
|
vc.selectionBlock = {
|
|
|
|
self.currentPool = $0
|
|
|
|
self.delegate?.providerPoolController(self, didSelectPool: $0)
|
2019-04-06 13:12:39 +00:00
|
|
|
}
|
2019-04-06 14:43:43 +00:00
|
|
|
navigationController?.pushViewController(vc, animated: true)
|
2018-10-11 07:13:19 +00:00
|
|
|
}
|
|
|
|
}
|