CCMore.swift 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. //
  2. // CCMore.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/04/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
  25. @IBOutlet weak var imageLogo: UIImageView!
  26. @IBOutlet weak var imageAvatar: UIImageView!
  27. @IBOutlet weak var labelUsername: UILabel!
  28. @IBOutlet weak var tableView: UITableView!
  29. @IBOutlet weak var labelQuota: UILabel!
  30. @IBOutlet weak var labelQuotaExternalSite: UILabel!
  31. @IBOutlet weak var progressQuota: UIProgressView!
  32. var functionMenu = [OCExternalSites]()
  33. var settingsMenu = [OCExternalSites]()
  34. var quotaMenu = [OCExternalSites]()
  35. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  36. var menuExternalSite: [TableExternalSites]?
  37. var tableAccont : TableAccount?
  38. override func viewDidLoad() {
  39. super.viewDidLoad()
  40. tableView.delegate = self
  41. tableView.dataSource = self
  42. tableView.separatorColor = NCBrandColor.sharedInstance.seperator
  43. imageLogo.image = UIImage.init(named: NCBrandImages.sharedInstance.themingBackground)
  44. // create tap gesture recognizer
  45. let tapQuota = UITapGestureRecognizer(target: self, action: #selector(tapLabelQuotaExternalSite))
  46. labelQuotaExternalSite.isUserInteractionEnabled = true
  47. labelQuotaExternalSite.addGestureRecognizer(tapQuota)
  48. let tapImageLogo = UITapGestureRecognizer(target: self, action: #selector(tapImageLogoManageAccount))
  49. imageLogo.isUserInteractionEnabled = true
  50. imageLogo.addGestureRecognizer(tapImageLogo)
  51. // Notification theming
  52. NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  53. }
  54. override func viewWillAppear(_ animated: Bool) {
  55. super.viewWillAppear(animated)
  56. // Clear
  57. functionMenu.removeAll()
  58. settingsMenu.removeAll()
  59. quotaMenu.removeAll()
  60. labelQuotaExternalSite.text = ""
  61. // Internal
  62. var item = OCExternalSites.init()
  63. item.name = "_transfers_"
  64. item.icon = "moreTransfers"
  65. item.url = "segueTransfers"
  66. functionMenu.append(item)
  67. item = OCExternalSites.init()
  68. item.name = "_activity_"
  69. item.icon = "moreActivity"
  70. item.url = "segueActivity"
  71. functionMenu.append(item)
  72. item = OCExternalSites.init()
  73. item.name = "_local_storage_"
  74. item.icon = "moreLocalStorage"
  75. item.url = "segueLocalStorage"
  76. functionMenu.append(item)
  77. item = OCExternalSites.init()
  78. item.name = "_settings_"
  79. item.icon = "moreSettings"
  80. item.url = "segueSettings"
  81. settingsMenu.append(item)
  82. // External
  83. menuExternalSite = CCCoreData.getAllTableExternalSites(with: NSPredicate(format: "(account == '\(appDelegate.activeAccount!)')")) as? [TableExternalSites]
  84. if (menuExternalSite != nil) {
  85. for table in menuExternalSite! {
  86. item = OCExternalSites.init()
  87. item.name = table.name
  88. item.url = table.url
  89. item.icon = table.icon
  90. if (table.type == "link") {
  91. item.icon = "moreExternalSite"
  92. functionMenu.append(item)
  93. }
  94. if (table.type == "settings") {
  95. item.icon = "moreSettingsExternalSite"
  96. settingsMenu.append(item)
  97. }
  98. if (table.type == "quota") {
  99. quotaMenu.append(item)
  100. }
  101. }
  102. }
  103. // Display Name user & Quota
  104. tableAccont = CCCoreData.getActiveAccount()
  105. if (tableAccont != nil) {
  106. if let displayName = self.tableAccont!.displayName {
  107. if displayName.isEmpty {
  108. labelUsername.text = self.tableAccont!.user
  109. }
  110. else{
  111. labelUsername.text = self.tableAccont!.displayName
  112. }
  113. }
  114. else{
  115. labelUsername.text = self.tableAccont!.user
  116. }
  117. progressQuota.progress = Float((self.tableAccont?.quotaRelative)!) / 100
  118. let quota : String = CCUtility.transformedSize(Double((self.tableAccont?.quotaTotal)!))
  119. let quotaUsed : String = CCUtility.transformedSize(Double((self.tableAccont?.quotaUsed)!))
  120. labelQuota.text = String.localizedStringWithFormat(NSLocalizedString("_quota_using_", comment: ""), quotaUsed, quota)
  121. }
  122. if (quotaMenu.count > 0) {
  123. let item = quotaMenu[0]
  124. labelQuotaExternalSite.text = item.name
  125. }
  126. // Avatar
  127. let avatar : UIImage? = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/avatar.png")
  128. if (avatar != nil) {
  129. imageAvatar.image = avatar
  130. } else {
  131. imageAvatar.image = UIImage.init(named: "moreAvatar")
  132. }
  133. // Title
  134. self.navigationItem.title = NSLocalizedString("_more_", comment: "")
  135. // Aspect
  136. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  137. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  138. // +
  139. appDelegate.plusButtonVisibile(true)
  140. self.navigationController?.setNavigationBarHidden(true, animated: animated)
  141. tableView.reloadData()
  142. }
  143. override func viewDidAppear(_ animated: Bool) {
  144. super.viewDidAppear(animated)
  145. }
  146. override func viewWillDisappear(_ animated: Bool) {
  147. super.viewWillDisappear(animated)
  148. self.navigationController?.setNavigationBarHidden(false, animated: animated)
  149. }
  150. func changeTheming() {
  151. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  152. }
  153. func numberOfSections(in tableView: UITableView) -> Int {
  154. return 2
  155. }
  156. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  157. if (section == 0) {
  158. return 10
  159. } else {
  160. return 30
  161. }
  162. }
  163. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  164. var cont = 0
  165. // Menu Normal
  166. if (section == 0) {
  167. cont = functionMenu.count
  168. }
  169. // Menu Settings
  170. if (section == 1) {
  171. cont = settingsMenu.count
  172. }
  173. return cont
  174. }
  175. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  176. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  177. // change color selection and disclosure indicator
  178. let selectionColor : UIView = UIView.init()
  179. selectionColor.backgroundColor = NCBrandColor.sharedInstance.selectBackgrond
  180. cell.selectedBackgroundView = selectionColor
  181. cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
  182. // Menu Normal
  183. if (indexPath.section == 0) {
  184. let item = functionMenu[indexPath.row]
  185. cell.imageIcon?.image = UIImage.init(named: item.icon)
  186. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  187. cell.labelText.textColor = NCBrandColor.sharedInstance.moreNormal
  188. }
  189. // Menu Settings
  190. if (indexPath.section == 1) {
  191. let item = settingsMenu[indexPath.row]
  192. cell.imageIcon?.image = UIImage.init(named: item.icon)
  193. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  194. cell.labelText.textColor = NCBrandColor.sharedInstance.moreSettings
  195. }
  196. return cell
  197. }
  198. // method to run when table view cell is tapped
  199. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  200. var item: OCExternalSites = OCExternalSites.init()
  201. // Menu Function
  202. if (indexPath.section == 0) {
  203. item = functionMenu[indexPath.row]
  204. }
  205. // Menu Settings
  206. if (indexPath.section == 1) {
  207. item = settingsMenu[indexPath.row]
  208. }
  209. if (item.url.contains("segue") && !item.url.contains("//")) {
  210. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  211. }
  212. if (item.url.contains("//")) {
  213. if (self.splitViewController?.isCollapsed)! {
  214. let webVC = SwiftWebVC(urlString: item.url)
  215. self.navigationController?.pushViewController(webVC, animated: true)
  216. self.navigationController?.navigationBar.isHidden = false
  217. } else {
  218. let webVC = SwiftModalWebVC(urlString: item.url)
  219. self.present(webVC, animated: true, completion: nil)
  220. }
  221. }
  222. }
  223. func tapLabelQuotaExternalSite() {
  224. if (quotaMenu.count > 0) {
  225. let item = quotaMenu[0]
  226. if (self.splitViewController?.isCollapsed)! {
  227. let webVC = SwiftWebVC(urlString: item.url)
  228. self.navigationController?.pushViewController(webVC, animated: true)
  229. self.navigationController?.navigationBar.isHidden = false
  230. } else {
  231. let webVC = SwiftModalWebVC(urlString: item.url)
  232. self.present(webVC, animated: true, completion: nil)
  233. }
  234. }
  235. }
  236. func tapImageLogoManageAccount() {
  237. let controller = CCManageAccount.init()
  238. self.navigationController?.pushViewController(controller, animated: true)
  239. }
  240. }
  241. class CCCellMore: UITableViewCell {
  242. @IBOutlet weak var labelText: UILabel!
  243. @IBOutlet weak var imageIcon: UIImageView!
  244. }