passepartout-apple/Passepartout-iOS/Scenes/ProviderPoolViewController....

182 lines
5.9 KiB
Swift
Raw Normal View History

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
import PassepartoutCore
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-25 18:40:50 +00:00
private var categories: [PoolCategory] = []
private var sortedGroupsByCategory: [String: [PoolGroup]] = [:]
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-25 18:40:50 +00:00
func setInfrastructure(_ infrastructure: Infrastructure, currentPoolId: String?) {
categories = infrastructure.categories.sorted { $0.name.lowercased() < $1.name.lowercased() }
2019-04-25 18:40:50 +00:00
for c in categories {
sortedGroupsByCategory[c.name] = c.groups.sorted()
2019-04-25 18:40:50 +00:00
}
// XXX: uglyyy
2019-04-25 18:40:50 +00:00
for cat in categories {
for group in cat.groups {
2019-04-25 18:40:50 +00:00
for p in group.pools {
if p.id == currentPoolId {
currentPool = p
return
}
}
}
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 {
tableView.selectRowAsync(at: ip)
2018-10-11 07:13:19 +00:00
}
}
}
// MARK: -
extension ProviderPoolViewController: UITableViewDataSource, UITableViewDelegate {
private var selectedIndexPath: IndexPath? {
2019-04-25 18:40:50 +00:00
for (i, cat) in categories.enumerated() {
guard let sortedGroups = sortedGroupsByCategory[cat.name] else {
continue
}
for (j, group) in sortedGroups.enumerated() {
2019-04-25 18:40:50 +00:00
guard let _ = group.pools.firstIndex(where: { $0.id == currentPool?.id }) else {
continue
}
return IndexPath(row: j, 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
}
func numberOfSections(in tableView: UITableView) -> Int {
2019-04-25 18:40:50 +00:00
return categories.count
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
2019-04-25 18:40:50 +00:00
guard categories.count > 1 else {
return nil
}
2019-04-25 18:40:50 +00:00
let model = categories[section]
return model.name
}
2018-10-11 07:13:19 +00:00
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
2019-04-25 18:40:50 +00:00
let model = categories[section]
return model.groups.count
2018-10-11 07:13:19 +00:00
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
2019-04-25 18:40:50 +00:00
let group = poolGroup(at: indexPath)
guard let pool = group.pools.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-25 18:40:50 +00:00
cell.imageView?.image = group.logo
cell.leftText = pool.localizedCountry
2019-04-25 18:40:50 +00:00
if group.pools.count > 1 {
cell.rightText = pool.area?.uppercased()
cell.accessoryType = .detailDisclosureButton // no checkmark!
} else {
cell.rightText = pool.secondaryId
}
2018-10-11 07:13:19 +00:00
cell.isTappable = true
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
2019-04-25 18:40:50 +00:00
let group = poolGroup(at: indexPath)
guard let pool = group.pools.randomElement() else {
fatalError("Empty pools in group \(group)")
}
currentPool = pool
delegate?.providerPoolController(self, didSelectPool: pool)
}
2019-04-06 13:07:52 +00:00
func tableView(_ tableView: UITableView, accessoryButtonTappedForRowWith indexPath: IndexPath) {
2019-04-25 18:40:50 +00:00
let group = poolGroup(at: indexPath)
guard group.pools.count > 1 else {
return
}
let vc = OptionViewController<Pool>()
2019-04-25 18:40:50 +00:00
vc.title = group.localizedCountry
2019-04-25 19:30:01 +00:00
vc.options = group.pools.sorted {
guard let lnum = $0.num else {
return true
}
guard let rnum = $1.num else {
return false
}
guard lnum != rnum else {
return $0.secondaryId < $1.secondaryId
}
return lnum < rnum
}
vc.selectedOption = currentPool
vc.descriptionBlock = { $0.secondaryId }
vc.selectionBlock = {
self.currentPool = $0
self.delegate?.providerPoolController(self, didSelectPool: $0)
}
navigationController?.pushViewController(vc, animated: true)
2018-10-11 07:13:19 +00:00
}
2019-04-25 18:40:50 +00:00
private func poolGroup(at indexPath: IndexPath) -> PoolGroup {
let model = categories[indexPath.section]
guard let sortedGroups = sortedGroupsByCategory[model.name] else {
fatalError("Missing sorted groups for category '\(model.name)'")
}
return sortedGroups[indexPath.row]
}
2018-10-11 07:13:19 +00:00
}