123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- //
- // NCNetworkingNotificationCenter.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 19/04/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 Foundation
- @objc class NCNetworkingNotificationCenter: NSObject, UIDocumentInteractionControllerDelegate {
- @objc public static let shared: NCNetworkingNotificationCenter = {
- let instance = NCNetworkingNotificationCenter()
-
- NotificationCenter.default.addObserver(instance, selector: #selector(downloadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_downloadedFile), object: nil)
- NotificationCenter.default.addObserver(instance, selector: #selector(uploadedFile(_:)), name: NSNotification.Name(rawValue: k_notificationCenter_uploadedFile), object: nil)
-
- return instance
- }()
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- var viewerQuickLook: NCViewerQuickLook?
- var docController: UIDocumentInteractionController?
-
- //MARK: - Download
- @objc func downloadedFile(_ notification: NSNotification) {
-
- if let userInfo = notification.userInfo as NSDictionary? {
- if let metadata = userInfo["metadata"] as? tableMetadata, let selector = userInfo["selector"] as? String, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
-
- if metadata.account != appDelegate.account { return }
-
- if errorCode == 0 {
-
- let fileURL = URL(fileURLWithPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView))
-
- switch selector {
- case selectorLoadFileQuickLook:
-
- let fileNamePath = NSTemporaryDirectory() + metadata.fileNameView
- CCUtility.copyFile(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId, fileNameView: metadata.fileNameView), toPath: fileNamePath)
- viewerQuickLook = NCViewerQuickLook.init()
- viewerQuickLook?.quickLook(url: URL(fileURLWithPath: fileNamePath), viewController: appDelegate.activeMain)
-
- case selectorLoadFileView:
-
- if UIApplication.shared.applicationState == UIApplication.State.active {
-
- if metadata.contentType.contains("opendocument") && !NCUtility.shared.isRichDocument(metadata) {
-
- openIn(fileURL: fileURL, selector: selector)
-
- } else if metadata.typeFile == k_metadataTypeFile_compress || metadata.typeFile == k_metadataTypeFile_unknown {
- openIn(fileURL: fileURL, selector: selector)
-
- } else if metadata.typeFile == k_metadataTypeFile_imagemeter {
-
- openIn(fileURL: fileURL, selector: selector)
-
- } else {
-
- if self.appDelegate.activeViewController is CCMain {
- (self.appDelegate.activeViewController as! CCMain).shouldPerformSegue(metadata, selector: "")
- } else if self.appDelegate.activeViewController is NCFavorite {
- (self.appDelegate.activeViewController as! NCFavorite).segue(metadata: metadata)
- } else if self.appDelegate.activeViewController is NCOffline {
- (self.appDelegate.activeViewController as! NCOffline).segue(metadata: metadata)
- }
- }
- }
-
- case selectorOpenIn, selectorOpenInDetail:
-
- if UIApplication.shared.applicationState == UIApplication.State.active {
-
- openIn(fileURL: fileURL, selector: selector)
- }
-
- case selectorSaveAlbum:
-
- appDelegate.activeMain.save(toPhotoAlbum: metadata)
-
- case selectorLoadCopy:
-
- var items = UIPasteboard.general.items
-
- do {
- let etagPasteboard = try NSKeyedArchiver.archivedData(withRootObject: metadata.ocId, requiringSecureCoding: false)
- items.append([k_metadataKeyedUnarchiver:etagPasteboard])
- } catch {
- print("error")
- }
-
- UIPasteboard.general.setItems(items, options: [:])
-
- case selectorLoadOffline:
-
- NCManageDatabase.sharedInstance.setLocalFile(ocId: metadata.ocId, offline: true)
-
- default:
-
- break
- }
-
- } else {
-
- // File do not exists on server, remove in local
- if (errorCode == 404 || errorCode == -1011) { // - 1011 = kCFURLErrorBadServerResponse
-
- do {
- try FileManager.default.removeItem(atPath: CCUtility.getDirectoryProviderStorageOcId(metadata.ocId))
- } catch { }
-
- NCManageDatabase.sharedInstance.deleteMetadata(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
- NCManageDatabase.sharedInstance.deleteLocalFile(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
-
- } else {
-
- NCContentPresenter.shared.messageNotification("_download_file_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
- }
- }
-
- func openIn(fileURL: URL, selector: String?) {
-
- docController = UIDocumentInteractionController(url: fileURL)
- docController?.delegate = self
-
- if selector == selectorOpenInDetail {
- guard let barButtonItem = appDelegate.activeDetail.navigationItem.rightBarButtonItem else { return }
- guard let buttonItemView = barButtonItem.value(forKey: "view") as? UIView else { return }
-
- docController?.presentOptionsMenu(from: buttonItemView.frame, in: buttonItemView, animated: true)
-
- } else {
- guard let splitViewController = appDelegate.window?.rootViewController as? UISplitViewController, let view = splitViewController.viewControllers.first?.view, let frame = splitViewController.viewControllers.first?.view.frame else {
- return }
-
- docController?.presentOptionsMenu(from: frame, in: view, animated: true)
- }
- }
-
- //MARK: - Upload
- @objc func uploadedFile(_ notification: NSNotification) {
-
- if let userInfo = notification.userInfo as NSDictionary? {
- if let metadata = userInfo["metadata"] as? tableMetadata, let errorCode = userInfo["errorCode"] as? Int, let errorDescription = userInfo["errorDescription"] as? String {
-
- if metadata.account == appDelegate.account {
- if errorCode != 0 {
- if errorCode != -999 && errorCode != 401 && errorDescription != "" {
- NCContentPresenter.shared.messageNotification("_upload_file_", description: errorDescription, delay: TimeInterval(k_dismissAfterSecond), type: NCContentPresenter.messageType.error, errorCode: errorCode)
- }
- }
- }
- }
- }
- }
- }
|