CCMore.swift 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  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, CCLoginDelegate {
  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. var loginWeb : CCLoginWeb!
  39. override func viewDidLoad() {
  40. super.viewDidLoad()
  41. tableView.delegate = self
  42. tableView.dataSource = self
  43. tableView.separatorColor = NCBrandColor.sharedInstance.seperator
  44. themingBackground.image = UIImage.init(named: "themingBackground")
  45. // create tap gesture recognizer
  46. let tapQuota = UITapGestureRecognizer(target: self, action: #selector(tapLabelQuotaExternalSite))
  47. labelQuotaExternalSite.isUserInteractionEnabled = true
  48. labelQuotaExternalSite.addGestureRecognizer(tapQuota)
  49. let tapImageLogo = UITapGestureRecognizer(target: self, action: #selector(tapImageLogoManageAccount))
  50. themingBackground.isUserInteractionEnabled = true
  51. themingBackground.addGestureRecognizer(tapImageLogo)
  52. // Notification
  53. NotificationCenter.default.addObserver(self, selector: #selector(self.changeTheming), name: NSNotification.Name(rawValue: "changeTheming"), object: nil)
  54. NotificationCenter.default.addObserver(self, selector: #selector(self.changeUserProfile), name: NSNotification.Name(rawValue: "changeUserProfile"), object: nil)
  55. }
  56. // Apparirà
  57. override func viewWillAppear(_ animated: Bool) {
  58. super.viewWillAppear(animated)
  59. // Clear
  60. functionMenu.removeAll()
  61. settingsMenu.removeAll()
  62. quotaMenu.removeAll()
  63. labelQuotaExternalSite.text = ""
  64. // ITEM : Transfer
  65. var item = OCExternalSites.init()
  66. item.name = "_transfers_"
  67. item.icon = "moreTransfers"
  68. item.url = "segueTransfers"
  69. functionMenu.append(item)
  70. // ITEM : Activity
  71. item = OCExternalSites.init()
  72. if NCBrandOptions.sharedInstance.use_recent_activity_title == true {
  73. item.name = "_recent_activity_"
  74. } else {
  75. item.name = "_activity_"
  76. }
  77. item.icon = "moreActivity"
  78. item.url = "segueActivity"
  79. functionMenu.append(item)
  80. // ITEM : Notification [CUSTOM]
  81. if NCBrandOptions.sharedInstance.use_notification_on_menu_more == true {
  82. item = OCExternalSites.init()
  83. item.name = "_notifications_"
  84. item.icon = "notification"
  85. item.url = "openCCNotification"
  86. functionMenu.append(item)
  87. }
  88. // ITEM : Shares
  89. item = OCExternalSites.init()
  90. item.name = "_list_shares_"
  91. item.icon = "moreShares"
  92. item.url = "segueShares"
  93. functionMenu.append(item)
  94. // ITEM : Local storage
  95. item = OCExternalSites.init()
  96. item.name = "_local_storage_"
  97. item.icon = "moreLocalStorage"
  98. item.url = "segueLocalStorage"
  99. functionMenu.append(item)
  100. // ITEM : External
  101. menuExternalSite = NCManageDatabase.sharedInstance.getAllExternalSites(predicate: NSPredicate(format: "(account == '\(appDelegate.activeAccount!)')"))
  102. //menuExternalSite = NCManageDatabase.sharedInstance.getAllExternalSitesWithPredicate(NSPredicate(format: "(account == '\(appDelegate.activeAccount!)')"))
  103. for table in menuExternalSite! {
  104. item = OCExternalSites.init()
  105. item.name = table.name
  106. item.url = table.url
  107. item.icon = table.icon
  108. if (table.type == "link") {
  109. item.icon = "moreExternalSite"
  110. functionMenu.append(item)
  111. }
  112. if (table.type == "settings") {
  113. item.icon = "moreSettingsExternalSite"
  114. settingsMenu.append(item)
  115. }
  116. if (table.type == "quota") {
  117. quotaMenu.append(item)
  118. }
  119. }
  120. // ITEM : Settings
  121. item = OCExternalSites.init()
  122. item.name = "_settings_"
  123. item.icon = "moreSettings"
  124. item.url = "segueSettings"
  125. settingsMenu.append(item)
  126. if (quotaMenu.count > 0) {
  127. let item = quotaMenu[0]
  128. labelQuotaExternalSite.text = item.name
  129. }
  130. // ITEM : Logout [CUSTOM]
  131. if NCBrandOptions.sharedInstance.use_logout_on_menu_more == true {
  132. item = OCExternalSites.init()
  133. item.name = "_logout_"
  134. item.icon = "logout"
  135. item.url = "logout"
  136. settingsMenu.append(item)
  137. }
  138. // User data & Theming
  139. changeUserProfile()
  140. changeTheming()
  141. // Title
  142. self.navigationItem.title = NSLocalizedString("_more_", comment: "")
  143. // Aspect
  144. appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: false)
  145. appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  146. // +
  147. appDelegate.plusButtonVisibile(true)
  148. self.navigationController?.setNavigationBarHidden(true, animated: animated)
  149. tableView.reloadData()
  150. }
  151. override func viewWillDisappear(_ animated: Bool) {
  152. super.viewWillDisappear(animated)
  153. self.navigationController?.setNavigationBarHidden(false, animated: animated)
  154. }
  155. func changeTheming() {
  156. // Theming Background
  157. let theminBackgroundFile = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/themingBackground.png")
  158. if (theminBackgroundFile != nil) {
  159. themingBackground.image = theminBackgroundFile
  160. } else {
  161. themingBackground.image = UIImage.init(named: "themingBackground")
  162. }
  163. if (self.isViewLoaded && (self.view.window != nil)) {
  164. appDelegate.changeTheming(self)
  165. }
  166. }
  167. func changeUserProfile() {
  168. let themingAvatarFile : UIImage? = UIImage.init(contentsOfFile: "\(appDelegate.directoryUser!)/avatar.png")
  169. if (themingAvatarFile != nil) {
  170. themingAvatar.image = themingAvatarFile
  171. } else {
  172. themingAvatar.image = UIImage.init(named: "moreAvatar")
  173. }
  174. // Display Name user & Quota
  175. tabAccount = NCManageDatabase.sharedInstance.getAccountActive()
  176. if (tabAccount != nil) {
  177. if let displayName = tabAccount?.displayName {
  178. if displayName.isEmpty {
  179. labelUsername.text = tabAccount!.user
  180. }
  181. else{
  182. labelUsername.text = tabAccount!.displayName
  183. }
  184. }
  185. else{
  186. labelUsername.text = tabAccount!.user
  187. }
  188. // fix CCMore.swift line 208 Version 2.17.2 (00005)
  189. if (tabAccount?.quotaRelative != nil && tabAccount?.quotaTotal != nil && tabAccount?.quotaUsed != nil) {
  190. progressQuota.progress = Float((tabAccount?.quotaRelative)!) / 100
  191. progressQuota.progressTintColor = NCBrandColor.sharedInstance.brand
  192. let quota : String = CCUtility.transformedSize(Double((tabAccount?.quotaTotal)!))
  193. let quotaUsed : String = CCUtility.transformedSize(Double((tabAccount?.quotaUsed)!))
  194. labelQuota.text = String.localizedStringWithFormat(NSLocalizedString("_quota_using_", comment: ""), quotaUsed, quota)
  195. }
  196. }
  197. }
  198. func numberOfSections(in tableView: UITableView) -> Int {
  199. return 2
  200. }
  201. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  202. if (section == 0) {
  203. return 10
  204. } else {
  205. return 30
  206. }
  207. }
  208. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  209. var cont = 0
  210. // Menu Normal
  211. if (section == 0) {
  212. cont = functionMenu.count
  213. }
  214. // Menu Settings
  215. if (section == 1) {
  216. cont = settingsMenu.count
  217. }
  218. return cont
  219. }
  220. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  221. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  222. // change color selection and disclosure indicator
  223. let selectionColor : UIView = UIView.init()
  224. selectionColor.backgroundColor = NCBrandColor.sharedInstance.getColorSelectBackgrond()
  225. cell.selectedBackgroundView = selectionColor
  226. cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator
  227. // Menu Normal
  228. if (indexPath.section == 0) {
  229. let item = functionMenu[indexPath.row]
  230. cell.imageIcon?.image = UIImage.init(named: item.icon)
  231. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  232. cell.labelText.textColor = NCBrandColor.sharedInstance.moreNormal
  233. }
  234. // Menu Settings
  235. if (indexPath.section == 1) {
  236. let item = settingsMenu[indexPath.row]
  237. cell.imageIcon?.image = UIImage.init(named: item.icon)
  238. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  239. cell.labelText.textColor = NCBrandColor.sharedInstance.moreSettings
  240. }
  241. return cell
  242. }
  243. // method to run when table view cell is tapped
  244. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  245. var item: OCExternalSites = OCExternalSites.init()
  246. // Menu Function
  247. if indexPath.section == 0 {
  248. item = functionMenu[indexPath.row]
  249. }
  250. // Menu Settings
  251. if indexPath.section == 1 {
  252. item = settingsMenu[indexPath.row]
  253. }
  254. // Action
  255. if item.url.contains("segue") && !item.url.contains("//") {
  256. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  257. } else if item.url.contains("open") && !item.url.contains("//") {
  258. let nameStoryboard = item.url.substring(from: item.url.index(item.url.startIndex, offsetBy: 4))
  259. let storyboard = UIStoryboard(name: nameStoryboard, bundle: nil)
  260. let controller = storyboard.instantiateViewController(withIdentifier: nameStoryboard)
  261. self.present(controller, animated: true, completion: nil)
  262. } else if item.url.contains("//") {
  263. if (self.splitViewController?.isCollapsed)! {
  264. let webVC = SwiftWebVC(urlString: item.url, hideToolbar: false)
  265. self.navigationController?.pushViewController(webVC, animated: true)
  266. self.navigationController?.navigationBar.isHidden = false
  267. } else {
  268. let webVC = SwiftModalWebVC(urlString: item.url)
  269. self.present(webVC, animated: true, completion: nil)
  270. }
  271. } else if item.url == "logout" {
  272. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  273. let actionYes = UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  274. let manageAccount = CCManageAccount()
  275. manageAccount.delete(self.appDelegate.activeAccount)
  276. self.loginWeb = CCLoginWeb()
  277. self.loginWeb.delegate = self
  278. self.loginWeb.loginType = loginAddForced
  279. self.loginWeb.presentModalWithDefaultTheme(self)
  280. }
  281. let actionNo = UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action:UIAlertAction) in
  282. print("You've pressed No button");
  283. }
  284. alertController.addAction(actionYes)
  285. alertController.addAction(actionNo)
  286. self.present(alertController, animated: true, completion:nil)
  287. }
  288. }
  289. func tapLabelQuotaExternalSite() {
  290. if (quotaMenu.count > 0) {
  291. let item = quotaMenu[0]
  292. if (self.splitViewController?.isCollapsed)! {
  293. let webVC = SwiftWebVC(urlString: item.url, hideToolbar: false)
  294. self.navigationController?.pushViewController(webVC, animated: true)
  295. self.navigationController?.navigationBar.isHidden = false
  296. } else {
  297. let webVC = SwiftModalWebVC(urlString: item.url)
  298. self.present(webVC, animated: true, completion: nil)
  299. }
  300. }
  301. }
  302. func tapImageLogoManageAccount() {
  303. let controller = CCManageAccount.init()
  304. self.navigationController?.pushViewController(controller, animated: true)
  305. }
  306. func loginSuccess(_ loginType: NSInteger) {
  307. NotificationCenter.default.post(name: NSNotification.Name(rawValue: "initializeMain"), object: nil)
  308. appDelegate.selectedTabBarController(Int(k_tabBarApplicationIndexFile))
  309. }
  310. }
  311. class CCCellMore: UITableViewCell {
  312. @IBOutlet weak var labelText: UILabel!
  313. @IBOutlet weak var imageIcon: UIImageView!
  314. }