NCMore.swift 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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.init(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 = "openStoryboardScan"
  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.init()
  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. let fileName = String(CCUtility.getUserUrlBase(appDelegate.user, urlBase: appDelegate.urlBase)) + "-" + self.appDelegate.user + "-original.png"
  263. let fileNameLocalPath = String(CCUtility.getDirectoryUserData()) + "/" + fileName
  264. if let image = UIImage.init(contentsOfFile: fileNameLocalPath) {
  265. cell.avatar?.image = NCUtility.shared.createAvatar(image: image, size: 50)
  266. } else {
  267. cell.avatar?.image = UIImage.init(named: "avatar")?.imageColor(NCBrandColor.shared.gray)
  268. }
  269. if let account = tabAccount {
  270. if account.alias == "" {
  271. cell.displayName?.text = account.displayName
  272. } else {
  273. cell.displayName?.text = account.displayName + " (" + account.alias + ")"
  274. }
  275. cell.displayName.textColor = NCBrandColor.shared.label
  276. }
  277. cell.selectedBackgroundView = selectionColor
  278. cell.backgroundColor = NCBrandColor.shared.secondarySystemGroupedBackground
  279. cell.accessoryType = UITableViewCell.AccessoryType.disclosureIndicator
  280. if NCManageDatabase.shared.getCapabilitiesServerBool(account: appDelegate.account, elements: NCElementsJSON.shared.capabilitiesUserStatusEnabled, exists: false) {
  281. if let account = NCManageDatabase.shared.getAccount(predicate: NSPredicate(format: "account == %@", appDelegate.account)) {
  282. let status = NCUtility.shared.getUserStatus(userIcon: account.userStatusIcon, userStatus: account.userStatusStatus, userMessage: account.userStatusMessage)
  283. cell.icon.image = status.onlineStatus
  284. cell.status.text = status.statusMessage
  285. cell.status.textColor = NCBrandColor.shared.label
  286. cell.status.trailingBuffer = cell.status.frame.width
  287. if cell.status.labelShouldScroll() {
  288. cell.status.tapToScroll = true
  289. } else {
  290. cell.status.tapToScroll = false
  291. }
  292. }
  293. }
  294. return cell
  295. } else {
  296. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  297. // Menu Normal
  298. if (indexPath.section == 1) {
  299. item = functionMenu[indexPath.row]
  300. }
  301. // Menu External Site
  302. if (numberOfSections(in: tableView) == 4 && indexPath.section == 2) {
  303. item = externalSiteMenu[indexPath.row]
  304. }
  305. // Menu Settings
  306. if ((numberOfSections(in: tableView) == 3 && indexPath.section == 2) || (numberOfSections(in: tableView) == 4 && indexPath.section == 3)) {
  307. item = settingsMenu[indexPath.row]
  308. }
  309. cell.imageIcon?.image = NCUtility.shared.loadImage(named: item.icon)
  310. cell.labelText?.text = NSLocalizedString(item.name, comment: "")
  311. cell.labelText.textColor = NCBrandColor.shared.label
  312. cell.selectedBackgroundView = selectionColor
  313. cell.backgroundColor = NCBrandColor.shared.secondarySystemGroupedBackground
  314. cell.accessoryType = UITableViewCell.AccessoryType.disclosureIndicator
  315. return cell
  316. }
  317. }
  318. // method to run when table view cell is tapped
  319. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  320. var item = NCCommunicationExternalSite()
  321. if indexPath.section == 0 {
  322. tapImageLogoManageAccount()
  323. return
  324. }
  325. // Menu Function
  326. if indexPath.section == 1 {
  327. item = functionMenu[indexPath.row]
  328. }
  329. // Menu External Site
  330. if (numberOfSections(in: tableView) == 4 && indexPath.section == 2) {
  331. item = externalSiteMenu[indexPath.row]
  332. }
  333. // Menu Settings
  334. if ((numberOfSections(in: tableView) == 3 && indexPath.section == 2) || (numberOfSections(in: tableView) == 4 && indexPath.section == 3)) {
  335. item = settingsMenu[indexPath.row]
  336. }
  337. // Action
  338. if item.url.contains("segue") && !item.url.contains("//") {
  339. self.navigationController?.performSegue(withIdentifier: item.url, sender: self)
  340. } else if item.url.contains("openStoryboard") && !item.url.contains("//") {
  341. let nameStoryboard = item.url.replacingOccurrences(of: "openStoryboard", with: "")
  342. let storyboard = UIStoryboard(name: nameStoryboard, bundle: nil)
  343. if let controller = storyboard.instantiateInitialViewController() {
  344. controller.modalPresentationStyle = UIModalPresentationStyle.pageSheet
  345. present(controller, animated: true, completion: nil)
  346. }
  347. } else if item.url.contains("//") {
  348. let browserWebVC = UIStoryboard(name: "NCBrowserWeb", bundle: nil).instantiateInitialViewController() as! NCBrowserWeb
  349. browserWebVC.urlBase = item.url
  350. browserWebVC.isHiddenButtonExit = true
  351. browserWebVC.titleBrowser = item.name
  352. self.navigationController?.pushViewController(browserWebVC, animated: true)
  353. self.navigationController?.navigationBar.isHidden = false
  354. } else if item.url == "logout" {
  355. let alertController = UIAlertController(title: "", message: NSLocalizedString("_want_delete_", comment: ""), preferredStyle: .alert)
  356. let actionYes = UIAlertAction(title: NSLocalizedString("_yes_delete_", comment: ""), style: .default) { (action: UIAlertAction) in
  357. let manageAccount = CCManageAccount()
  358. manageAccount.delete(self.appDelegate.account)
  359. self.appDelegate.openLogin(viewController:self, selector: NCGlobal.shared.introLogin, openLoginWeb: false)
  360. }
  361. let actionNo = UIAlertAction(title: NSLocalizedString("_no_delete_", comment: ""), style: .default) { (action: UIAlertAction) in
  362. print("You've pressed No button")
  363. }
  364. alertController.addAction(actionYes)
  365. alertController.addAction(actionNo)
  366. self.present(alertController, animated: true, completion: nil)
  367. } else if item.url == "test" {
  368. }
  369. }
  370. }
  371. class CCCellMore: UITableViewCell {
  372. @IBOutlet weak var labelText: UILabel!
  373. @IBOutlet weak var imageIcon: UIImageView!
  374. }
  375. class NCMoreUserCell: UITableViewCell {
  376. @IBOutlet weak var displayName: UILabel!
  377. @IBOutlet weak var avatar: UIImageView!
  378. @IBOutlet weak var icon: UIImageView!
  379. @IBOutlet weak var status: MarqueeLabel!
  380. }