CCMore.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  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 themingBackground: UIImageView!
  26. @IBOutlet weak var themingAvatar: 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 tabAccount : tableAccount?
  38. override func viewDidLoad() {
  39. super.viewDidLoad()
  40. tableView.delegate = self
  41. tableView.dataSource = self
  42. tableView.separatorColor = NCBrandColor.sharedInstance.seperator
  43. themingBackground.image = UIImage.init(named: "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. themingBackground.isUserInteractionEnabled = true
  50. themingBackground.addGestureRecognizer(tapImageLogo)
  51. // Notification
  52. NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  53. NotificationCenter.default.addObserver(self, selector: #selector(self.changeUserProfile), name: NSNotification.Name(rawValue: "changeUserProfile"), object: nil)
  54. }
  55. // Apparirà
  56. override func viewWillAppear(_ animated: Bool) {
  57. super.viewWillAppear(animated)
  58. // Clear
  59. functionMenu.removeAll()
  60. settingsMenu.removeAll()
  61. quotaMenu.removeAll()
  62. labelQuotaExternalSite.text = ""
  63. // Internal
  64. var item = OCExternalSites.init()
  65. item.name = "_transfers_"
  66. item.icon = "moreTransfers"
  67. item.url = "segueTransfers"
  68. functionMenu.append(item)
  69. item = OCExternalSites.init()
  70. if NCBrandOptions.sharedInstance.use_recent_activity_title == true {
  71. item.name = "_recent_activity_"
  72. } else {
  73. item.name = "_activity_"
  74. }
  75. item.icon = "moreActivity"
  76. item.url = "segueActivity"
  77. functionMenu.append(item)
  78. item = OCExternalSites.init()
  79. item.name = "_local_storage_"
  80. item.icon = "moreLocalStorage"
  81. item.url = "segueLocalStorage"
  82. functionMenu.append(item)
  83. item = OCExternalSites.init()
  84. item.name = "_settings_"
  85. item.icon = "moreSettings"
  86. item.url = "segueSettings"
  87. settingsMenu.append(item)
  88. // External
  89. menuExternalSite = NCManageDatabase.sharedInstance.getAllExternalSitesWithPredicate(NSPredicate(format: "(account == '\(appDelegate.activeAccount!)')"))
  90. for table in menuExternalSite! {
  91. item = OCExternalSites.init()
  92. item.name = table.name
  93. item.url = table.url
  94. item.icon = table.icon
  95. if (table.type == "link") {
  96. item.icon = "moreExternalSite"
  97. functionMenu.append(item)
  98. }
  99. if (table.type == "settings") {
  100. item.icon = "moreSettingsExternalSite"
  101. settingsMenu.append(item)
  102. }
  103. if (table.type == "quota") {
  104. quotaMenu.append(item)
  105. }
  106. }
  107. if (quotaMenu.count > 0) {
  108. let item = quotaMenu[0]
  109. labelQuotaExternalSite.text = item.name
  110. }
  111. // User data & Theming
  112. changeUserProfile()
  113. changeTheming()
  114. // Title
  115. self.navigationItem.title = NSLocalizedString("_more_", comment: "")
  116. // Aspect
  117. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  118. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  119. // +
  120. appDelegate.plusButtonVisibile(true)
  121. self.navigationController?.setNavigationBarHidden(true, animated: animated)
  122. tableView.reloadData()
  123. }
  124. override func viewWillDisappear(_ animated: Bool) {
  125. super.viewWillDisappear(animated)
  126. self.navigationController?.setNavigationBarHidden(false, animated: animated)
  127. }
  128. func changeTheming() {
  129. // Theming Background
  130. let theminBackgroundFile = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/themingBackground.png")
  131. if (theminBackgroundFile != nil) {
  132. themingBackground.image = theminBackgroundFile
  133. } else {
  134. themingBackground.image = UIImage.init(named: "themingBackground")
  135. }
  136. if (self.isViewLoaded && (self.view.window != nil)) {
  137. appDelegate.changeTheming(self)
  138. }
  139. }
  140. func changeUserProfile() {
  141. let themingAvatarFile : UIImage? = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/avatar.png")
  142. if (themingAvatarFile != nil) {
  143. themingAvatar.image = themingAvatarFile
  144. } else {
  145. themingAvatar.image = UIImage.init(named: "moreAvatar")
  146. }
  147. // Display Name user & Quota
  148. tabAccount = NCManageDatabase.sharedInstance.getAccountActive()
  149. if (tabAccount != nil) {
  150. if let displayName = tabAccount?.displayName {
  151. if displayName.isEmpty {
  152. labelUsername.text = tabAccount!.user
  153. }
  154. else{
  155. labelUsername.text = tabAccount!.displayName
  156. }
  157. }
  158. else{
  159. labelUsername.text = tabAccount!.user
  160. }
  161. // fix CCMore.swift line 208 Version 2.17.2 (00005)
  162. if (tabAccount?.quotaRelative != nil && tabAccount?.quotaTotal != nil && tabAccount?.quotaUsed != nil) {
  163. progressQuota.progress = Float((tabAccount?.quotaRelative)!) / 100
  164. progressQuota.progressTintColor = NCBrandColor.sharedInstance.brand
  165. let quota : String = CCUtility.transformedSize(Double((tabAccount?.quotaTotal)!))
  166. let quotaUsed : String = CCUtility.transformedSize(Double((tabAccount?.quotaUsed)!))
  167. labelQuota.text = String.localizedStringWithFormat(NSLocalizedString("_quota_using_", comment: ""), quotaUsed, quota)
  168. }
  169. }
  170. }
  171. func numberOfSections(in tableView: UITableView) -> Int {
  172. return 2
  173. }
  174. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  175. if (section == 0) {
  176. return 10
  177. } else {
  178. return 30
  179. }
  180. }
  181. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  182. var cont = 0
  183. // Menu Normal
  184. if (section == 0) {
  185. cont = functionMenu.count
  186. }
  187. // Menu Settings
  188. if (section == 1) {
  189. cont = settingsMenu.count
  190. }
  191. return cont
  192. }
  193. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  194. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  195. // change color selection and disclosure indicator
  196. let selectionColor : UIView = UIView.init()
  197. selectionColor.backgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond()
  198. cell.selectedBackgroundView = selectionColor
  199. cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
  200. // Menu Normal
  201. if (indexPath.section == 0) {
  202. let item = functionMenu[indexPath.row]
  203. cell.imageIcon?.image = UIImage.init(named: item.icon)
  204. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  205. cell.labelText.textColor = NCBrandColor.sharedInstance.moreNormal
  206. }
  207. // Menu Settings
  208. if (indexPath.section == 1) {
  209. let item = settingsMenu[indexPath.row]
  210. cell.imageIcon?.image = UIImage.init(named: item.icon)
  211. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  212. cell.labelText.textColor = NCBrandColor.sharedInstance.moreSettings
  213. }
  214. return cell
  215. }
  216. // method to run when table view cell is tapped
  217. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  218. var item: OCExternalSites = OCExternalSites.init()
  219. // Menu Function
  220. if (indexPath.section == 0) {
  221. item = functionMenu[indexPath.row]
  222. }
  223. // Menu Settings
  224. if (indexPath.section == 1) {
  225. item = settingsMenu[indexPath.row]
  226. }
  227. if (item.url.contains("segue") && !item.url.contains("//")) {
  228. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  229. }
  230. if (item.url.contains("//")) {
  231. if (self.splitViewController?.isCollapsed)! {
  232. let webVC = SwiftWebVC(urlString: item.url)
  233. self.navigationController?.pushViewController(webVC, animated: true)
  234. self.navigationController?.navigationBar.isHidden = false
  235. } else {
  236. let webVC = SwiftModalWebVC(urlString: item.url)
  237. self.present(webVC, animated: true, completion: nil)
  238. }
  239. }
  240. }
  241. func tapLabelQuotaExternalSite() {
  242. if (quotaMenu.count > 0) {
  243. let item = quotaMenu[0]
  244. if (self.splitViewController?.isCollapsed)! {
  245. let webVC = SwiftWebVC(urlString: item.url)
  246. self.navigationController?.pushViewController(webVC, animated: true)
  247. self.navigationController?.navigationBar.isHidden = false
  248. } else {
  249. let webVC = SwiftModalWebVC(urlString: item.url)
  250. self.present(webVC, animated: true, completion: nil)
  251. }
  252. }
  253. }
  254. func tapImageLogoManageAccount() {
  255. let controller = CCManageAccount.init()
  256. self.navigationController?.pushViewController(controller, animated: true)
  257. }
  258. }
  259. class CCCellMore: UITableViewCell {
  260. @IBOutlet weak var labelText: UILabel!
  261. @IBOutlet weak var imageIcon: UIImageView!
  262. }