CCMore.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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. // imageLogo
  122. let theminBackground = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/themingBackground.png")
  123. if (theminBackground != nil) {
  124. imageLogo.image = theminBackground
  125. } else {
  126. imageLogo.image = UIImage.init(named: NCBrandImages.sharedInstance.themingBackground)
  127. }
  128. }
  129. if (quotaMenu.count > 0) {
  130. let item = quotaMenu[0]
  131. labelQuotaExternalSite.text = item.name
  132. }
  133. // Avatar
  134. let avatar : UIImage? = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/avatar.png")
  135. if (avatar != nil) {
  136. imageAvatar.image = avatar
  137. } else {
  138. imageAvatar.image = UIImage.init(named: "moreAvatar")
  139. }
  140. // Title
  141. self.navigationItem.title = NSLocalizedString("_more_", comment: "")
  142. // Aspect
  143. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  144. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  145. // +
  146. appDelegate.plusButtonVisibile(true)
  147. self.navigationController?.setNavigationBarHidden(true, animated: animated)
  148. tableView.reloadData()
  149. }
  150. override func viewDidAppear(_ animated: Bool) {
  151. super.viewDidAppear(animated)
  152. }
  153. override func viewWillDisappear(_ animated: Bool) {
  154. super.viewWillDisappear(animated)
  155. self.navigationController?.setNavigationBarHidden(false, animated: animated)
  156. }
  157. func changeTheming() {
  158. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  159. }
  160. func numberOfSections(in tableView: UITableView) -> Int {
  161. return 2
  162. }
  163. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  164. if (section == 0) {
  165. return 10
  166. } else {
  167. return 30
  168. }
  169. }
  170. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  171. var cont = 0
  172. // Menu Normal
  173. if (section == 0) {
  174. cont = functionMenu.count
  175. }
  176. // Menu Settings
  177. if (section == 1) {
  178. cont = settingsMenu.count
  179. }
  180. return cont
  181. }
  182. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  183. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  184. // change color selection and disclosure indicator
  185. let selectionColor : UIView = UIView.init()
  186. selectionColor.backgroundColor = NCBrandColor.sharedInstance.selectBackgrond
  187. cell.selectedBackgroundView = selectionColor
  188. cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
  189. // Menu Normal
  190. if (indexPath.section == 0) {
  191. let item = functionMenu[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.moreNormal
  195. }
  196. // Menu Settings
  197. if (indexPath.section == 1) {
  198. let item = settingsMenu[indexPath.row]
  199. cell.imageIcon?.image = UIImage.init(named: item.icon)
  200. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  201. cell.labelText.textColor = NCBrandColor.sharedInstance.moreSettings
  202. }
  203. return cell
  204. }
  205. // method to run when table view cell is tapped
  206. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  207. var item: OCExternalSites = OCExternalSites.init()
  208. // Menu Function
  209. if (indexPath.section == 0) {
  210. item = functionMenu[indexPath.row]
  211. }
  212. // Menu Settings
  213. if (indexPath.section == 1) {
  214. item = settingsMenu[indexPath.row]
  215. }
  216. if (item.url.contains("segue") && !item.url.contains("//")) {
  217. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  218. }
  219. if (item.url.contains("//")) {
  220. if (self.splitViewController?.isCollapsed)! {
  221. let webVC = SwiftWebVC(urlString: item.url)
  222. self.navigationController?.pushViewController(webVC, animated: true)
  223. self.navigationController?.navigationBar.isHidden = false
  224. } else {
  225. let webVC = SwiftModalWebVC(urlString: item.url)
  226. self.present(webVC, animated: true, completion: nil)
  227. }
  228. }
  229. }
  230. func tapLabelQuotaExternalSite() {
  231. if (quotaMenu.count > 0) {
  232. let item = quotaMenu[0]
  233. if (self.splitViewController?.isCollapsed)! {
  234. let webVC = SwiftWebVC(urlString: item.url)
  235. self.navigationController?.pushViewController(webVC, animated: true)
  236. self.navigationController?.navigationBar.isHidden = false
  237. } else {
  238. let webVC = SwiftModalWebVC(urlString: item.url)
  239. self.present(webVC, animated: true, completion: nil)
  240. }
  241. }
  242. }
  243. func tapImageLogoManageAccount() {
  244. let controller = CCManageAccount.init()
  245. self.navigationController?.pushViewController(controller, animated: true)
  246. }
  247. }
  248. class CCCellMore: UITableViewCell {
  249. @IBOutlet weak var labelText: UILabel!
  250. @IBOutlet weak var imageIcon: UIImageView!
  251. }