FileProvider.swift 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  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. }, failure: { (message, errorCode) in
  232. self.uploading = self.uploading.filter() { $0 != identifier.rawValue }
  233. })
  234. }
  235. } else {
  236. let fileSize = (try! FileManager.default.attributesOfItem(atPath: url.path)[FileAttributeKey.size] as! NSNumber).uint64Value
  237. NSLog("[LOG] Item changed at URL %@ %lu", url as NSURL, fileSize)
  238. guard let account = NCManageDatabase.sharedInstance.getAccountActive() else {
  239. self.stopProvidingItem(at: url)
  240. return
  241. }
  242. guard let fileName = CCUtility.getFileNameExt() else {
  243. self.stopProvidingItem(at: url)
  244. return
  245. }
  246. // -------> Fix : Clear FileName for twice Office 365
  247. CCUtility.setFileNameExt("")
  248. // --------------------------------------------------
  249. if (fileName != url.lastPathComponent) {
  250. self.stopProvidingItem(at: url)
  251. return
  252. }
  253. guard let serverUrl = CCUtility.getServerUrlExt() else {
  254. self.stopProvidingItem(at: url)
  255. return
  256. }
  257. guard let directoryID = NCManageDatabase.sharedInstance.getDirectoryID(serverUrl) else {
  258. self.stopProvidingItem(at: url)
  259. return
  260. }
  261. let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "fileName == %@ AND directoryID == %@", fileName, directoryID))
  262. if metadata != nil {
  263. // Update
  264. let uploadID = k_uploadSessionID + CCUtility.createRandomString(16)
  265. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  266. let destinationDirectoryUser = "\(directoryUser!)/\(uploadID)"
  267. // copy sourceURL on directoryUser
  268. do {
  269. try FileManager.default.removeItem(atPath: destinationDirectoryUser)
  270. } catch _ {
  271. print("file do not exists")
  272. }
  273. do {
  274. try FileManager.default.copyItem(atPath: url.path, toPath: destinationDirectoryUser)
  275. } catch _ {
  276. print("file do not exists")
  277. self.stopProvidingItem(at: url)
  278. return
  279. }
  280. // Prepare for send Metadata
  281. metadata!.sessionID = uploadID
  282. metadata!.session = k_upload_session
  283. metadata!.sessionTaskIdentifier = Int(k_taskIdentifierWaitStart)
  284. _ = NCManageDatabase.sharedInstance.updateMetadata(metadata!)
  285. } else {
  286. // New
  287. let directoryUser = CCUtility.getDirectoryActiveUser(account.user, activeUrl: account.url)
  288. let destinationDirectoryUser = "\(directoryUser!)/\(fileName)"
  289. do {
  290. try FileManager.default.removeItem(atPath: destinationDirectoryUser)
  291. } catch _ {
  292. print("file do not exists")
  293. }
  294. do {
  295. try FileManager.default.copyItem(atPath: url.path, toPath: destinationDirectoryUser)
  296. } catch _ {
  297. print("file do not exists")
  298. self.stopProvidingItem(at: url)
  299. return
  300. }
  301. CCNetworking.shared().uploadFile(fileName, serverUrl: serverUrl, session: k_upload_session, taskStatus: Int(k_taskStatusResume), selector: nil, selectorPost: nil, errorCode: 0, delegate: self)
  302. }
  303. self.stopProvidingItem(at: url)
  304. }
  305. }
  306. override func stopProvidingItem(at url: URL) {
  307. // 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.
  308. // Care should be taken that the corresponding placeholder file stays behind after the content file has been deleted.
  309. // 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.
  310. // TODO: look up whether the file has local changes
  311. let fileHasLocalChanges = false
  312. if !fileHasLocalChanges {
  313. // remove the existing file to free up space
  314. do {
  315. _ = try FileManager.default.removeItem(at: url)
  316. } catch {
  317. // Handle error
  318. }
  319. // write out a placeholder to facilitate future property lookups
  320. self.providePlaceholder(at: url, completionHandler: { error in
  321. // TODO: handle any error, do any necessary cleanup
  322. })
  323. }
  324. }
  325. // MARK: - Actions
  326. /* TODO: implement the actions for items here
  327. each of the actions follows the same pattern:
  328. - make a note of the change in the local model
  329. - schedule a server request as a background task to inform the server of the change
  330. - call the completion block with the modified item in its post-modification state
  331. */
  332. // MARK: - Enumeration
  333. override func enumerator(for containerItemIdentifier: NSFileProviderItemIdentifier) throws -> NSFileProviderEnumerator {
  334. let maybeEnumerator = FileProviderEnumerator(enumeratedItemIdentifier: containerItemIdentifier)
  335. return maybeEnumerator
  336. }
  337. override func fetchThumbnails(for itemIdentifiers: [NSFileProviderItemIdentifier], requestedSize size: CGSize, perThumbnailCompletionHandler: @escaping (NSFileProviderItemIdentifier, Data?, Error?) -> Void, completionHandler: @escaping (Error?) -> Void) -> Progress {
  338. /* ONLY iOS 11*/
  339. guard #available(iOS 11, *) else {
  340. return Progress(totalUnitCount:0)
  341. }
  342. let progress = Progress(totalUnitCount: Int64(itemIdentifiers.count))
  343. var counterProgress: Int64 = 0
  344. for item in itemIdentifiers {
  345. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, item.rawValue)) {
  346. if (metadata.typeFile == k_metadataTypeFile_image || metadata.typeFile == k_metadataTypeFile_video) {
  347. let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID)
  348. let fileName = CCUtility.returnFileNamePath(fromFileName: metadata.fileName, serverUrl: serverUrl, activeUrl: accountUrl)
  349. let fileNameLocal = metadata.fileID
  350. ocNetworking?.downloadThumbnail(withDimOfThumbnail: "m", fileName: fileName, fileNameLocal: fileNameLocal, success: {
  351. do {
  352. let url = URL.init(fileURLWithPath: "\(directoryUser)/\(item.rawValue).ico")
  353. let data = try Data.init(contentsOf: url)
  354. perThumbnailCompletionHandler(item, data, nil)
  355. } catch {
  356. perThumbnailCompletionHandler(item, nil, NSFileProviderError(.noSuchItem))
  357. }
  358. counterProgress += 1
  359. if (counterProgress == progress.totalUnitCount) {
  360. completionHandler(nil)
  361. }
  362. }, failure: { (message, errorCode) in
  363. perThumbnailCompletionHandler(item, nil, NSFileProviderError(.serverUnreachable))
  364. counterProgress += 1
  365. if (counterProgress == progress.totalUnitCount) {
  366. completionHandler(nil)
  367. }
  368. })
  369. } else {
  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. }
  382. return progress
  383. }
  384. override func createDirectory(withName directoryName: String, inParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  385. /* ONLY iOS 11*/
  386. guard #available(iOS 11, *) else {
  387. return
  388. }
  389. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)) else {
  390. completionHandler(nil, NSFileProviderError(.noSuchItem))
  391. return
  392. }
  393. ocNetworking?.createFolder(directoryName, serverUrl: directoryParent.serverUrl, account: account, success: { (fileID, date) in
  394. guard let newTableDirectory = NCManageDatabase.sharedInstance.addDirectory(encrypted: false, favorite: false, fileID: fileID, permissions: nil, serverUrl: directoryParent.serverUrl+"/"+directoryName) else {
  395. completionHandler(nil, NSFileProviderError(.noSuchItem))
  396. return
  397. }
  398. let metadata = tableMetadata()
  399. metadata.account = account
  400. metadata.directory = true
  401. metadata.directoryID = newTableDirectory.directoryID
  402. metadata.fileID = fileID!
  403. metadata.fileName = directoryName
  404. metadata.fileNameView = directoryName
  405. metadata.typeFile = k_metadataTypeFile_directory
  406. let item = FileProviderItem(metadata: metadata, serverUrl: directoryParent.serverUrl)
  407. completionHandler(item, nil)
  408. }, failure: { (message, errorCode) in
  409. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  410. })
  411. }
  412. override func importDocument(at fileURL: URL, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  413. /* ONLY iOS 11*/
  414. guard #available(iOS 11, *) else {
  415. return
  416. }
  417. let fileName = fileURL.lastPathComponent
  418. let fileCoordinator = NSFileCoordinator()
  419. var error: NSError?
  420. var directoryPredicate: NSPredicate
  421. if parentItemIdentifier == .rootContainer {
  422. directoryPredicate = NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)
  423. } else {
  424. directoryPredicate = NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)
  425. }
  426. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: directoryPredicate) else {
  427. completionHandler(nil, NSFileProviderError(.noSuchItem))
  428. return
  429. }
  430. if fileURL.startAccessingSecurityScopedResource() == false {
  431. completionHandler(nil, NSFileProviderError(.noSuchItem))
  432. return
  433. }
  434. let fileNameLocalPath = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(fileURL.lastPathComponent)!
  435. fileCoordinator.coordinate(readingItemAt: fileURL, options: NSFileCoordinator.ReadingOptions.withoutChanges, error: &error) { (url) in
  436. do {
  437. try FileManager.default.removeItem(atPath: fileNameLocalPath.path)
  438. } catch _ {
  439. print("file do not exists")
  440. }
  441. do {
  442. try FileManager.default.copyItem(atPath: url.path, toPath: fileNameLocalPath.path)
  443. } catch _ {
  444. print("file do not exists")
  445. }
  446. }
  447. fileURL.stopAccessingSecurityScopedResource()
  448. _ = ocNetworking?.uploadFileNameServerUrl(directoryParent.serverUrl+"/"+fileName, fileNameLocalPath: fileNameLocalPath.path, success: { (fileID, etag, date) in
  449. let metadata = tableMetadata()
  450. metadata.account = account
  451. metadata.date = date! as NSDate
  452. metadata.directory = false
  453. metadata.directoryID = directoryParent.directoryID
  454. metadata.etag = etag!
  455. metadata.fileID = fileID!
  456. metadata.fileName = fileName
  457. metadata.fileNameView = fileName
  458. do {
  459. let attributes = try FileManager.default.attributesOfItem(atPath: fileURL.path)
  460. metadata.size = attributes[FileAttributeKey.size] as! Double
  461. } catch {
  462. }
  463. CCUtility.insertTypeFileIconName(fileName, metadata: metadata)
  464. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  465. completionHandler(nil, NSFileProviderError(.noSuchItem))
  466. return
  467. }
  468. // Copy on ItemIdentifier path
  469. let identifierPathUrl = groupURL!.appendingPathComponent("File Provider Storage").appendingPathComponent(metadata.fileID)
  470. let toPath = "\(identifierPathUrl.path)/\(metadata.fileNameView)"
  471. if !FileManager.default.fileExists(atPath: identifierPathUrl.path) {
  472. do {
  473. try FileManager.default.createDirectory(atPath: identifierPathUrl.path, withIntermediateDirectories: true, attributes: nil)
  474. } catch let error {
  475. print("error creating filepath: \(error)")
  476. }
  477. }
  478. try? FileManager.default.removeItem(atPath: toPath)
  479. try? FileManager.default.copyItem(atPath: fileNameLocalPath.path, toPath: toPath)
  480. // add item
  481. let item = FileProviderItem(metadata: metadataDB, serverUrl: directoryParent.serverUrl)
  482. completionHandler(item, nil)
  483. }, failure: { (message, errorCode) in
  484. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  485. })
  486. }
  487. }