123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- //
- // FileProviderItem.swift
- // Files
- //
- // Created by Marino Faggiana on 26/03/18.
- // Copyright © 2018 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 FileProvider
- class FileProviderItem: NSObject, NSFileProviderItem {
- // Providing Required Properties
- var itemIdentifier: NSFileProviderItemIdentifier // The item's persistent identifier
- var filename: String = "" // The item's filename
- var typeIdentifier: String = "" // The item's uniform type identifiers
- var capabilities: NSFileProviderItemCapabilities { // The item's capabilities
-
- if (self.isDirectory) {
- return [ .allowsAddingSubItems, .allowsContentEnumerating, .allowsReading, .allowsDeleting, .allowsRenaming ]
- } else {
- if isUpload {
- return [ ]
- } else {
- return [ .allowsWriting, .allowsReading, .allowsDeleting, .allowsRenaming, .allowsReparenting ]
- }
- }
- }
-
- // Managing Content
- var childItemCount: NSNumber? // The number of items contained by this item
- var documentSize: NSNumber? // The document's size, in bytes
- // Specifying Content Location
- var parentItemIdentifier: NSFileProviderItemIdentifier // The persistent identifier of the item's parent folder
- var isTrashed: Bool = false // A Boolean value that indicates whether an item is in the trash
-
- // Tracking Usage
- var contentModificationDate: Date? // The date the item was last modified
- var creationDate: Date? // The date the item was created
- var lastUsedDate: Date? = Date() // The date the item was last used, default to the moment when the item is created
- // Tracking Versions
- var versionIdentifier: Data? // A data value used to determine when the item changes
- var isMostRecentVersionDownloaded: Bool = false // A Boolean value that indicates whether the item is the most recent version downloaded from the server
- // Monitoring File Transfers
- var isUploading: Bool = false // A Boolean value that indicates whether the item is currently uploading to your remote server
- var isUploaded: Bool = true // A Boolean value that indicates whether the item has been uploaded to your remote server
- var uploadingError: Error? // An error that occurred while uploading to your remote server
-
- var isDownloading: Bool = false // A Boolean value that indicates whether the item is currently downloading from your remote server
- var isDownloaded: Bool = true // A Boolean value that indicates whether the item has been downloaded from your remote server
- var downloadingError: Error? // An error that occurred while downloading the item
- var tagData: Data? // Tag
- var favoriteRank: NSNumber? // Favorite
-
- var isDirectory = false
- var isDownload = false
- var isUpload = false
- init(metadata: tableMetadata, parentItemIdentifier: NSFileProviderItemIdentifier, providerData: FileProviderData) {
-
- self.parentItemIdentifier = parentItemIdentifier
- self.itemIdentifier = providerData.getItemIdentifier(metadata: metadata)
-
- self.contentModificationDate = metadata.date as Date
- self.creationDate = metadata.date as Date
- self.documentSize = NSNumber(value: metadata.size)
- self.filename = metadata.fileNameView
- self.isDirectory = metadata.directory
- self.typeIdentifier = CCUtility.insertTypeFileIconName(metadata.fileNameView, metadata: metadata)
- self.versionIdentifier = metadata.etag.data(using: .utf8)
-
- // This is a file
- if (!metadata.directory) {
-
- let fileIdentifier = CCUtility.getDirectoryProviderStorageFileID(self.itemIdentifier.rawValue, fileNameView: metadata.fileNameView)!
- var fileSize = 0 as Double
-
- do {
- let attributes = try FileManager.default.attributesOfItem(atPath: fileIdentifier)
- fileSize = attributes[FileAttributeKey.size] as! Double
- } catch let error {
- print("error: \(error)")
- }
-
- // Download
- if fileSize == 0 {
- self.isDownloaded = false
- self.isMostRecentVersionDownloaded = false
- } else {
- self.documentSize = NSNumber(value:fileSize)
- self.isDownloaded = true
- self.isMostRecentVersionDownloaded = true
- }
-
- // Upload
- if (metadata.session == k_upload_session_extension && metadata.status != k_metadataStatusUploadError) {
- isUpload = true
- self.isDownloaded = true
- self.isMostRecentVersionDownloaded = true
- self.isUploading = true
- self.isUploaded = false
- }
-
- // Error ?
- if metadata.sessionError != "" {
- uploadingError = NSError(domain: NSCocoaErrorDomain, code: NSFeatureUnsupportedError, userInfo:[:])
- }
-
- } else {
-
- // Favorite directory
- let rank = providerData.listFavoriteIdentifierRank[metadata.fileID]
- if (rank == nil) {
- favoriteRank = nil
- } else {
- favoriteRank = providerData.listFavoriteIdentifierRank[metadata.fileID]
- }
- }
-
- // Tag
- if let tableTag = NCManageDatabase.sharedInstance.getTag(predicate: NSPredicate(format: "fileID == %@", metadata.fileID)) {
- tagData = tableTag.tagIOS
- }
- }
- }
|