FileProvider.swift 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189
  1. //
  2. // FileProviderExtension.swift
  3. // Files
  4. //
  5. // Created by Marino Faggiana on 26/03/18.
  6. // Copyright © 2018 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 FileProvider
  24. import UIKit
  25. import MobileCoreServices
  26. var ocNetworking: OCnetworking?
  27. var account = ""
  28. var accountUser = ""
  29. var accountUserID = ""
  30. var accountPassword = ""
  31. var accountUrl = ""
  32. var homeServerUrl = ""
  33. var directoryUser = ""
  34. // Directory
  35. var groupURL: URL?
  36. var fileProviderStorageURL: URL?
  37. // List
  38. var listUpdateItems = [NSFileProviderItem]()
  39. var listFavoriteIdentifierRank = [String:NSNumber]()
  40. var fileNamePathImport = [String]()
  41. // Metadata Temp for Import
  42. let FILEID_IMPORT_METADATA_TEMP = k_uploadSessionID + "FILE_PROVIDER_EXTENSION"
  43. var timerUpload: Timer?
  44. var timerCheck: Timer?
  45. var fileManagerExtension = FileManager()
  46. class FileProvider: NSFileProviderExtension, CCNetworkingDelegate {
  47. override init() {
  48. super.init()
  49. setupActiveAccount()
  50. if #available(iOSApplicationExtension 11.0, *) {
  51. listFavoriteIdentifierRank = NCManageDatabase.sharedInstance.getTableMetadatasDirectoryFavoriteIdentifierRank()
  52. // Timer for upload
  53. if timerUpload == nil {
  54. timerUpload = Timer.init(timeInterval: TimeInterval(k_timerProcessAutoDownloadUpload), repeats: true, block: { (Timer) in
  55. self.uploadFile()
  56. })
  57. RunLoop.main.add(timerUpload!, forMode: .defaultRunLoopMode)
  58. }
  59. // Timer for check
  60. if timerCheck == nil {
  61. timerCheck = Timer.init(timeInterval: TimeInterval((k_timerProcessAutoDownloadUpload*2)+(k_timerProcessAutoDownloadUpload/2)+1), repeats: true, block: { (Timer) in
  62. self.verifyUploadQueueInLock()
  63. })
  64. RunLoop.main.add(timerCheck!, forMode: .defaultRunLoopMode)
  65. }
  66. } else {
  67. NSFileCoordinator().coordinate(writingItemAt: self.documentStorageURL, options: [], error: nil, byAccessor: { newURL in
  68. do {
  69. try fileManagerExtension.createDirectory(at: newURL, withIntermediateDirectories: true, attributes: nil)
  70. } catch let error {
  71. print("error: \(error)")
  72. }
  73. })
  74. }
  75. }
  76. // MARK: - Enumeration
  77. override func enumerator(for containerItemIdentifier: NSFileProviderItemIdentifier) throws -> NSFileProviderEnumerator {
  78. /* ONLY iOS 11*/
  79. guard #available(iOS 11, *) else {
  80. throw NSError(domain: NSCocoaErrorDomain, code: NSFileNoSuchFileError, userInfo:[:])
  81. }
  82. var maybeEnumerator: NSFileProviderEnumerator? = nil
  83. if (containerItemIdentifier == NSFileProviderItemIdentifier.rootContainer) {
  84. maybeEnumerator = FileProviderEnumerator(enumeratedItemIdentifier: containerItemIdentifier)
  85. } else if (containerItemIdentifier == NSFileProviderItemIdentifier.workingSet) {
  86. maybeEnumerator = FileProviderEnumeratorWorkingSet(enumeratedItemIdentifier: containerItemIdentifier)
  87. } else {
  88. // determine if the item is a directory or a file
  89. // - for a directory, instantiate an enumerator of its subitems
  90. // - for a file, instantiate an enumerator that observes changes to the file
  91. let item = try self.item(for: containerItemIdentifier)
  92. if item.typeIdentifier == kUTTypeFolder as String {
  93. maybeEnumerator = FileProviderEnumerator(enumeratedItemIdentifier: containerItemIdentifier)
  94. } else {
  95. maybeEnumerator = FileProviderEnumeratorFile(enumeratedItemIdentifier: containerItemIdentifier)
  96. }
  97. }
  98. guard let enumerator = maybeEnumerator else {
  99. throw NSError(domain: NSCocoaErrorDomain, code: NSFeatureUnsupportedError, userInfo:[:])
  100. }
  101. return enumerator
  102. }
  103. // MARK: - Item
  104. override func item(for identifier: NSFileProviderItemIdentifier) throws -> NSFileProviderItem {
  105. /* ONLY iOS 11*/
  106. guard #available(iOS 11, *) else {
  107. throw NSError(domain: NSCocoaErrorDomain, code: NSFileNoSuchFileError, userInfo:[:])
  108. }
  109. if identifier == .rootContainer {
  110. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)) {
  111. let metadata = tableMetadata()
  112. metadata.account = account
  113. metadata.directory = true
  114. metadata.directoryID = directory.directoryID
  115. metadata.fileID = identifier.rawValue
  116. metadata.fileName = NCBrandOptions.sharedInstance.brand
  117. metadata.fileNameView = NCBrandOptions.sharedInstance.brand
  118. metadata.typeFile = k_metadataTypeFile_directory
  119. return FileProviderItem(metadata: metadata, serverUrl: homeServerUrl)
  120. }
  121. } else {
  122. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue)) {
  123. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND directoryID = %@", account, metadata.directoryID)) {
  124. return FileProviderItem(metadata: metadata, serverUrl: directory.serverUrl)
  125. }
  126. }
  127. }
  128. // implement the actual lookup
  129. throw NSFileProviderError(.noSuchItem)
  130. }
  131. override func urlForItem(withPersistentIdentifier identifier: NSFileProviderItemIdentifier) -> URL? {
  132. /* ONLY iOS 11*/
  133. guard #available(iOS 11, *) else {
  134. return nil
  135. }
  136. // resolve the given identifier to a file on disk
  137. guard let item = try? item(for: identifier) else {
  138. return nil
  139. }
  140. // in this implementation, all paths are structured as <base storage directory>/<item identifier>/<item file name>
  141. let manager = NSFileProviderManager.default
  142. var url = manager.documentStorageURL.appendingPathComponent(identifier.rawValue, isDirectory: true)
  143. if item.typeIdentifier == (kUTTypeFolder as String) {
  144. url = url.appendingPathComponent(item.filename, isDirectory:true)
  145. } else {
  146. url = url.appendingPathComponent(item.filename, isDirectory:false)
  147. }
  148. return url
  149. }
  150. override func persistentIdentifierForItem(at url: URL) -> NSFileProviderItemIdentifier? {
  151. // resolve the given URL to a persistent identifier using a database
  152. let pathComponents = url.pathComponents
  153. // exploit the fact that the path structure has been defined as
  154. // <base storage directory>/<item identifier>/<item file name> above
  155. assert(pathComponents.count > 2)
  156. let itemIdentifier = NSFileProviderItemIdentifier(pathComponents[pathComponents.count - 2])
  157. return itemIdentifier
  158. }
  159. // MARK: - Managing Shared Files
  160. override func providePlaceholder(at url: URL, completionHandler: @escaping (Error?) -> Void) {
  161. if #available(iOSApplicationExtension 11.0, *) {
  162. guard let identifier = persistentIdentifierForItem(at: url) else {
  163. completionHandler(NSFileProviderError(.noSuchItem))
  164. return
  165. }
  166. do {
  167. let fileProviderItem = try item(for: identifier)
  168. let placeholderURL = NSFileProviderManager.placeholderURL(for: url)
  169. try NSFileProviderManager.writePlaceholder(at: placeholderURL,withMetadata: fileProviderItem)
  170. completionHandler(nil)
  171. } catch let error {
  172. print("error: \(error)")
  173. completionHandler(error)
  174. }
  175. } else {
  176. let fileName = url.lastPathComponent
  177. let placeholderURL = NSFileProviderExtension.placeholderURL(for: self.documentStorageURL.appendingPathComponent(fileName))
  178. let fileSize = 0
  179. let metadata = [AnyHashable(URLResourceKey.fileSizeKey): fileSize]
  180. do {
  181. try NSFileProviderExtension.writePlaceholder(at: placeholderURL, withMetadata: metadata as! [URLResourceKey : Any])
  182. } catch let error {
  183. print("error: \(error)")
  184. }
  185. completionHandler(nil)
  186. }
  187. }
  188. override func startProvidingItem(at url: URL, completionHandler: @escaping ((_ error: Error?) -> Void)) {
  189. if #available(iOSApplicationExtension 11.0, *) {
  190. let pathComponents = url.pathComponents
  191. let identifier = NSFileProviderItemIdentifier(pathComponents[pathComponents.count - 2])
  192. var localEtag = ""
  193. var localEtagFPE = ""
  194. // If identifier is a temp return
  195. if identifier.rawValue.contains(k_uploadSessionID) {
  196. completionHandler(nil)
  197. return
  198. }
  199. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue)) else {
  200. completionHandler(NSFileProviderError(.noSuchItem))
  201. return
  202. }
  203. let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue))
  204. if tableLocalFile != nil {
  205. localEtag = tableLocalFile!.etag
  206. localEtagFPE = tableLocalFile!.etagFPE
  207. }
  208. if (localEtagFPE != "") {
  209. // Verify last version on "Local Table"
  210. if localEtag != localEtagFPE {
  211. if self.copyFile("\(directoryUser)/\(identifier.rawValue)", toPath: url.path) == nil {
  212. NCManageDatabase.sharedInstance.setLocalFile(fileID: identifier.rawValue, date: nil, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: nil, etag: nil, etagFPE: localEtag)
  213. }
  214. }
  215. completionHandler(nil)
  216. return
  217. }
  218. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  219. completionHandler(NSFileProviderError(.noSuchItem))
  220. return
  221. }
  222. // delete prev file + ico on Directory User
  223. _ = self.deleteFile("\(directoryUser)/\(metadata.fileID)")
  224. _ = self.deleteFile("\(directoryUser)/\(metadata.fileID).ico")
  225. let task = ocNetworking?.downloadFileNameServerUrl("\(serverUrl)/\(metadata.fileName)", fileNameLocalPath: "\(directoryUser)/\(metadata.fileID)", communication: CCNetworking.shared().sharedOCCommunicationExtensionDownload(metadata.fileName), success: { (lenght, etag, date) in
  226. // copy download file to url
  227. _ = self.copyFile("\(directoryUser)/\(metadata.fileID)", toPath: url.path)
  228. // update DB Local
  229. metadata.date = date! as NSDate
  230. metadata.etag = etag!
  231. NCManageDatabase.sharedInstance.addLocalFile(metadata: metadata)
  232. NCManageDatabase.sharedInstance.setLocalFile(fileID: metadata.fileID, date: date! as NSDate, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: nil, etag: etag, etagFPE: etag)
  233. // Update DB Metadata
  234. _ = NCManageDatabase.sharedInstance.addMetadata(metadata)
  235. completionHandler(nil)
  236. }, failure: { (errorMessage, errorCode) in
  237. completionHandler(NSFileProviderError(.serverUnreachable))
  238. })
  239. if task != nil {
  240. NSFileProviderManager.default.register(task!, forItemWithIdentifier: NSFileProviderItemIdentifier(identifier.rawValue)) { (error) in }
  241. }
  242. } else {
  243. guard let fileData = try? Data(contentsOf: url) else {
  244. completionHandler(nil)
  245. return
  246. }
  247. do {
  248. _ = try fileData.write(to: url, options: NSData.WritingOptions())
  249. completionHandler(nil)
  250. } catch let error {
  251. print("error: \(error)")
  252. completionHandler(error)
  253. }
  254. }
  255. }
  256. override func itemChanged(at url: URL) {
  257. if #available(iOSApplicationExtension 11.0, *) {
  258. let fileName = url.lastPathComponent
  259. let pathComponents = url.pathComponents
  260. let metadataNet = CCMetadataNet()
  261. assert(pathComponents.count > 2)
  262. let identifier = NSFileProviderItemIdentifier(pathComponents[pathComponents.count - 2])
  263. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue)) else {
  264. return
  265. }
  266. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  267. return
  268. }
  269. // Copy file to Change Document & if exists on Import Document
  270. _ = self.copyFile(url.path, toPath: fileProviderStorageURL!.path + "/" + fileName)
  271. metadataNet.account = account
  272. metadataNet.assetLocalIdentifier = k_assetLocalIdentifierFileProviderStorage + identifier.rawValue
  273. metadataNet.fileName = fileName
  274. metadataNet.path = fileProviderStorageURL!.path + "/" + fileName
  275. metadataNet.selector = selectorUploadFile
  276. metadataNet.selectorPost = ""
  277. metadataNet.serverUrl = serverUrl
  278. metadataNet.session = k_upload_session_extension
  279. metadataNet.taskStatus = Int(k_taskStatusResume)
  280. _ = NCManageDatabase.sharedInstance.addQueueUpload(metadataNet: metadataNet)
  281. self.uploadFile()
  282. } else {
  283. let fileSize = (try! fileManagerExtension.attributesOfItem(atPath: url.path)[FileAttributeKey.size] as! NSNumber).uint64Value
  284. NSLog("[LOG] Item changed at URL %@ %lu", url as NSURL, fileSize)
  285. guard let account = NCManageDatabase.sharedInstance.getAccountActive() else {
  286. self.stopProvidingItem(at: url)
  287. return
  288. }
  289. guard let fileName = CCUtility.getFileNameExt() else {
  290. self.stopProvidingItem(at: url)
  291. return
  292. }
  293. // -------> Fix : Clear FileName for twice Office 365
  294. CCUtility.setFileNameExt("")
  295. // --------------------------------------------------
  296. if (fileName != url.lastPathComponent) {
  297. self.stopProvidingItem(at: url)
  298. return
  299. }
  300. guard let serverUrl = CCUtility.getServerUrlExt() else {
  301. self.stopProvidingItem(at: url)
  302. return
  303. }
  304. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(serverUrl) else {
  305. self.stopProvidingItem(at: url)
  306. return
  307. }
  308. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileName == %@ AND directoryID == %@", fileName, directoryID))
  309. if metadata != nil {
  310. // Update
  311. let uploadID = k_uploadSessionID + CCUtility.createRandomString(16)
  312. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  313. let destinationDirectoryUser = "\(directoryUser!)/\(uploadID)"
  314. // copy sourceURL on directoryUser
  315. _ = self.copyFile(url.path, toPath: destinationDirectoryUser)
  316. // Prepare for send Metadata
  317. metadata!.sessionID = uploadID
  318. metadata!.session = k_upload_session
  319. metadata!.sessionTaskIdentifier = Int(k_taskIdentifierWaitStart)
  320. _ = NCManageDatabase.sharedInstance.updateMetadata(metadata!)
  321. } else {
  322. // New
  323. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  324. let destinationDirectoryUser = "\(directoryUser!)/\(fileName)"
  325. _ = self.copyFile(url.path, toPath: destinationDirectoryUser)
  326. CCNetworking.shared().uploadFile(fileName, serverUrl: serverUrl, assetLocalIdentifier: nil, session: k_upload_session, taskStatus: Int(k_taskStatusResume), selector: nil, selectorPost: nil, errorCode: 0, delegate: self)
  327. }
  328. self.stopProvidingItem(at: url)
  329. }
  330. }
  331. override func stopProvidingItem(at url: URL) {
  332. // Called after the last claim to the file has been released. At this point, it is safe for the file provider to remove the content file.
  333. // Care should be taken that the corresponding placeholder file stays behind after the content file has been deleted.
  334. // Called after the last claim to the file has been released. At this point, it is safe for the file provider to remove the content file.
  335. // look up whether the file has local changes
  336. let fileHasLocalChanges = false
  337. if !fileHasLocalChanges {
  338. // remove the existing file to free up space
  339. do {
  340. _ = try fileManagerExtension.removeItem(at: url)
  341. } catch let error {
  342. print("error: \(error)")
  343. }
  344. // write out a placeholder to facilitate future property lookups
  345. self.providePlaceholder(at: url, completionHandler: { error in
  346. // handle any error, do any necessary cleanup
  347. })
  348. }
  349. }
  350. // MARK: - Accessing Thumbnails
  351. override func fetchThumbnails(for itemIdentifiers: [NSFileProviderItemIdentifier], requestedSize size: CGSize, perThumbnailCompletionHandler: @escaping (NSFileProviderItemIdentifier, Data?, Error?) -> Void, completionHandler: @escaping (Error?) -> Void) -> Progress {
  352. /* ONLY iOS 11*/
  353. guard #available(iOS 11, *) else {
  354. return Progress(totalUnitCount:0)
  355. }
  356. let progress = Progress(totalUnitCount: Int64(itemIdentifiers.count))
  357. var counterProgress: Int64 = 0
  358. for itemIdentifier in itemIdentifiers {
  359. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) {
  360. if (metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video) {
  361. let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID)
  362. let fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: serverUrl, activeUrl: accountUrl)
  363. let fileNameLocal = metadata.fileID
  364. ocNetworking?.downloadThumbnail(withDimOfThumbnail: "m", fileName: fileName, fileNameLocal: fileNameLocal, success: {
  365. do {
  366. let url = URL.init(fileURLWithPath: "\(directoryUser)/\(itemIdentifier.rawValue).ico")
  367. let data = try Data.init(contentsOf: url)
  368. perThumbnailCompletionHandler(itemIdentifier, data, nil)
  369. } catch let error {
  370. print("error: \(error)")
  371. perThumbnailCompletionHandler(itemIdentifier, nil, NSFileProviderError(.noSuchItem))
  372. }
  373. counterProgress += 1
  374. if (counterProgress == progress.totalUnitCount) {
  375. completionHandler(nil)
  376. }
  377. }, failure: { (errorMessage, errorCode) in
  378. perThumbnailCompletionHandler(itemIdentifier, nil, NSFileProviderError(.serverUnreachable))
  379. counterProgress += 1
  380. if (counterProgress == progress.totalUnitCount) {
  381. completionHandler(nil)
  382. }
  383. })
  384. } else {
  385. counterProgress += 1
  386. if (counterProgress == progress.totalUnitCount) {
  387. completionHandler(nil)
  388. }
  389. }
  390. } else {
  391. counterProgress += 1
  392. if (counterProgress == progress.totalUnitCount) {
  393. completionHandler(nil)
  394. }
  395. }
  396. }
  397. return progress
  398. }
  399. // MARK: - Actions
  400. override func createDirectory(withName directoryName: String, inParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  401. /* ONLY iOS 11*/
  402. guard #available(iOS 11, *) else {
  403. return
  404. }
  405. var serverUrl = ""
  406. if parentItemIdentifier == .rootContainer {
  407. serverUrl = homeServerUrl
  408. } else {
  409. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)) else {
  410. completionHandler(nil, NSFileProviderError(.noSuchItem))
  411. return
  412. }
  413. serverUrl = directoryParent.serverUrl
  414. }
  415. ocNetworking?.createFolder(directoryName, serverUrl: serverUrl, account: account, success: { (fileID, date) in
  416. let metadata = tableMetadata()
  417. metadata.account = account
  418. metadata.directory = true
  419. metadata.directoryID = NCManageDatabase.sharedInstance.getDirectoryID(serverUrl)!
  420. metadata.fileID = fileID!
  421. metadata.fileName = directoryName
  422. metadata.fileNameView = directoryName
  423. metadata.typeFile = k_metadataTypeFile_directory
  424. // METADATA
  425. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  426. completionHandler(nil, NSFileProviderError(.noSuchItem))
  427. return
  428. }
  429. // DIRECTORY
  430. guard let _ = NCManageDatabase.sharedInstance.addDirectory(encrypted: false, favorite: false, fileID: fileID!, permissions: nil, serverUrl: serverUrl + "/" + directoryName) else {
  431. completionHandler(nil, NSFileProviderError(.noSuchItem))
  432. return
  433. }
  434. let item = FileProviderItem(metadata: metadataDB, serverUrl: serverUrl)
  435. completionHandler(item, nil)
  436. }, failure: { (errorMessage, errorCode) in
  437. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  438. })
  439. }
  440. override func deleteItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (Error?) -> Void) {
  441. /* ONLY iOS 11*/
  442. guard #available(iOS 11, *) else {
  443. return
  444. }
  445. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  446. completionHandler(nil)
  447. return
  448. }
  449. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  450. completionHandler(nil)
  451. return
  452. }
  453. ocNetworking?.deleteFileOrFolder(metadata.fileName, serverUrl: serverUrl, success: {
  454. let fileNamePath = directoryUser + "/" + metadata.fileID
  455. do {
  456. try fileManagerExtension.removeItem(atPath: fileNamePath)
  457. } catch let error {
  458. print("error: \(error)")
  459. }
  460. do {
  461. try fileManagerExtension.removeItem(atPath: fileNamePath + ".ico")
  462. } catch let error {
  463. print("error: \(error)")
  464. }
  465. do {
  466. try fileManagerExtension.removeItem(atPath: fileProviderStorageURL!.path + "/" + metadata.fileID)
  467. } catch let error {
  468. print("error: \(error)")
  469. }
  470. if metadata.directory {
  471. let dirForDelete = CCUtility.stringAppendServerUrl(serverUrl, addFileName: metadata.fileName)
  472. NCManageDatabase.sharedInstance.deleteDirectoryAndSubDirectory(serverUrl: dirForDelete!)
  473. }
  474. NCManageDatabase.sharedInstance.deleteLocalFile(predicate: NSPredicate(format: "fileID == %@", metadata.fileID))
  475. NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "fileID == %@", metadata.fileID), clearDateReadDirectoryID: nil)
  476. completionHandler(nil)
  477. }, failure: { (errorMessage, errorCode) in
  478. if errorCode == 404 {
  479. completionHandler(nil)
  480. } else {
  481. completionHandler(NSFileProviderError(.serverUnreachable))
  482. }
  483. })
  484. }
  485. override func reparentItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, toParentItemWithIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, newName: String?, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  486. /* ONLY iOS 11*/
  487. guard #available(iOS 11, *) else {
  488. return
  489. }
  490. var serverUrlTo = ""
  491. var fileNameTo = ""
  492. var directoryIDTo = ""
  493. guard let itemFrom = try? item(for: itemIdentifier) else {
  494. completionHandler(nil, NSFileProviderError(.noSuchItem))
  495. return
  496. }
  497. guard let metadataFrom = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  498. completionHandler(nil, NSFileProviderError(.noSuchItem))
  499. return
  500. }
  501. guard let serverUrlFrom = NCManageDatabase.sharedInstance.getServerUrl(metadataFrom.directoryID) else {
  502. completionHandler(nil, NSFileProviderError(.noSuchItem))
  503. return
  504. }
  505. let fileNameFrom = serverUrlFrom + "/" + itemFrom.filename
  506. if parentItemIdentifier == NSFileProviderItemIdentifier.rootContainer {
  507. serverUrlTo = homeServerUrl
  508. } else {
  509. guard let metadataTo = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)) else {
  510. completionHandler(nil, NSFileProviderError(.noSuchItem))
  511. return
  512. }
  513. serverUrlTo = NCManageDatabase.sharedInstance.getServerUrl(metadataTo.directoryID)! + "/" + metadataTo.fileName
  514. }
  515. directoryIDTo = NCManageDatabase.sharedInstance.getDirectoryID(serverUrlTo)!
  516. fileNameTo = serverUrlTo + "/" + itemFrom.filename
  517. ocNetworking?.moveFileOrFolder(fileNameFrom, fileNameTo: fileNameTo, success: {
  518. if metadataFrom.directory {
  519. NCManageDatabase.sharedInstance.deleteDirectoryAndSubDirectory(serverUrl: serverUrlFrom)
  520. NCManageDatabase.sharedInstance.moveMetadata(fileName: metadataFrom.fileName, directoryID: metadataFrom.directoryID, directoryIDTo: directoryIDTo)
  521. _ = NCManageDatabase.sharedInstance.addDirectory(encrypted: false, favorite: false, fileID: nil, permissions: nil, serverUrl: serverUrlTo)
  522. } else {
  523. NCManageDatabase.sharedInstance.moveMetadata(fileName: metadataFrom.fileName, directoryID: metadataFrom.directoryID, directoryIDTo: directoryIDTo)
  524. }
  525. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  526. completionHandler(nil, NSFileProviderError(.noSuchItem))
  527. return
  528. }
  529. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrlTo)
  530. completionHandler(item, nil)
  531. }, failure: { (errorMessage, errorCode) in
  532. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  533. })
  534. }
  535. override func renameItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, toName itemName: String, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  536. /* ONLY iOS 11*/
  537. guard #available(iOS 11, *) else {
  538. return
  539. }
  540. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  541. completionHandler(nil, NSFileProviderError(.noSuchItem))
  542. return
  543. }
  544. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  545. completionHandler(nil, NSFileProviderError(.noSuchItem))
  546. return
  547. }
  548. guard let directoryTable = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "serverUrl = %@", serverUrl)) else {
  549. completionHandler(nil, NSFileProviderError(.noSuchItem))
  550. return
  551. }
  552. let fileNameFrom = metadata.fileNameView
  553. let fileNamePathFrom = serverUrl + "/" + fileNameFrom
  554. let fileNamePathTo = serverUrl + "/" + itemName
  555. ocNetworking?.moveFileOrFolder(fileNamePathFrom, fileNameTo: fileNamePathTo, success: {
  556. metadata.fileName = itemName
  557. metadata.fileNameView = itemName
  558. guard let metadata = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  559. completionHandler(nil, NSFileProviderError(.noSuchItem))
  560. return
  561. }
  562. if metadata.directory {
  563. NCManageDatabase.sharedInstance.setDirectory(serverUrl: fileNamePathFrom, serverUrlTo: fileNamePathTo, etag: nil, fileID: nil, encrypted: directoryTable.e2eEncrypted)
  564. } else {
  565. do {
  566. try fileManagerExtension.moveItem(atPath: fileProviderStorageURL!.path + "/" + metadata.fileID + "/" + fileNameFrom, toPath: fileProviderStorageURL!.path + "/" + metadata.fileID + "/" + itemName)
  567. NCManageDatabase.sharedInstance.setLocalFile(fileID: metadata.fileID, date: nil, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: itemName, etag: nil, etagFPE: nil)
  568. } catch { }
  569. }
  570. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  571. completionHandler(item, nil)
  572. }, failure: { (errorMessage, errorCode) in
  573. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  574. })
  575. }
  576. override func setFavoriteRank(_ favoriteRank: NSNumber?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  577. /* ONLY iOS 11*/
  578. guard #available(iOS 11, *) else {
  579. return
  580. }
  581. completionHandler(nil, nil)
  582. /*
  583. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  584. completionHandler(nil, NSFileProviderError(.noSuchItem))
  585. return
  586. }
  587. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  588. completionHandler(nil, NSFileProviderError(.noSuchItem))
  589. return
  590. }
  591. // Refresh Favorite Identifier Rank
  592. listFavoriteIdentifierRank = NCManageDatabase.sharedInstance.getTableMetadatasDirectoryFavoriteIdentifierRank()
  593. if favoriteRank == nil {
  594. listFavoriteIdentifierRank.removeValue(forKey: itemIdentifier.rawValue)
  595. } else {
  596. let rank = listFavoriteIdentifierRank[itemIdentifier.rawValue]
  597. if rank == nil {
  598. listFavoriteIdentifierRank[itemIdentifier.rawValue] = favoriteRank//NSNumber(value: Int64(newRank))
  599. }
  600. favorite = true
  601. }
  602. // Call the completion handler before performing any network activity or other long-running tasks. Defer these tasks to the background
  603. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  604. completionHandler(item, nil)
  605. // Change Status ? Call API Nextcloud Network
  606. if (favorite == true && metadata.favorite == false) || (favorite == false && metadata.favorite == true) {
  607. DispatchQueue(label: "com.nextcloud", qos: .background, attributes: .concurrent, autoreleaseFrequency: .inherit, target: nil).async {
  608. ocNetworking?.settingFavorite(metadata.fileName, serverUrl: serverUrl, favorite: favorite, success: {
  609. // Change DB
  610. metadata.favorite = favorite
  611. _ = NCManageDatabase.sharedInstance.addMetadata(metadata)
  612. // Refresh Favorite Identifier Rank
  613. listFavoriteIdentifierRank = NCManageDatabase.sharedInstance.getTableMetadatasDirectoryFavoriteIdentifierRank()
  614. // Refresh Item
  615. self.refreshEnumerator(identifier: itemIdentifier, serverUrl: serverUrl)
  616. }, failure: { (errorMessage, errorCode) in
  617. print("errorMessage")
  618. })
  619. }
  620. }
  621. */
  622. }
  623. override func setLastUsedDate(_ lastUsedDate: Date?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  624. print("[LOG] setLastUsedDate")
  625. completionHandler(nil, nil)
  626. }
  627. override func setTagData(_ tagData: Data?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  628. /* ONLY iOS 11*/
  629. guard #available(iOS 11, *) else {
  630. return
  631. }
  632. // Add, Remove (nil)
  633. NCManageDatabase.sharedInstance.addTag(itemIdentifier.rawValue, tagIOS: tagData)
  634. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  635. completionHandler(nil, NSFileProviderError(.noSuchItem))
  636. return
  637. }
  638. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  639. completionHandler(nil, NSFileProviderError(.noSuchItem))
  640. return
  641. }
  642. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  643. completionHandler(item, nil)
  644. self.refreshEnumerator(identifier: itemIdentifier, serverUrl: "WorkingSet")
  645. }
  646. /*
  647. override func trashItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  648. print("[LOG] trashitem")
  649. completionHandler(nil, nil)
  650. }
  651. override func untrashItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier?, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  652. print("[LOG] untrashitem")
  653. completionHandler(nil, nil)
  654. }
  655. */
  656. override func importDocument(at fileURL: URL, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  657. /* ONLY iOS 11*/
  658. guard #available(iOS 11, *) else {
  659. return
  660. }
  661. let fileCoordinator = NSFileCoordinator()
  662. var error: NSError?
  663. var directoryPredicate: NSPredicate
  664. var size = 0 as Double
  665. let metadata = tableMetadata()
  666. if parentItemIdentifier == .rootContainer {
  667. directoryPredicate = NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)
  668. } else {
  669. directoryPredicate = NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)
  670. }
  671. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: directoryPredicate) else {
  672. completionHandler(nil, NSFileProviderError(.noSuchItem))
  673. return
  674. }
  675. let serverUrl = directoryParent.serverUrl
  676. // --------------------------------------------- Copy file here with security access
  677. if fileURL.startAccessingSecurityScopedResource() == false {
  678. completionHandler(nil, NSFileProviderError(.noSuchItem))
  679. return
  680. }
  681. let fileName = createFileName(fileURL.lastPathComponent, directoryID: directoryParent.directoryID, serverUrl: serverUrl)
  682. fileCoordinator.coordinate(readingItemAt: fileURL, options: NSFileCoordinator.ReadingOptions.withoutChanges, error: &error) { (url) in
  683. _ = self.copyFile(url.path, toPath: fileProviderStorageURL!.path + "/" + fileName)
  684. // _ = self.copyFile(url.path, toPath: fileProviderStorageURL!.path + "/" + fileURL.lastPathComponent)
  685. }
  686. fileURL.stopAccessingSecurityScopedResource()
  687. // ---------------------------------------------------------------------------------
  688. do {
  689. let attributes = try fileManagerExtension.attributesOfItem(atPath: fileProviderStorageURL!.path + "/" + fileName)
  690. size = attributes[FileAttributeKey.size] as! Double
  691. } catch let error {
  692. print("error: \(error)")
  693. }
  694. // Metadata TEMP
  695. metadata.account = account
  696. metadata.date = NSDate()
  697. metadata.directory = false
  698. metadata.directoryID = directoryParent.directoryID
  699. metadata.etag = ""
  700. metadata.fileID = FILEID_IMPORT_METADATA_TEMP
  701. metadata.size = size
  702. metadata.status = Double(k_metadataStatusHide)
  703. metadata.fileName = fileURL.lastPathComponent
  704. metadata.fileNameView = fileURL.lastPathComponent
  705. CCUtility.insertTypeFileIconName(fileName, metadata: metadata)
  706. if (size > 0) {
  707. let metadataNet = CCMetadataNet()
  708. metadataNet.account = account
  709. metadataNet.assetLocalIdentifier = k_assetLocalIdentifierFileProviderStorage + k_uploadSessionID + directoryParent.directoryID + fileName
  710. metadataNet.fileName = fileName
  711. metadataNet.path = fileProviderStorageURL!.path + "/" + fileName
  712. metadataNet.selector = selectorUploadFile
  713. metadataNet.selectorPost = ""
  714. metadataNet.serverUrl = serverUrl
  715. metadataNet.session = k_upload_session_extension
  716. metadataNet.taskStatus = Int(k_taskStatusResume)
  717. _ = NCManageDatabase.sharedInstance.addQueueUpload(metadataNet: metadataNet)
  718. } else {
  719. // OFFICE 365 LEN = 0
  720. }
  721. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  722. completionHandler(nil, NSFileProviderError(.noSuchItem))
  723. return
  724. }
  725. let item = FileProviderItem(metadata: metadataDB, serverUrl: serverUrl)
  726. completionHandler(item, nil)
  727. }
  728. // --------------------------------------------------------------------------------------------
  729. // MARK: - Upload
  730. // --------------------------------------------------------------------------------------------
  731. func uploadFileSuccessFailure(_ fileName: String!, fileID: String!, assetLocalIdentifier: String!, serverUrl: String!, selector: String!, selectorPost: String!, errorMessage: String!, errorCode: Int) {
  732. let serialQueue = DispatchQueue(label: "uploadFileSuccessFailure")
  733. serialQueue.sync {
  734. NCManageDatabase.sharedInstance.deleteQueueUpload(assetLocalIdentifier: assetLocalIdentifier, selector: selector)
  735. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, fileID)) {
  736. if (errorCode == 0) {
  737. let sourcePath = fileProviderStorageURL!.path + "/" + fileName
  738. let destinationPath = fileProviderStorageURL!.path + "/" + fileID + "/" + fileName
  739. NCManageDatabase.sharedInstance.setLocalFile(fileID: fileID, date: nil, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: nil, etag: metadata.etag, etagFPE: metadata.etag)
  740. do {
  741. try fileManagerExtension.createDirectory(atPath: fileProviderStorageURL!.path + "/" + fileID, withIntermediateDirectories: true, attributes: nil)
  742. } catch { }
  743. _ = moveFile(sourcePath, toPath: destinationPath)
  744. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  745. self.refreshEnumerator(identifier: item.itemIdentifier, serverUrl: serverUrl)
  746. }
  747. }
  748. uploadFile()
  749. }
  750. }
  751. func uploadFile() {
  752. let queueInLock = NCManageDatabase.sharedInstance.getQueueUploadInLock()
  753. if queueInLock != nil && queueInLock!.count == 0 {
  754. let metadataNetQueue = NCManageDatabase.sharedInstance.getQueueUploadLock(selector: selectorUploadFile, withPath: true)
  755. if metadataNetQueue != nil {
  756. if self.copyFile(metadataNetQueue!.path, toPath: directoryUser + "/" + metadataNetQueue!.fileName) == nil {
  757. CCNetworking.shared().uploadFile(metadataNetQueue!.fileName, serverUrl: metadataNetQueue!.serverUrl, assetLocalIdentifier: metadataNetQueue!.assetLocalIdentifier ,session: metadataNetQueue!.session, taskStatus: metadataNetQueue!.taskStatus, selector: metadataNetQueue!.selector, selectorPost: metadataNetQueue!.selectorPost, errorCode: 0, delegate: self)
  758. } else {
  759. // file not present, delete record Upload Queue
  760. NCManageDatabase.sharedInstance.deleteQueueUpload(path: metadataNetQueue!.path)
  761. }
  762. }
  763. }
  764. }
  765. func verifyUploadQueueInLock() {
  766. let tasks = CCNetworking.shared().getUploadTasksExtensionSession()
  767. if tasks!.count == 0 {
  768. let records = NCManageDatabase.sharedInstance.getQueueUpload(predicate: NSPredicate(format: "account = %@ AND selector = %@ AND lock == true AND path != nil", account, selectorUploadFile))
  769. if records != nil && records!.count > 0 {
  770. NCManageDatabase.sharedInstance.unlockAllQueueUploadInPath()
  771. }
  772. }
  773. }
  774. // --------------------------------------------------------------------------------------------
  775. // MARK: - User Function
  776. // --------------------------------------------------------------------------------------------
  777. func refreshEnumerator(identifier: NSFileProviderItemIdentifier, serverUrl: String) {
  778. /* ONLY iOS 11*/
  779. guard #available(iOS 11, *) else {
  780. return
  781. }
  782. let item = try? self.item(for: identifier)
  783. if item != nil {
  784. var found = false
  785. for updateItem in listUpdateItems {
  786. if updateItem.itemIdentifier.rawValue == identifier.rawValue {
  787. found = true
  788. }
  789. }
  790. if !found {
  791. listUpdateItems.append(item!)
  792. }
  793. }
  794. if serverUrl == homeServerUrl {
  795. NSFileProviderManager.default.signalEnumerator(for: .rootContainer, completionHandler: { (error) in
  796. print("send signal rootContainer")
  797. })
  798. } else if serverUrl == "WorkingSet" {
  799. NSFileProviderManager.default.signalEnumerator(for: .workingSet, completionHandler: { (error) in
  800. print("send signal workingSet")
  801. })
  802. } else {
  803. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND serverUrl = %@", account, serverUrl)) {
  804. let itemDirectory = NSFileProviderItemIdentifier(directory.fileID)
  805. NSFileProviderManager.default.signalEnumerator(for: itemDirectory, completionHandler: { (error) in
  806. print("send signal")
  807. })
  808. }
  809. }
  810. }
  811. func copyFile(_ atPath: String, toPath: String) -> Error? {
  812. var errorResult: Error?
  813. do {
  814. try fileManagerExtension.removeItem(atPath: toPath)
  815. } catch let error {
  816. print("error: \(error)")
  817. }
  818. do {
  819. try fileManagerExtension.copyItem(atPath: atPath, toPath: toPath)
  820. } catch let error {
  821. errorResult = error
  822. }
  823. return errorResult
  824. }
  825. func moveFile(_ atPath: String, toPath: String) -> Error? {
  826. var errorResult: Error?
  827. do {
  828. try fileManagerExtension.removeItem(atPath: toPath)
  829. } catch let error {
  830. print("error: \(error)")
  831. }
  832. do {
  833. try fileManagerExtension.moveItem(atPath: atPath, toPath: toPath)
  834. } catch let error {
  835. errorResult = error
  836. }
  837. return errorResult
  838. }
  839. func deleteFile(_ atPath: String) -> Error? {
  840. var errorResult: Error?
  841. do {
  842. try fileManagerExtension.removeItem(atPath: atPath)
  843. } catch let error {
  844. errorResult = error
  845. }
  846. return errorResult
  847. }
  848. func createFileName(_ fileName: String, directoryID: String, serverUrl: String) -> String {
  849. let serialQueue = DispatchQueue(label: "queueCreateFileName")
  850. var resultFileName = fileName
  851. serialQueue.sync {
  852. var exitLoop = false
  853. while exitLoop == false {
  854. if NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileNameView = %@ AND directoryID = %@", account, resultFileName, directoryID)) != nil || fileNamePathImport.contains(serverUrl+"/"+resultFileName) {
  855. var name = NSString(string: resultFileName).deletingPathExtension
  856. let ext = NSString(string: resultFileName).pathExtension
  857. let characters = Array(name)
  858. if characters.count < 2 {
  859. resultFileName = name + " " + "1" + "." + ext
  860. } else {
  861. let space = characters[characters.count-2]
  862. let numChar = characters[characters.count-1]
  863. var num = Int(String(numChar))
  864. if (space == " " && num != nil) {
  865. name = String(name.dropLast())
  866. num = num! + 1
  867. resultFileName = name + "\(num!)" + "." + ext
  868. } else {
  869. resultFileName = name + " " + "1" + "." + ext
  870. }
  871. }
  872. } else {
  873. exitLoop = true
  874. }
  875. }
  876. // add fileNamePathImport
  877. fileNamePathImport.append(serverUrl+"/"+resultFileName)
  878. }
  879. return resultFileName
  880. }
  881. }
  882. // --------------------------------------------------------------------------------------------
  883. // MARK: - Setup Active Accont
  884. // --------------------------------------------------------------------------------------------
  885. func setupActiveAccount() {
  886. guard let activeAccount = NCManageDatabase.sharedInstance.getAccountActive() else {
  887. return
  888. }
  889. account = activeAccount.account
  890. accountUser = activeAccount.user
  891. accountUserID = activeAccount.userID
  892. accountPassword = activeAccount.password
  893. accountUrl = activeAccount.url
  894. homeServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeAccount.url)
  895. directoryUser = CCUtility.getDirectoryActiveUser(activeAccount.user, activeUrl: activeAccount.url)
  896. ocNetworking = OCnetworking.init(delegate: nil, metadataNet: nil, withUser: accountUser, withUserID: accountUserID, withPassword: accountPassword, withUrl: accountUrl)
  897. groupURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.sharedInstance.capabilitiesGroups)
  898. fileProviderStorageURL = groupURL!.appendingPathComponent(k_assetLocalIdentifierFileProviderStorage)
  899. // Create dir File Provider Storage
  900. do {
  901. try FileManager.default.createDirectory(atPath: fileProviderStorageURL!.path, withIntermediateDirectories: true, attributes: nil)
  902. } catch let error as NSError {
  903. NSLog("Unable to create directory \(error.debugDescription)")
  904. }
  905. }