123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 |
- //
- // NCUtilityFileSystem.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 28/05/2020.
- // Copyright © 2020 Marino Faggiana. All rights reserved.
- //
- // Author Marino Faggiana <marino.faggiana@nextcloud.com>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- import PhotosUI
- class NCUtilityFileSystem: NSObject {
- @objc static let shared: NCUtilityFileSystem = {
- let instance = NCUtilityFileSystem()
- return instance
- }()
- let fileManager = FileManager.default
- // MARK: -
- var directoryGroup: String {
- return fileManager.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroups)?.path ?? ""
- }
- var directoryDocuments: String {
- return NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first ?? ""
- }
- var directoryCertificates: String {
- if let directoryGroup = fileManager.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroups) {
- let path = directoryGroup.appendingPathComponent(NCGlobal.shared.appCertificates).path
- if !fileManager.fileExists(atPath: path) {
- do {
- try fileManager.createDirectory(atPath: path, withIntermediateDirectories: true)
- } catch {
- return ""
- }
- }
- return path
- }
- return ""
- }
- var directoryUserData: String {
- if let directoryGroup = fileManager.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroups) {
- let path = directoryGroup.appendingPathComponent(NCGlobal.shared.appUserData).path
- if !fileManager.fileExists(atPath: path) {
- do {
- try fileManager.createDirectory(atPath: path, withIntermediateDirectories: true)
- } catch {
- return ""
- }
- }
- return path
- }
- return ""
- }
- @objc var directoryProviderStorage: String {
- if let directoryGroup = fileManager.containerURL(forSecurityApplicationGroupIdentifier: NCBrandOptions.shared.capabilitiesGroups) {
- let path = directoryGroup.appendingPathComponent(NCGlobal.shared.directoryProviderStorage).path
- if !fileManager.fileExists(atPath: path) {
- do {
- try fileManager.createDirectory(atPath: path, withIntermediateDirectories: true)
- } catch {
- return ""
- }
- }
- return path
- }
- return ""
- }
- @objc func getDirectoryProviderStorageOcId(_ ocId: String) -> String {
- let path = directoryProviderStorage + "/" + ocId
- if !fileManager.fileExists(atPath: path) {
- do {
- try fileManager.createDirectory(atPath: path, withIntermediateDirectories: true)
- } catch {
- return ""
- }
- }
- return path
- }
- @objc func getDirectoryProviderStorageOcId(_ ocId: String, fileNameView: String) -> String {
- let path = directoryProviderStorage + "/" + ocId + "/" + fileNameView
- if !fileManager.fileExists(atPath: path) {
- do {
- try fileManager.createDirectory(atPath: path, withIntermediateDirectories: true)
- } catch {
- return ""
- }
- }
- return path
- }
- func getDirectoryProviderStorageIconOcId(_ ocId: String, etag: String) -> String {
- return directoryProviderStorage + "/" + ocId + "/" + etag + ".small." + NCGlobal.shared.extensionPreview
- }
- func getDirectoryProviderStoragePreviewOcId(_ ocId: String, etag: String) -> String {
- return directoryProviderStorage + "/" + ocId + "/" + etag + ".preview." + NCGlobal.shared.extensionPreview
- }
- func fileProviderStorageExists(_ metadata: tableMetadata) -> Bool {
- let fileNamePath = getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileName)
- let fileNameViewPath = getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView)
- do {
- let fileNameAttribute = try fileManager.attributesOfItem(atPath: fileNamePath)
- let fileNameSize: UInt64 = fileNameAttribute[FileAttributeKey.size] as? UInt64 ?? 0
- let fileNameViewAttribute = try fileManager.attributesOfItem(atPath: fileNameViewPath)
- let fileNameViewSize: UInt64 = fileNameViewAttribute[FileAttributeKey.size] as? UInt64 ?? 0
- if metadata.isDirectoryE2EE == true {
- if (fileNameSize == metadata.size || fileNameViewSize == metadata.size) && fileNameViewSize > 0 {
- return true
- } else {
- return false
- }
- } else {
- return fileNameViewSize == metadata.size
- }
- } catch { print("Error: \(error)") }
- return false
- }
- func fileProviderStorageSize(_ ocId: String, fileNameView: String) -> UInt64 {
- let fileNamePath = getDirectoryProviderStorageOcId(ocId, fileNameView: fileNameView)
- do {
- let fileNameAttribute = try fileManager.attributesOfItem(atPath: fileNamePath)
- let fileNameSize: UInt64 = fileNameAttribute[FileAttributeKey.size] as? UInt64 ?? 0
- return fileNameSize
- } catch { print("Error: \(error)") }
- return 0
- }
- func fileProviderStoragePreviewIconExists(_ ocId: String, etag: String) -> Bool {
- let fileNamePathPreview = getDirectoryProviderStoragePreviewOcId(ocId, etag: etag)
- let fileNamePathIcon = getDirectoryProviderStorageIconOcId(ocId, etag: etag)
- do {
- let fileNamePathPreviewAttribute = try fileManager.attributesOfItem(atPath: fileNamePathPreview)
- let fileSizePreview: UInt64 = fileNamePathPreviewAttribute[FileAttributeKey.size] as? UInt64 ?? 0
- let fileNamePathIconAttribute = try fileManager.attributesOfItem(atPath: fileNamePathIcon)
- let fileSizeIcon: UInt64 = fileNamePathIconAttribute[FileAttributeKey.size] as? UInt64 ?? 0
- if fileSizePreview > 0 && fileSizeIcon > 0 {
- return true
- } else {
- return false
- }
- } catch { print("Error: \(error)") }
- return false
- }
- // MARK: -
- @objc func getFileSize(filePath: String) -> Int64 {
- do {
- let attributes = try fileManager.attributesOfItem(atPath: filePath)
- return attributes[FileAttributeKey.size] as? Int64 ?? 0
- } catch {
- print(error)
- }
- return 0
- }
- @objc func getFileModificationDate(filePath: String) -> NSDate? {
- do {
- let attributes = try fileManager.attributesOfItem(atPath: filePath)
- return attributes[FileAttributeKey.modificationDate] as? NSDate
- } catch {
- print(error)
- }
- return nil
- }
- @objc func getFileCreationDate(filePath: String) -> NSDate? {
- do {
- let attributes = try fileManager.attributesOfItem(atPath: filePath)
- return attributes[FileAttributeKey.creationDate] as? NSDate
- } catch {
- print(error)
- }
- return nil
- }
- @objc func writeFile(fileURL: URL, text: String) -> Bool {
- do {
- try FileManager.default.removeItem(at: fileURL)
- } catch {
- print(error)
- }
- do {
- try text.write(to: fileURL, atomically: true, encoding: .utf8)
- return true
- } catch {
- print(error)
- return false
- }
- }
- @objc func deleteFile(filePath: String) {
- do {
- try FileManager.default.removeItem(atPath: filePath)
- } catch {
- print(error)
- }
- }
- @discardableResult
- @objc func moveFile(atPath: String, toPath: String) -> Bool {
- if atPath == toPath { return true }
- do {
- try FileManager.default.removeItem(atPath: toPath)
- } catch {
- print(error)
- }
- do {
- try FileManager.default.copyItem(atPath: atPath, toPath: toPath)
- try FileManager.default.removeItem(atPath: atPath)
- return true
- } catch {
- print(error)
- return false
- }
- }
- @discardableResult
- @objc func copyFile(atPath: String, toPath: String) -> Bool {
- if atPath == toPath { return true }
- do {
- try FileManager.default.removeItem(atPath: toPath)
- } catch {
- print(error)
- }
- do {
- try FileManager.default.copyItem(atPath: atPath, toPath: toPath)
- return true
- } catch {
- print(error)
- return false
- }
- }
- @objc func moveFileInBackground(atPath: String, toPath: String) {
- if atPath == toPath { return }
- DispatchQueue.global().async {
- try? FileManager.default.removeItem(atPath: toPath)
- try? FileManager.default.copyItem(atPath: atPath, toPath: toPath)
- try? FileManager.default.removeItem(atPath: atPath)
- }
- }
- @objc func linkItem(atPath: String, toPath: String) {
- try? FileManager.default.removeItem(atPath: toPath)
- try? FileManager.default.linkItem(atPath: atPath, toPath: toPath)
- }
- // MARK: -
- @objc func getHomeServer(urlBase: String, userId: String) -> String {
- return urlBase + "/remote.php/dav/files/" + userId
- }
- @objc func getPath(path: String, user: String, fileName: String? = nil) -> String {
- var path = path.replacingOccurrences(of: "/remote.php/dav/files/" + user, with: "")
- if let fileName = fileName {
- path += fileName
- }
- return path
- }
- @objc func deleteLastPath(serverUrlPath: String, home: String? = nil) -> String? {
- var returnString: String?
- if home == serverUrlPath {
- return serverUrlPath
- }
- if let serverUrlPath = serverUrlPath.urlEncoded, let url = URL(string: serverUrlPath) {
- if let path = url.deletingLastPathComponent().absoluteString.removingPercentEncoding {
- if path.last == "/" {
- returnString = String(path.dropLast())
- } else {
- returnString = path
- }
- }
- }
- return returnString
- }
- @objc func createFileName(_ fileName: String, serverUrl: String, account: String) -> String {
- var resultFileName = fileName
- var exitLoop = false
- while exitLoop == false {
- if NCManageDatabase.shared.getMetadata(predicate: NSPredicate(format: "fileNameView == %@ AND serverUrl == %@ AND account == %@", resultFileName, serverUrl, account)) != nil {
- var name = NSString(string: resultFileName).deletingPathExtension
- let ext = NSString(string: resultFileName).pathExtension
- let characters = Array(name)
- if characters.count < 2 {
- if ext.isEmpty {
- resultFileName = name + " " + "1"
- } else {
- resultFileName = name + " " + "1" + "." + ext
- }
- } else {
- let space = characters[characters.count - 2]
- let numChar = characters[characters.count - 1]
- var num = Int(String(numChar))
- if space == " " && num != nil {
- name = String(name.dropLast())
- num = num! + 1
- if ext.isEmpty {
- resultFileName = name + "\(num!)"
- } else {
- resultFileName = name + "\(num!)" + "." + ext
- }
- } else {
- if ext.isEmpty {
- resultFileName = name + " " + "1"
- } else {
- resultFileName = name + " " + "1" + "." + ext
- }
- }
- }
- } else {
- exitLoop = true
- }
- }
- return resultFileName
- }
- @objc func getDirectorySize(directory: String) -> Int64 {
- let url = URL(fileURLWithPath: directory)
- let manager = FileManager.default
- var totalSize: Int64 = 0
- if let enumerator = manager.enumerator(at: url, includingPropertiesForKeys: [.isRegularFileKey], options: []) {
- for case let fileURL as URL in enumerator {
- if let attributes = try? manager.attributesOfItem(atPath: fileURL.path) {
- if let size = attributes[.size] as? Int64 {
- totalSize += size
- }
- }
- }
- }
- return totalSize
- }
- func cleanUp(directory: String, days: TimeInterval) {
- if days == 0 { return}
- let minimumDate = Date().addingTimeInterval(-days * 24 * 60 * 60)
- let url = URL(fileURLWithPath: directory)
- var offlineDir: [String] = []
- var offlineFiles: [String] = []
- if let directories = NCManageDatabase.shared.getTablesDirectory(predicate: NSPredicate(format: "offline == true"), sorted: "serverUrl", ascending: true) {
- for directory: tableDirectory in directories {
- offlineDir.append(NCUtilityFileSystem.shared.getDirectoryProviderStorageOcId(directory.ocId))
- }
- }
- let files = NCManageDatabase.shared.getTableLocalFiles(predicate: NSPredicate(format: "offline == true"), sorted: "fileName", ascending: true)
- for file: tableLocalFile in files {
- offlineFiles.append(NCUtilityFileSystem.shared.getDirectoryProviderStorageOcId(file.ocId, fileNameView: file.fileName))
- }
- func meetsRequirement(date: Date) -> Bool {
- return date < minimumDate
- }
- let manager = FileManager.default
- if let enumerator = manager.enumerator(at: url, includingPropertiesForKeys: [.isRegularFileKey], options: []) {
- for case let fileURL as URL in enumerator {
- if let attributes = try? manager.attributesOfItem(atPath: fileURL.path) {
- if let date = CCUtility.getATime(fileURL.path) {
- if attributes[.size] as? Double == 0 { continue }
- if attributes[.type] as? FileAttributeType == FileAttributeType.typeDirectory { continue }
- if fileURL.pathExtension == NCGlobal.shared.extensionPreview { continue }
- // check offline
- if offlineFiles.contains(fileURL.path) { continue }
- let filter = offlineDir.filter({ fileURL.path.hasPrefix($0)})
- if !filter.isEmpty { continue }
- // check date
- if meetsRequirement(date: date) {
- let folderURL = fileURL.deletingLastPathComponent()
- let ocId = folderURL.lastPathComponent
- do {
- try manager.removeItem(atPath: fileURL.path)
- } catch { }
- manager.createFile(atPath: fileURL.path, contents: nil, attributes: nil)
- NCManageDatabase.shared.deleteLocalFile(predicate: NSPredicate(format: "ocId == %@", ocId))
- }
- }
- }
- }
- }
- }
- }
|