FileProvider.swift 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  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. // resolve the given identifier to a file on disk
  553. guard let item = try? item(for: itemIdentifier) else {
  554. completionHandler(nil, NSFileProviderError(.noSuchItem))
  555. return
  556. }
  557. let fileName = serverUrl + "/" + item.filename
  558. let fileNameTo = serverUrl + "/" + itemName
  559. ocNetworking?.moveFileOrFolder(fileName, fileNameTo: fileNameTo, success: {
  560. metadata.fileName = itemName
  561. metadata.fileNameView = itemName
  562. guard let metadata = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  563. completionHandler(nil, NSFileProviderError(.noSuchItem))
  564. return
  565. }
  566. if metadata.directory {
  567. NCManageDatabase.sharedInstance.setDirectory(serverUrl: fileName, serverUrlTo: fileNameTo, etag: nil, fileID: nil, encrypted: directoryTable.e2eEncrypted)
  568. } else {
  569. do {
  570. try fileManagerExtension.moveItem(atPath: fileProviderStorageURL!.path + "/" + metadata.fileID + "/" + item.filename, toPath: fileProviderStorageURL!.path + "/" + metadata.fileID + "/" + itemName)
  571. NCManageDatabase.sharedInstance.setLocalFile(fileID: metadata.fileID, date: nil, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: itemName, etag: nil, etagFPE: nil)
  572. } catch { }
  573. }
  574. completionHandler(item, nil)
  575. }, failure: { (errorMessage, errorCode) in
  576. completionHandler(nil, NSFileProviderError(.serverUnreachable))
  577. })
  578. }
  579. override func setFavoriteRank(_ favoriteRank: NSNumber?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  580. /* ONLY iOS 11*/
  581. guard #available(iOS 11, *) else {
  582. return
  583. }
  584. completionHandler(nil, nil)
  585. /*
  586. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  587. completionHandler(nil, NSFileProviderError(.noSuchItem))
  588. return
  589. }
  590. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  591. completionHandler(nil, NSFileProviderError(.noSuchItem))
  592. return
  593. }
  594. // Refresh Favorite Identifier Rank
  595. listFavoriteIdentifierRank = NCManageDatabase.sharedInstance.getTableMetadatasDirectoryFavoriteIdentifierRank()
  596. if favoriteRank == nil {
  597. listFavoriteIdentifierRank.removeValue(forKey: itemIdentifier.rawValue)
  598. } else {
  599. let rank = listFavoriteIdentifierRank[itemIdentifier.rawValue]
  600. if rank == nil {
  601. listFavoriteIdentifierRank[itemIdentifier.rawValue] = favoriteRank//NSNumber(value: Int64(newRank))
  602. }
  603. favorite = true
  604. }
  605. // Call the completion handler before performing any network activity or other long-running tasks. Defer these tasks to the background
  606. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  607. completionHandler(item, nil)
  608. // Change Status ? Call API Nextcloud Network
  609. if (favorite == true && metadata.favorite == false) || (favorite == false && metadata.favorite == true) {
  610. DispatchQueue(label: "com.nextcloud", qos: .background, attributes: .concurrent, autoreleaseFrequency: .inherit, target: nil).async {
  611. ocNetworking?.settingFavorite(metadata.fileName, serverUrl: serverUrl, favorite: favorite, success: {
  612. // Change DB
  613. metadata.favorite = favorite
  614. _ = NCManageDatabase.sharedInstance.addMetadata(metadata)
  615. // Refresh Favorite Identifier Rank
  616. listFavoriteIdentifierRank = NCManageDatabase.sharedInstance.getTableMetadatasDirectoryFavoriteIdentifierRank()
  617. // Refresh Item
  618. self.refreshEnumerator(identifier: itemIdentifier, serverUrl: serverUrl)
  619. }, failure: { (errorMessage, errorCode) in
  620. print("errorMessage")
  621. })
  622. }
  623. }
  624. */
  625. }
  626. override func setLastUsedDate(_ lastUsedDate: Date?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  627. print("[LOG] setLastUsedDate")
  628. completionHandler(nil, nil)
  629. }
  630. override func setTagData(_ tagData: Data?, forItemIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  631. /* ONLY iOS 11*/
  632. guard #available(iOS 11, *) else {
  633. return
  634. }
  635. // Add, Remove (nil)
  636. NCManageDatabase.sharedInstance.addTag(itemIdentifier.rawValue, tagIOS: tagData)
  637. guard let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, itemIdentifier.rawValue)) else {
  638. completionHandler(nil, NSFileProviderError(.noSuchItem))
  639. return
  640. }
  641. guard let serverUrl = NCManageDatabase.sharedInstance.getServerUrl(metadata.directoryID) else {
  642. completionHandler(nil, NSFileProviderError(.noSuchItem))
  643. return
  644. }
  645. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  646. self.refreshEnumerator(identifier: itemIdentifier, serverUrl: "WorkingSet")
  647. completionHandler(item, nil)
  648. }
  649. /*
  650. override func trashItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  651. print("[LOG] trashitem")
  652. completionHandler(nil, nil)
  653. }
  654. override func untrashItem(withIdentifier itemIdentifier: NSFileProviderItemIdentifier, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier?, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  655. print("[LOG] untrashitem")
  656. completionHandler(nil, nil)
  657. }
  658. */
  659. override func importDocument(at fileURL: URL, toParentItemIdentifier parentItemIdentifier: NSFileProviderItemIdentifier, completionHandler: @escaping (NSFileProviderItem?, Error?) -> Void) {
  660. /* ONLY iOS 11*/
  661. guard #available(iOS 11, *) else {
  662. return
  663. }
  664. let fileCoordinator = NSFileCoordinator()
  665. var error: NSError?
  666. var directoryPredicate: NSPredicate
  667. var size = 0 as Double
  668. let metadata = tableMetadata()
  669. if parentItemIdentifier == .rootContainer {
  670. directoryPredicate = NSPredicate(format: "account = %@ AND serverUrl = %@", account, homeServerUrl)
  671. } else {
  672. directoryPredicate = NSPredicate(format: "account = %@ AND fileID = %@", account, parentItemIdentifier.rawValue)
  673. }
  674. guard let directoryParent = NCManageDatabase.sharedInstance.getTableDirectory(predicate: directoryPredicate) else {
  675. completionHandler(nil, NSFileProviderError(.noSuchItem))
  676. return
  677. }
  678. let serverUrl = directoryParent.serverUrl
  679. // --------------------------------------------- Copy file here with security access
  680. if fileURL.startAccessingSecurityScopedResource() == false {
  681. completionHandler(nil, NSFileProviderError(.noSuchItem))
  682. return
  683. }
  684. let fileName = createFileName(fileURL.lastPathComponent, directoryID: directoryParent.directoryID, serverUrl: serverUrl)
  685. fileCoordinator.coordinate(readingItemAt: fileURL, options: NSFileCoordinator.ReadingOptions.withoutChanges, error: &error) { (url) in
  686. _ = self.copyFile(url.path, toPath: fileProviderStorageURL!.path + "/" + fileName)
  687. // _ = self.copyFile(url.path, toPath: fileProviderStorageURL!.path + "/" + fileURL.lastPathComponent)
  688. }
  689. fileURL.stopAccessingSecurityScopedResource()
  690. // ---------------------------------------------------------------------------------
  691. do {
  692. let attributes = try fileManagerExtension.attributesOfItem(atPath: fileProviderStorageURL!.path + "/" + fileName)
  693. size = attributes[FileAttributeKey.size] as! Double
  694. } catch let error {
  695. print("error: \(error)")
  696. }
  697. // Metadata TEMP
  698. metadata.account = account
  699. metadata.date = NSDate()
  700. metadata.directory = false
  701. metadata.directoryID = directoryParent.directoryID
  702. metadata.etag = ""
  703. metadata.fileID = FILEID_IMPORT_METADATA_TEMP
  704. metadata.size = size
  705. metadata.status = Double(k_metadataStatusHide)
  706. metadata.fileName = fileURL.lastPathComponent
  707. metadata.fileNameView = fileURL.lastPathComponent
  708. CCUtility.insertTypeFileIconName(fileName, metadata: metadata)
  709. if (size > 0) {
  710. let metadataNet = CCMetadataNet()
  711. metadataNet.account = account
  712. metadataNet.assetLocalIdentifier = k_assetLocalIdentifierFileProviderStorage + k_uploadSessionID + directoryParent.directoryID + fileName
  713. metadataNet.fileName = fileName
  714. metadataNet.path = fileProviderStorageURL!.path + "/" + fileName
  715. metadataNet.selector = selectorUploadFile
  716. metadataNet.selectorPost = ""
  717. metadataNet.serverUrl = serverUrl
  718. metadataNet.session = k_upload_session_extension
  719. metadataNet.taskStatus = Int(k_taskStatusResume)
  720. _ = NCManageDatabase.sharedInstance.addQueueUpload(metadataNet: metadataNet)
  721. } else {
  722. // OFFICE 365 LEN = 0
  723. }
  724. guard let metadataDB = NCManageDatabase.sharedInstance.addMetadata(metadata) else {
  725. completionHandler(nil, NSFileProviderError(.noSuchItem))
  726. return
  727. }
  728. let item = FileProviderItem(metadata: metadataDB, serverUrl: serverUrl)
  729. completionHandler(item, nil)
  730. }
  731. // --------------------------------------------------------------------------------------------
  732. // MARK: - Upload
  733. // --------------------------------------------------------------------------------------------
  734. func uploadFileSuccessFailure(_ fileName: String!, fileID: String!, assetLocalIdentifier: String!, serverUrl: String!, selector: String!, selectorPost: String!, errorMessage: String!, errorCode: Int) {
  735. NCManageDatabase.sharedInstance.deleteQueueUpload(assetLocalIdentifier: assetLocalIdentifier, selector: selector)
  736. if let metadata = NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileID = %@", account, fileID)) {
  737. if (errorCode == 0) {
  738. let sourcePath = fileProviderStorageURL!.path + "/" + fileName
  739. let destinationPath = fileProviderStorageURL!.path + "/" + fileID + "/" + fileName
  740. NCManageDatabase.sharedInstance.setLocalFile(fileID: fileID, date: nil, exifDate: nil, exifLatitude: nil, exifLongitude: nil, fileName: nil, etag: metadata.etag, etagFPE: metadata.etag)
  741. do {
  742. try fileManagerExtension.createDirectory(atPath: fileProviderStorageURL!.path + "/" + fileID, withIntermediateDirectories: true, attributes: nil)
  743. } catch { }
  744. _ = copyFile(sourcePath, toPath: destinationPath)
  745. let item = FileProviderItem(metadata: metadata, serverUrl: serverUrl)
  746. self.refreshEnumerator(identifier: item.itemIdentifier, serverUrl: serverUrl)
  747. }
  748. }
  749. uploadFile()
  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 deleteFile(_ atPath: String) -> Error? {
  826. var errorResult: Error?
  827. do {
  828. try fileManagerExtension.removeItem(atPath: atPath)
  829. } catch let error {
  830. errorResult = error
  831. }
  832. return errorResult
  833. }
  834. func createFileName(_ fileName: String, directoryID: String, serverUrl: String) -> String {
  835. let serialQueue = DispatchQueue(label: "myqueue")
  836. var resultFileName = fileName
  837. serialQueue.sync {
  838. var exitLoop = false
  839. while exitLoop == false {
  840. if NCManageDatabase.sharedInstance.getMetadata(predicate: NSPredicate(format: "account = %@ AND fileNameView = %@ AND directoryID = %@", account, resultFileName, directoryID)) != nil || fileNamePathImport.contains(serverUrl+"/"+resultFileName) {
  841. var name = NSString(string: resultFileName).deletingPathExtension
  842. let ext = NSString(string: resultFileName).pathExtension
  843. let characters = Array(name)
  844. if characters.count < 2 {
  845. resultFileName = name + " " + "1" + "." + ext
  846. } else {
  847. let space = characters[characters.count-2]
  848. let numChar = characters[characters.count-1]
  849. var num = Int(String(numChar))
  850. if (space == " " && num != nil) {
  851. name = String(name.dropLast())
  852. num = num! + 1
  853. resultFileName = name + "\(num!)" + "." + ext
  854. } else {
  855. resultFileName = name + " " + "1" + "." + ext
  856. }
  857. }
  858. } else {
  859. exitLoop = true
  860. }
  861. }
  862. // add fileNamePathImport
  863. fileNamePathImport.append(serverUrl+"/"+resultFileName)
  864. }
  865. return resultFileName
  866. }
  867. }
  868. // --------------------------------------------------------------------------------------------
  869. // MARK: - Setup Active Accont
  870. // --------------------------------------------------------------------------------------------
  871. func setupActiveAccount() {
  872. guard let activeAccount = NCManageDatabase.sharedInstance.getAccountActive() else {
  873. return
  874. }
  875. account = activeAccount.account
  876. accountUser = activeAccount.user
  877. accountUserID = activeAccount.userID
  878. accountPassword = activeAccount.password
  879. accountUrl = activeAccount.url
  880. homeServerUrl = CCUtility.getHomeServerUrlActiveUrl(activeAccount.url)
  881. directoryUser = CCUtility.getDirectoryActiveUser(activeAccount.user, activeUrl: activeAccount.url)
  882. ocNetworking = OCnetworking.init(delegate: nil, metadataNet: nil, withUser: accountUser, withUserID: accountUserID, withPassword: accountPassword, withUrl: accountUrl)
  883. groupURL = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.sharedInstance.capabilitiesGroups)
  884. fileProviderStorageURL = groupURL!.appendingPathComponent(k_assetLocalIdentifierFileProviderStorage)
  885. // Create dir File Provider Storage
  886. do {
  887. try FileManager.default.createDirectory(atPath: fileProviderStorageURL!.path, withIntermediateDirectories: true, attributes: nil)
  888. } catch let error as NSError {
  889. NSLog("Unable to create directory \(error.debugDescription)")
  890. }
  891. }