123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- //
- // 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 {
- 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 = true // 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
- init(metadata: tableMetadata, parentItemIdentifier: NSFileProviderItemIdentifier) {
-
- self.parentItemIdentifier = parentItemIdentifier
- self.itemIdentifier = fileProviderUtility.sharedInstance.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)
-
- if (!metadata.directory) {
-
- self.documentSize = NSNumber(value: metadata.size)
-
- let tableLocalFile = NCManageDatabase.sharedInstance.getTableLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
- if tableLocalFile == nil {
- isMostRecentVersionDownloaded = false
- } else {
- isMostRecentVersionDownloaded = true
- }
-
- } else {
-
- // Favorite directory
- let rank = fileProviderData.sharedInstance.listFavoriteIdentifierRank[metadata.ocId]
- if (rank == nil) {
- favoriteRank = nil
- } else {
- favoriteRank = fileProviderData.sharedInstance.listFavoriteIdentifierRank[metadata.ocId]
- }
- }
-
- // Tag
- if let tableTag = NCManageDatabase.sharedInstance.getTag(predicate: NSPredicate(format: "ocId == %@", metadata.ocId)) {
- tagData = tableTag.tagIOS
- }
- }
- }
|