FileProvider.swift 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  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. import FileProvider
  9. import UIKit
  10. import MobileCoreServices
  11. var ocNetworking: OCnetworking?
  12. var account = ""
  13. var accountUser = ""
  14. var accountUserID = ""
  15. var accountPassword = ""
  16. var accountUrl = ""
  17. var homeServerUrl = ""
  18. var directoryUser = ""
  19. var groupURL: URL?
  20. class FileProvider: NSFileProviderExtension {
  21. var uploading = [String]()
  22. override init() {
  23. super.init()
  24. guard let activeAccount = NCManageDatabase.sharedInstance.getAccountActive() else {
  25. return
  26. }
  27. account = activeAccount.account
  28. accountUser = activeAccount.user
  29. accountUserID = activeAccount.userID
  30. accountPassword = activeAccount.password
  31. accountUrl = activeAccount.url
  32. homeServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeAccount.url)
  33. directoryUser = CCUtility.getDirectoryActiveUser(activeAccount.user, activeUrl: activeAccount.url)
  34. ocNetworking = OCnetworking.init(delegate: nil, metadataNet: nil, withUser: accountUser, withUserID: accountUserID, withPassword: accountPassword, withUrl: accountUrl)
  35. groupURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.sharedInstance.capabilitiesGroups)
  36. if #available(iOSApplicationExtension 11.0, *) {
  37. // Only iOS 11
  38. } else {
  39. NSFileCoordinator().coordinate(writingItemAt: self.documentStorageURL, options: [], error: nil, byAccessor: { newURL in
  40. try? FileManager.default.createDirectory(at: newURL, withIntermediateDirectories: true, attributes: nil)
  41. })
  42. }
  43. }
  44. override func item(for identifier: NSFileProviderItemIdentifier) throws -> NSFileProviderItem {
  45. /* ONLY iOS 11*/
  46. guard #available(iOS 11, *) else {
  47. throw NSError(domain: NSCocoaErrorDomain, code: NSFileNoSuchFileError, userInfo:[:])
  48. }
  49. if identifier == .rootContainer {
  50. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)) {
  51. let metadata = tableMetadata()
  52. metadata.account = account
  53. metadata.directory = true
  54. metadata.directoryID = directory.directoryID
  55. metadata.fileID = identifier.rawValue
  56. metadata.fileName = NCBrandOptions.sharedInstance.brand
  57. metadata.fileNameView = NCBrandOptions.sharedInstance.brand
  58. metadata.typeFile = k_metadataTypeFile_directory
  59. return FileProviderItem(metadata: metadata, serverUrl: homeServerUrl)
  60. }
  61. } else {
  62. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue)) {
  63. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND directoryID = %@", account, metadata.directoryID)) {
  64. if (!metadata.directory) {
  65. let identifierPathUrl = groupURL!.appendingPathComponent("File Provider Storage").appendingPathComponent(metadata.fileID)
  66. let toPath = "\(identifierPathUrl.path)/\(metadata.fileNameView)"
  67. let atPath = "\(directoryUser)/\(metadata.fileID)"
  68. if !FileManager.default.fileExists(atPath: toPath) {
  69. try? FileManager.default.createDirectory(atPath: identifierPathUrl.path, withIntermediateDirectories: true, attributes: nil)
  70. if FileManager.default.fileExists(atPath: atPath) {
  71. try? FileManager.default.copyItem(atPath: atPath, toPath: toPath)
  72. } else {
  73. FileManager.default.createFile(atPath: toPath, contents: nil, attributes: nil)
  74. }
  75. }
  76. }
  77. return FileProviderItem(metadata: metadata, serverUrl: directory.serverUrl)
  78. }
  79. }
  80. }
  81. // TODO: implement the actual lookup
  82. throw NSFileProviderError(.noSuchItem)
  83. }
  84. override func urlForItem(withPersistentIdentifier identifier: NSFileProviderItemIdentifier) -> URL? {
  85. /* ONLY iOS 11*/
  86. guard #available(iOS 11, *) else {
  87. return nil
  88. }
  89. // resolve the given identifier to a file on disk
  90. guard let item = try? item(for: identifier) else {
  91. return nil
  92. }
  93. // in this implementation, all paths are structured as <base storage directory>/<item identifier>/<item file name>
  94. let manager = NSFileProviderManager.default
  95. var url = manager.documentStorageURL.appendingPathComponent(identifier.rawValue, isDirectory: true)
  96. if item.typeIdentifier == (kUTTypeFolder as String) {
  97. url = url.appendingPathComponent(item.filename, isDirectory:true)
  98. } else {
  99. url = url.appendingPathComponent(item.filename, isDirectory:false)
  100. }
  101. return url
  102. }
  103. override func persistentIdentifierForItem(at url: URL) -> NSFileProviderItemIdentifier? {
  104. // resolve the given URL to a persistent identifier using a database
  105. let pathComponents = url.pathComponents
  106. // exploit the fact that the path structure has been defined as
  107. // <base storage directory>/<item identifier>/<item file name> above
  108. assert(pathComponents.count > 2)
  109. let itemIdentifier = NSFileProviderItemIdentifier(pathComponents[pathComponents.count - 2])
  110. return itemIdentifier
  111. }
  112. override func providePlaceholder(at url: URL, completionHandler: @escaping (Error?) -> Void) {
  113. if #available(iOSApplicationExtension 11.0, *) {
  114. guard let identifier = persistentIdentifierForItem(at: url) else {
  115. completionHandler(NSFileProviderError(.noSuchItem))
  116. return
  117. }
  118. do {
  119. let fileProviderItem = try item(for: identifier)
  120. let placeholderURL = NSFileProviderManager.placeholderURL(for: url)
  121. try NSFileProviderManager.writePlaceholder(at: placeholderURL,withMetadata: fileProviderItem)
  122. completionHandler(nil)
  123. } catch let error {
  124. completionHandler(error)
  125. }
  126. } else {
  127. let fileName = url.lastPathComponent
  128. let placeholderURL = NSFileProviderExtension.placeholderURL(for: self.documentStorageURL.appendingPathComponent(fileName))
  129. let fileSize = 0
  130. let metadata = [AnyHashable(URLResourceKey.fileSizeKey): fileSize]
  131. do {
  132. try NSFileProviderExtension.writePlaceholder(at: placeholderURL, withMetadata: metadata as! [URLResourceKey : Any])
  133. } catch {
  134. }
  135. completionHandler(nil)
  136. }
  137. }
  138. override func startProvidingItem(at url: URL, completionHandler: @escaping ((_ error: Error?) -> Void)) {
  139. if #available(iOSApplicationExtension 11.0, *) {
  140. var fileSize : UInt64 = 0
  141. do {
  142. let attr = try FileManager.default.attributesOfItem(atPath: url.path)
  143. fileSize = attr[FileAttributeKey.size] as! UInt64
  144. } catch {
  145. print("Error: \(error)")
  146. completionHandler(NSFileProviderError(.noSuchItem))
  147. }
  148. // Do not exists
  149. if fileSize == 0 {
  150. let pathComponents = url.pathComponents
  151. let identifier = pathComponents[pathComponents.count - 2]
  152. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier)) else {
  153. completionHandler(NSFileProviderError(.noSuchItem))
  154. return
  155. }
  156. guard let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND directoryID = %@", account, metadata.directoryID)) else {
  157. completionHandler(NSFileProviderError(.noSuchItem))
  158. return
  159. }
  160. _ = ocNetworking?.downloadFileNameServerUrl("\(directory.serverUrl)/\(metadata.fileName)", fileNameLocalPath: "\(directoryUser)/\(metadata.fileID)", success: { (lenght) in
  161. if (lenght > 0) {
  162. // copy download file to url
  163. try? FileManager.default.removeItem(atPath: url.path)
  164. try? FileManager.default.copyItem(atPath: "\(directoryUser)/\(metadata.fileID)", toPath: url.path)
  165. // create thumbnail
  166. CCGraphics.createNewImage(from: metadata.fileID, directoryUser: directoryUser, fileNameTo: metadata.fileID, extension: (metadata.fileNameView as NSString).pathExtension, size: "m", imageForUpload: false, typeFile: metadata.typeFile, writePreview: true, optimizedFileName: CCUtility.getOptimizedPhoto())
  167. NCManageDatabase.sharedInstance.addLocalFile(metadata: metadata)
  168. if (metadata.typeFile == k_metadataTypeFile_image) {
  169. CCExifGeo.sharedInstance().setExifLocalTableEtag(metadata, directoryUser: directoryUser, activeAccount: account)
  170. }
  171. }
  172. completionHandler(nil)
  173. }, failure: { (message, errorCode) in
  174. completionHandler(NSFileProviderError(.serverUnreachable))
  175. })
  176. } else {
  177. // Exists
  178. completionHandler(nil)
  179. }
  180. } else {
  181. guard let fileData = try? Data(contentsOf: url) else {
  182. completionHandler(nil)
  183. return
  184. }
  185. do {
  186. _ = try fileData.write(to: url, options: NSData.WritingOptions())
  187. completionHandler(nil)
  188. } catch let error as NSError {
  189. print("error writing file to URL")
  190. completionHandler(error)
  191. }
  192. }
  193. }
  194. override func itemChanged(at url: URL) {
  195. if #available(iOSApplicationExtension 11.0, *) {
  196. let fileSize = (try! FileManager.default.attributesOfItem(atPath: url.path)[FileAttributeKey.size] as! NSNumber).uint64Value
  197. NSLog("[LOG] Item changed at URL %@ %lu", url as NSURL, fileSize)
  198. if (fileSize == 0) {
  199. return
  200. }
  201. let fileName = url.lastPathComponent
  202. let pathComponents = url.pathComponents
  203. assert(pathComponents.count > 2)
  204. let identifier = NSFileProviderItemIdentifier(pathComponents[pathComponents.count - 2])
  205. if (uploading.contains(identifier.rawValue) == true) {
  206. return
  207. }
  208. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, identifier.rawValue)) {
  209. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  210. return
  211. }
  212. uploading.append(identifier.rawValue)
  213. _ = ocNetworking?.uploadFileNameServerUrl(serverUrl+"/"+fileName, fileNameLocalPath: url.path, success: { (fileID, etag, date) in
  214. let toPath = "\(directoryUser)/\(metadata.fileID)"
  215. try? FileManager.default.removeItem(atPath: toPath)
  216. try? FileManager.default.copyItem(atPath: url.path, toPath: toPath)
  217. // create thumbnail
  218. CCGraphics.createNewImage(from: metadata.fileID, directoryUser: directoryUser, fileNameTo: metadata.fileID, extension: (metadata.fileNameView as NSString).pathExtension, size: "m", imageForUpload: false, typeFile: metadata.typeFile, writePreview: true, optimizedFileName: CCUtility.getOptimizedPhoto())
  219. metadata.date = date! as NSDate
  220. do {
  221. let attributes = try FileManager.default.attributesOfItem(atPath: url.path)
  222. metadata.size = attributes[FileAttributeKey.size] as! Double
  223. } catch {
  224. }
  225. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  226. return
  227. }
  228. // item
  229. _ = FileProviderItem(metadata: metadataDB, serverUrl: serverUrl)
  230. self.uploading = self.uploading.filter() { $0 != identifier.rawValue }
  231. if let directory = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND serverUrl = %@", account, serverUrl)) {
  232. let itemDirectory = NSFileProviderItemIdentifier(directory.fileID)
  233. NSFileProviderManager.default.signalEnumerator(for: itemDirectory, completionHandler: { (error) in
  234. //
  235. })
  236. }
  237. }, failure: { (message, errorCode) in
  238. self.uploading = self.uploading.filter() { $0 != identifier.rawValue }
  239. })
  240. }
  241. } else {
  242. let fileSize = (try! FileManager.default.attributesOfItem(atPath: url.path)[FileAttributeKey.size] as! NSNumber).uint64Value
  243. NSLog("[LOG] Item changed at URL %@ %lu", url as NSURL, fileSize)
  244. guard let account = NCManageDatabase.sharedInstance.getAccountActive() else {
  245. self.stopProvidingItem(at: url)
  246. return
  247. }
  248. guard let fileName = CCUtility.getFileNameExt() else {
  249. self.stopProvidingItem(at: url)
  250. return
  251. }
  252. // -------> Fix : Clear FileName for twice Office 365
  253. CCUtility.setFileNameExt("")
  254. // --------------------------------------------------
  255. if (fileName != url.lastPathComponent) {
  256. self.stopProvidingItem(at: url)
  257. return
  258. }
  259. guard let serverUrl = CCUtility.getServerUrlExt() else {
  260. self.stopProvidingItem(at: url)
  261. return
  262. }
  263. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(serverUrl) else {
  264. self.stopProvidingItem(at: url)
  265. return
  266. }
  267. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileName == %@ AND directoryID == %@", fileName, directoryID))
  268. if metadata != nil {
  269. // Update
  270. let uploadID = k_uploadSessionID + CCUtility.createRandomString(16)
  271. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  272. let destinationDirectoryUser = "\(directoryUser!)/\(uploadID)"
  273. // copy sourceURL on directoryUser
  274. do {
  275. try FileManager.default.removeItem(atPath: destinationDirectoryUser)
  276. } catch _ {
  277. print("file do not exists")
  278. }
  279. do {
  280. try FileManager.default.copyItem(atPath: url.path, toPath: destinationDirectoryUser)
  281. } catch _ {
  282. print("file do not exists")
  283. self.stopProvidingItem(at: url)
  284. return
  285. }
  286. // Prepare for send Metadata
  287. metadata!.sessionID = uploadID
  288. metadata!.session = k_upload_session
  289. metadata!.sessionTaskIdentifier = Int(k_taskIdentifierWaitStart)
  290. _ = NCManageDatabase.sharedInstance.updateMetadata(metadata!)
  291. } else {
  292. // New
  293. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  294. let destinationDirectoryUser = "\(directoryUser!)/\(fileName)"
  295. do {
  296. try FileManager.default.removeItem(atPath: destinationDirectoryUser)
  297. } catch _ {
  298. print("file do not exists")
  299. }
  300. do {
  301. try FileManager.default.copyItem(atPath: url.path, toPath: destinationDirectoryUser)
  302. } catch _ {
  303. print("file do not exists")
  304. self.stopProvidingItem(at: url)
  305. return
  306. }
  307. CCNetworking.shared().uploadFile(fileName, serverUrl: serverUrl, session: k_upload_session, taskStatus: Int(k_taskStatusResume), selector: nil, selectorPost: nil, errorCode: 0, delegate: self)
  308. }
  309. self.stopProvidingItem(at: url)
  310. }
  311. }
  312. override func stopProvidingItem(at url: URL) {
  313. // 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.
  314. // Care should be taken that the corresponding placeholder file stays behind after the content file has been deleted.
  315. // 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.
  316. // TODO: look up whether the file has local changes
  317. let fileHasLocalChanges = false
  318. if !fileHasLocalChanges {
  319. // remove the existing file to free up space
  320. do {
  321. _ = try FileManager.default.removeItem(at: url)
  322. } catch {
  323. // Handle error
  324. }
  325. // write out a placeholder to facilitate future property lookups
  326. self.providePlaceholder(at: url, completionHandler: { error in
  327. // TODO: handle any error, do any necessary cleanup
  328. })
  329. }
  330. }
  331. // MARK: - Actions
  332. /* TODO: implement the actions for items here
  333. each of the actions follows the same pattern:
  334. - make a note of the change in the local model
  335. - schedule a server request as a background task to inform the server of the change
  336. - call the completion block with the modified item in its post-modification state
  337. */
  338. // MARK: - Enumeration
  339. override func enumerator(for containerItemIdentifier: NSFileProviderItemIdentifier) throws -> NSFileProviderEnumerator {
  340. let maybeEnumerator = FileProviderEnumerator(enumeratedItemIdentifier: containerItemIdentifier)
  341. return maybeEnumerator
  342. }
  343. override func fetchThumbnails(for itemIdentifiers: [NSFileProviderItemIdentifier], requestedSize size: CGSize, perThumbnailCompletionHandler: @escaping (NSFileProviderItemIdentifier, Data?, Error?) -> Void, completionHandler: @escaping (Error?) -> Void) -> Progress {
  344. /* ONLY iOS 11*/
  345. guard #available(iOS 11, *) else {
  346. return Progress(totalUnitCount:0)
  347. }
  348. let progress = Progress(totalUnitCount: Int64(itemIdentifiers.count))
  349. var counterProgress: Int64 = 0
  350. for item in itemIdentifiers {
  351. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, item.rawValue)) {
  352. if (metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video) {
  353. let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID)
  354. let fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: serverUrl, activeUrl: accountUrl)
  355. let fileNameLocal = metadata.fileID
  356. ocNetworking?.downloadThumbnail(withDimOfThumbnail: "m", fileName: fileName, fileNameLocal: fileNameLocal, success: {
  357. do {
  358. let url = URL.init(fileURLWithPath: "\(directoryUser)/\(item.rawValue).ico")
  359. let data = try Data.init(contentsOf: url)
  360. perThumbnailCompletionHandler(item, data, nil)
  361. } catch {
  362. perThumbnailCompletionHandler(item, nil, NSFileProviderError(.noSuchItem))
  363. }
  364. counterProgress += 1
  365. if (counterProgress == progress.totalUnitCount) {
  366. completionHandler(nil)
  367. }
  368. }, failure: { (message, errorCode) in
  369. perThumbnailCompletionHandler(item, nil, NSFileProviderError(.serverUnreachable))
  370. counterProgress += 1
  371. if (counterProgress == progress.totalUnitCount) {
  372. completionHandler(nil)
  373. }
  374. })
  375. } else {
  376. counterProgress += 1
  377. if (counterProgress == progress.totalUnitCount) {
  378. completionHandler(nil)
  379. }
  380. }
  381. } else {
  382. counterProgress += 1
  383. if (counterProgress == progress.totalUnitCount) {
  384. completionHandler(nil)
  385. }
  386. }
  387. }
  388. return progress
  389. }
  390. override func createDirectory(withName directoryName: String, inParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  391. /* ONLY iOS 11*/
  392. guard #available(iOS 11, *) else {
  393. return
  394. }
  395. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)) else {
  396. completionHandler(nil, NSFileProviderError(.noSuchItem))
  397. return
  398. }
  399. ocNetworking?.createFolder(directoryName, serverUrl: directoryParent.serverUrl, account: account, success: { (fileID, date) in
  400. guard let newTableDirectory = NCManageDatabase.sharedInstance.addDirectory(encrypted: false, favorite: false, fileID: fileID, permissions: nil, serverUrl: directoryParent.serverUrl+"/"+directoryName) else {
  401. completionHandler(nil, NSFileProviderError(.noSuchItem))
  402. return
  403. }
  404. let metadata = tableMetadata()
  405. metadata.account = account
  406. metadata.directory = true
  407. metadata.directoryID = newTableDirectory.directoryID
  408. metadata.fileID = fileID!
  409. metadata.fileName = directoryName
  410. metadata.fileNameView = directoryName
  411. metadata.typeFile = k_metadataTypeFile_directory
  412. let item = FileProviderItem(metadata: metadata, serverUrl: directoryParent.serverUrl)
  413. completionHandler(item, nil)
  414. }, failure: { (message, errorCode) in
  415. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  416. })
  417. }
  418. override func importDocument(at fileURL: URL, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  419. /* ONLY iOS 11*/
  420. guard #available(iOS 11, *) else {
  421. return
  422. }
  423. let fileName = fileURL.lastPathComponent
  424. let fileCoordinator = NSFileCoordinator()
  425. var error: NSError?
  426. var directoryPredicate: NSPredicate
  427. if parentItemIdentifier == .rootContainer {
  428. directoryPredicate = NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)
  429. } else {
  430. directoryPredicate = NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)
  431. }
  432. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: directoryPredicate) else {
  433. completionHandler(nil, NSFileProviderError(.noSuchItem))
  434. return
  435. }
  436. if fileURL.startAccessingSecurityScopedResource() == false {
  437. completionHandler(nil, NSFileProviderError(.noSuchItem))
  438. return
  439. }
  440. let fileNameLocalPath = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(fileURL.lastPathComponent)!
  441. fileCoordinator.coordinate(readingItemAt: fileURL, options: NSFileCoordinator.ReadingOptions.withoutChanges, error: &error) { (url) in
  442. do {
  443. try FileManager.default.removeItem(atPath: fileNameLocalPath.path)
  444. } catch _ {
  445. print("file do not exists")
  446. }
  447. do {
  448. try FileManager.default.copyItem(atPath: url.path, toPath: fileNameLocalPath.path)
  449. } catch _ {
  450. print("file do not exists")
  451. }
  452. }
  453. fileURL.stopAccessingSecurityScopedResource()
  454. _ = ocNetworking?.uploadFileNameServerUrl(directoryParent.serverUrl+"/"+fileName, fileNameLocalPath: fileNameLocalPath.path, success: { (fileID, etag, date) in
  455. let metadata = tableMetadata()
  456. metadata.account = account
  457. metadata.date = date! as NSDate
  458. metadata.directory = false
  459. metadata.directoryID = directoryParent.directoryID
  460. metadata.etag = etag!
  461. metadata.fileID = fileID!
  462. metadata.fileName = fileName
  463. metadata.fileNameView = fileName
  464. do {
  465. let attributes = try FileManager.default.attributesOfItem(atPath: fileURL.path)
  466. metadata.size = attributes[FileAttributeKey.size] as! Double
  467. } catch {
  468. }
  469. CCUtility.insertTypeFileIconName(fileName, metadata: metadata)
  470. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  471. completionHandler(nil, NSFileProviderError(.noSuchItem))
  472. return
  473. }
  474. // Copy on ItemIdentifier path
  475. let identifierPathUrl = groupURL!.appendingPathComponent("File Provider Storage").appendingPathComponent(metadata.fileID)
  476. let toPath = "\(identifierPathUrl.path)/\(metadata.fileNameView)"
  477. if !FileManager.default.fileExists(atPath: identifierPathUrl.path) {
  478. do {
  479. try FileManager.default.createDirectory(atPath: identifierPathUrl.path, withIntermediateDirectories: true, attributes: nil)
  480. } catch let error {
  481. print("error creating filepath: \(error)")
  482. }
  483. }
  484. try? FileManager.default.removeItem(atPath: toPath)
  485. try? FileManager.default.copyItem(atPath: fileNameLocalPath.path, toPath: toPath)
  486. // add item
  487. let item = FileProviderItem(metadata: metadataDB, serverUrl: directoryParent.serverUrl)
  488. completionHandler(item, nil)
  489. }, failure: { (message, errorCode) in
  490. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  491. })
  492. }
  493. }