NCMore.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. //
  2. // NCMore.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/04/17.
  6. // Copyright © 2017 Marino Faggiana. All rights reserved.
  7. //
  8. // Author Marino Faggiana <marino.faggiana@nextcloud.com>
  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. import NCCommunication
  25. import MarqueeLabel
  26. class NCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
  27. @IBOutlet weak var tableView: UITableView!
  28. @IBOutlet weak var labelQuota: UILabel!
  29. @IBOutlet weak var labelQuotaExternalSite: UILabel!
  30. @IBOutlet weak var progressQuota: UIProgressView!
  31. @IBOutlet weak var viewQuota: UIView!
  32. var functionMenu: [NCCommunicationExternalSite] = []
  33. var externalSiteMenu: [NCCommunicationExternalSite] = []
  34. var settingsMenu: [NCCommunicationExternalSite] = []
  35. var quotaMenu: [NCCommunicationExternalSite] = []
  36. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  37. var tabAccount: tableAccount?
  38. // MARK: - View Life Cycle
  39. override func viewDidLoad() {
  40. super.viewDidLoad()
  41. self.navigationItem.title = NSLocalizedString("_more_", comment: "")
  42. view.backgroundColor = NCBrandColor.shared.systemGroupedBackground
  43. tableView.delegate = self
  44. tableView.dataSource = self
  45. tableView.backgroundColor = NCBrandColor.shared.systemGroupedBackground
  46. tableView.separatorColor = NCBrandColor.shared.separator
  47. tableView.register(UINib(nibName: "NCMoreUserCell", bundle: nil), forCellReuseIdentifier: "userCell")
  48. // create tap gesture recognizer
  49. let tapQuota = UITapGestureRecognizer(target: self, action: #selector(tapLabelQuotaExternalSite))
  50. labelQuotaExternalSite.isUserInteractionEnabled = true
  51. labelQuotaExternalSite.addGestureRecognizer(tapQuota)
  52. // Notification
  53. NotificationCenter.default.addObserver(self, selector: #selector(initialize), name: NSNotification.Name(rawValue: NCGlobal.shared.notificationCenterInitialize), object: nil)
  54. }
  55. override func viewWillAppear(_ animated: Bool) {
  56. super.viewWillAppear(animated)
  57. appDelegate.activeViewController = self
  58. loadItems()
  59. }
  60. // MARK: - NotificationCenter
  61. @objc func initialize() {
  62. loadItems()
  63. }
  64. // MARK: -
  65. func loadItems() {
  66. var item = NCCommunicationExternalSite()
  67. var quota: String = ""
  68. // Clear
  69. functionMenu.removeAll()
  70. externalSiteMenu.removeAll()
  71. settingsMenu.removeAll()
  72. quotaMenu.removeAll()
  73. labelQuotaExternalSite.text = ""
  74. progressQuota.progressTintColor = NCBrandColor.shared.brandElement
  75. // ITEM : Transfer
  76. item = NCCommunicationExternalSite()
  77. item.name = "_transfers_"
  78. item.icon = "arrow.left.arrow.right"
  79. item.url = "segueTransfers"
  80. functionMenu.append(item)
  81. // ITEM : Recent
  82. item = NCCommunicationExternalSite()
  83. item.name = "_recent_"
  84. item.icon = "recent"
  85. item.url = "segueRecent"
  86. functionMenu.append(item)
  87. // ITEM : Notification
  88. item = NCCommunicationExternalSite()
  89. item.name = "_notification_"
  90. item.icon = "bell"
  91. item.url = "segueNotification"
  92. functionMenu.append(item)
  93. // ITEM : Activity
  94. item = NCCommunicationExternalSite()
  95. item.name = "_activity_"
  96. item.icon = "bolt"
  97. item.url = "segueActivity"
  98. functionMenu.append(item)
  99. // ITEM : Shares
  100. let isFilesSharingEnabled = NCManageDatabase.shared.getCapabilitiesServerBool(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesFileSharingApiEnabled, exists: false)
  101. if isFilesSharingEnabled {
  102. item = NCCommunicationExternalSite()
  103. item.name = "_list_shares_"
  104. item.icon = "share"
  105. item.url = "segueShares"
  106. functionMenu.append(item)
  107. }
  108. // ITEM : Offline
  109. item = NCCommunicationExternalSite()
  110. item.name = "_manage_file_offline_"
  111. item.icon = "tray.and.arrow.down"
  112. item.url = "segueOffline"
  113. functionMenu.append(item)
  114. // ITEM : Scan
  115. if #available(iOS 13.0, *) {
  116. item = NCCommunicationExternalSite()
  117. item.name = "_scanned_images_"
  118. item.icon = "doc.text.viewfinder"
  119. item.url = "openStoryboardNCScan"
  120. functionMenu.append(item)
  121. }
  122. // ITEM : Trash
  123. let serverVersionMajor = NCManageDatabase.shared.getCapabilitiesServerInt(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesVersionMajor)
  124. if serverVersionMajor >= NCGlobal.shared.nextcloudVersion15 {
  125. item = NCCommunicationExternalSite()
  126. item.name = "_trash_view_"
  127. item.icon = "trash"
  128. item.url = "segueTrash"
  129. functionMenu.append(item)
  130. }
  131. // ITEM : Settings
  132. item = NCCommunicationExternalSite()
  133. item.name = "_settings_"
  134. item.icon = "gear"
  135. item.url = "segueSettings"
  136. settingsMenu.append(item)
  137. // ITEM: Test API
  138. if NCUtility.shared.isSimulator() {
  139. item = NCCommunicationExternalSite()
  140. item.name = "Test API"
  141. item.icon = "swift"
  142. item.url = "test"
  143. settingsMenu.append(item)
  144. }
  145. if quotaMenu.count > 0 {
  146. let item = quotaMenu[0]
  147. labelQuotaExternalSite.text = item.name
  148. }
  149. // Display Name user & Quota
  150. if let activeAccount = NCManageDatabase.shared.getActiveAccount() {
  151. self.tabAccount = activeAccount
  152. if activeAccount.quotaRelative > 0 {
  153. progressQuota.progress = Float(activeAccount.quotaRelative) / 100
  154. } else {
  155. progressQuota.progress = 0
  156. }
  157. switch activeAccount.quotaTotal {
  158. case -1:
  159. quota = "0"
  160. case -2:
  161. quota = NSLocalizedString("_quota_space_unknown_", comment: "")
  162. case -3:
  163. quota = NSLocalizedString("_quota_space_unlimited_", comment: "")
  164. default:
  165. quota = CCUtility.transformedSize(activeAccount.quotaTotal)
  166. }
  167. let quotaUsed: String = CCUtility.transformedSize(activeAccount.quotaUsed)
  168. labelQuota.text = String.localizedStringWithFormat(NSLocalizedString("_quota_using_", comment: ""), quotaUsed, quota)
  169. }
  170. // ITEM : External
  171. if NCBrandOptions.shared.disable_more_external_site == false {
  172. if let externalSites = NCManageDatabase.shared.getAllExternalSites(account: appDelegate.account) {
  173. for externalSite in externalSites {
  174. if (externalSite.name != "" && externalSite.url != ""), let urlEncoded = externalSite.url.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) {
  175. item = NCCommunicationExternalSite()
  176. item.name = externalSite.name
  177. item.url = urlEncoded
  178. item.icon = "network"
  179. if externalSite.type == "settings" {
  180. item.icon = "gear"
  181. }
  182. externalSiteMenu.append(item)
  183. }
  184. }
  185. tableView.reloadData()
  186. } else {
  187. tableView.reloadData()
  188. }
  189. } else {
  190. tableView.reloadData()
  191. }
  192. }
  193. // MARK: - Action
  194. @objc func tapLabelQuotaExternalSite() {
  195. if quotaMenu.count > 0 {
  196. let item = quotaMenu[0]
  197. let browserWebVC = UIStoryboard(name: "NCBrowserWeb", bundle: nil).instantiateInitialViewController() as! NCBrowserWeb
  198. browserWebVC.urlBase = item.url
  199. browserWebVC.isHiddenButtonExit = true
  200. self.navigationController?.pushViewController(browserWebVC, animated: true)
  201. self.navigationController?.navigationBar.isHidden = false
  202. }
  203. }
  204. @objc func tapImageLogoManageAccount() {
  205. let controller = CCManageAccount()
  206. self.navigationController?.pushViewController(controller, animated: true)
  207. }
  208. // MARK: -
  209. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  210. if indexPath.section == 0 {
  211. return 100
  212. } else {
  213. return NCGlobal.shared.heightCellSettings
  214. }
  215. }
  216. func numberOfSections(in tableView: UITableView) -> Int {
  217. if externalSiteMenu.count == 0 {
  218. return 3
  219. } else {
  220. return 4
  221. }
  222. }
  223. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  224. var cont = 0
  225. if section == 0 {
  226. cont = tabAccount == nil ? 0 : 1
  227. } else if section == 1 {
  228. // Menu Normal
  229. cont = functionMenu.count
  230. } else {
  231. switch numberOfSections(in: tableView) {
  232. case 3:
  233. // Menu Settings
  234. if section == 2 {
  235. cont = settingsMenu.count
  236. }
  237. case 4:
  238. // Menu External Site
  239. if section == 2 {
  240. cont = externalSiteMenu.count
  241. }
  242. // Menu Settings
  243. if section == 3 {
  244. cont = settingsMenu.count
  245. }
  246. default:
  247. cont = 0
  248. }
  249. }
  250. return cont
  251. }
  252. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  253. var item = NCCommunicationExternalSite()
  254. // change color selection and disclosure indicator
  255. let selectionColor: UIView = UIView()
  256. if indexPath.section == 0 {
  257. let cell = tableView.dequeueReusableCell(withIdentifier: "userCell", for: indexPath) as! NCMoreUserCell
  258. cell.avatar.image = nil
  259. cell.icon.image = nil
  260. cell.status.text = ""
  261. cell.displayName.text = ""
  262. if let account = tabAccount {
  263. cell.avatar.image = NCUtility.shared.loadUserImage(
  264. for: account.user,
  265. displayName: account.displayName,
  266. userBaseUrl: appDelegate)
  267. if account.alias == "" {
  268. cell.displayName?.text = account.displayName
  269. } else {
  270. cell.displayName?.text = account.displayName + " (" + account.alias + ")"
  271. }
  272. cell.displayName.textColor = NCBrandColor.shared.label
  273. }
  274. cell.selectedBackgroundView = selectionColor
  275. cell.backgroundColor = NCBrandColor.shared.secondarySystemGroupedBackground
  276. cell.accessoryType = UITableViewCell.AccessoryType.disclosureIndicator
  277. if NCManageDatabase.shared.getCapabilitiesServerBool(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesUserStatusEnabled, exists: false) {
  278. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", appDelegate.account)) {
  279. let status = NCUtility.shared.getUserStatus(userIcon: account.userStatusIcon, userStatus: account.userStatusStatus, userMessage: account.userStatusMessage)
  280. cell.icon.image = status.onlineStatus
  281. cell.status.text = status.statusMessage
  282. cell.status.textColor = NCBrandColor.shared.label
  283. cell.status.trailingBuffer = cell.status.frame.width
  284. if cell.status.labelShouldScroll() {
  285. cell.status.tapToScroll = true
  286. } else {
  287. cell.status.tapToScroll = false
  288. }
  289. }
  290. }
  291. return cell
  292. } else {
  293. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  294. // Menu Normal
  295. if indexPath.section == 1 {
  296. item = functionMenu[indexPath.row]
  297. }
  298. // Menu External Site
  299. if numberOfSections(in: tableView) == 4 && indexPath.section == 2 {
  300. item = externalSiteMenu[indexPath.row]
  301. }
  302. // Menu Settings
  303. if (numberOfSections(in: tableView) == 3 && indexPath.section == 2) || (numberOfSections(in: tableView) == 4 && indexPath.section == 3) {
  304. item = settingsMenu[indexPath.row]
  305. }
  306. cell.imageIcon?.image = NCUtility.shared.loadImage(named: item.icon)
  307. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  308. cell.labelText.textColor = NCBrandColor.shared.label
  309. cell.selectedBackgroundView = selectionColor
  310. cell.backgroundColor = NCBrandColor.shared.secondarySystemGroupedBackground
  311. cell.accessoryType = UITableViewCell.AccessoryType.disclosureIndicator
  312. return cell
  313. }
  314. }
  315. // method to run when table view cell is tapped
  316. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  317. var item = NCCommunicationExternalSite()
  318. if indexPath.section == 0 {
  319. tapImageLogoManageAccount()
  320. return
  321. }
  322. // Menu Function
  323. if indexPath.section == 1 {
  324. item = functionMenu[indexPath.row]
  325. }
  326. // Menu External Site
  327. if numberOfSections(in: tableView) == 4 && indexPath.section == 2 {
  328. item = externalSiteMenu[indexPath.row]
  329. }
  330. // Menu Settings
  331. if (numberOfSections(in: tableView) == 3 && indexPath.section == 2) || (numberOfSections(in: tableView) == 4 && indexPath.section == 3) {
  332. item = settingsMenu[indexPath.row]
  333. }
  334. // Action
  335. if item.url.contains("segue") && !item.url.contains("//") {
  336. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  337. } else if item.url.contains("openStoryboard") && !item.url.contains("//") {
  338. let nameStoryboard = item.url.replacingOccurrences(of: "openStoryboard", with: "")
  339. let storyboard = UIStoryboard(name: nameStoryboard, bundle: nil)
  340. if let controller = storyboard.instantiateInitialViewController() {
  341. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  342. present(controller, animated: true, completion: nil)
  343. }
  344. } else if item.url.contains("//") {
  345. let browserWebVC = UIStoryboard(name: "NCBrowserWeb", bundle: nil).instantiateInitialViewController() as! NCBrowserWeb
  346. browserWebVC.urlBase = item.url
  347. browserWebVC.isHiddenButtonExit = true
  348. browserWebVC.titleBrowser = item.name
  349. self.navigationController?.pushViewController(browserWebVC, animated: true)
  350. self.navigationController?.navigationBar.isHidden = false
  351. } else if item.url == "logout" {
  352. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  353. let actionYes = UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (_: UIAlertAction) in
  354. let manageAccount = CCManageAccount()
  355. manageAccount.delete(self.appDelegate.account)
  356. self.appDelegate.openLogin(viewController: self, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  357. }
  358. let actionNo = UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (_: UIAlertAction) in
  359. print("You've pressed No button")
  360. }
  361. alertController.addAction(actionYes)
  362. alertController.addAction(actionNo)
  363. self.present(alertController, animated: true, completion: nil)
  364. } else if item.url == "test" {
  365. }
  366. }
  367. }
  368. class CCCellMore: UITableViewCell {
  369. @IBOutlet weak var labelText: UILabel!
  370. @IBOutlet weak var imageIcon: UIImageView!
  371. }
  372. class NCMoreUserCell: UITableViewCell {
  373. @IBOutlet weak var displayName: UILabel!
  374. @IBOutlet weak var avatar: UIImageView!
  375. @IBOutlet weak var icon: UIImageView!
  376. @IBOutlet weak var status: MarqueeLabel!
  377. }