|
@@ -27,7 +27,7 @@ import Photos
|
|
|
|
|
|
class NCNetworkingProcessUpload: NSObject {
|
|
|
|
|
|
- var timerProcess: Timer?
|
|
|
+ let appDelegate = UIApplication.shared.delegate as? AppDelegate
|
|
|
|
|
|
override init() {
|
|
|
super.init()
|
|
@@ -35,18 +35,18 @@ class NCNetworkingProcessUpload: NSObject {
|
|
|
}
|
|
|
|
|
|
private func startProcess() {
|
|
|
- if timerProcess?.isValid ?? false {
|
|
|
+ if appDelegate?.timerProcess?.isValid ?? false {
|
|
|
DispatchQueue.main.async { self.process() }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
func startTimer() {
|
|
|
- timerProcess?.invalidate()
|
|
|
- timerProcess = Timer.scheduledTimer(timeInterval: 5, target: self, selector: #selector(process), userInfo: nil, repeats: true)
|
|
|
+ appDelegate?.timerProcess?.invalidate()
|
|
|
+ appDelegate?.timerProcess = Timer.scheduledTimer(timeInterval: 5, target: self, selector: #selector(process), userInfo: nil, repeats: true)
|
|
|
}
|
|
|
|
|
|
func stopTimer() {
|
|
|
- timerProcess?.invalidate()
|
|
|
+ appDelegate?.timerProcess?.invalidate()
|
|
|
}
|
|
|
|
|
|
@objc private func process() {
|
|
@@ -54,6 +54,7 @@ class NCNetworkingProcessUpload: NSObject {
|
|
|
guard let account = NCManageDatabase.shared.getActiveAccount(), UIApplication.shared.applicationState == .active else { return }
|
|
|
let metadatasUpload = NCManageDatabase.shared.getMetadatas(predicate: NSPredicate(format: "status == %d OR status == %d", NCGlobal.shared.metadataStatusInUpload, NCGlobal.shared.metadataStatusUploading))
|
|
|
if metadatasUpload.filter({ $0.chunk || $0.e2eEncrypted }).count > 0 { return }
|
|
|
+ let isWiFi = NCNetworking.shared.networkReachability == NKCommon.typeReachability.reachableEthernetOrWiFi
|
|
|
|
|
|
stopTimer()
|
|
|
|
|
@@ -102,14 +103,20 @@ class NCNetworkingProcessUpload: NSObject {
|
|
|
if metadatas.isEmpty {
|
|
|
NCManageDatabase.shared.deleteMetadata(predicate: NSPredicate(format: "ocId == %@", metadata.ocId))
|
|
|
}
|
|
|
- for metadata in metadatas where counterUpload < NCGlobal.shared.maxConcurrentOperationUpload {
|
|
|
- let isWiFi = NCNetworking.shared.networkReachability == NKCommon.typeReachability.reachableEthernetOrWiFi
|
|
|
- if metadata.session == NCNetworking.shared.sessionIdentifierBackgroundWWan && !isWiFi { continue }
|
|
|
+ for metadata in metadatas {
|
|
|
+
|
|
|
+ if !isWiFi && metadata.session == NCNetworking.shared.sessionIdentifierBackgroundWWan {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
if let metadata = NCManageDatabase.shared.setMetadataStatus(ocId: metadata.ocId, status: NCGlobal.shared.metadataStatusInUpload) {
|
|
|
NCNetworking.shared.upload(metadata: metadata)
|
|
|
}
|
|
|
+
|
|
|
if metadata.e2eEncrypted || metadata.chunk {
|
|
|
+ // Only one
|
|
|
counterUpload = NCGlobal.shared.maxConcurrentOperationUpload
|
|
|
+ break
|
|
|
} else {
|
|
|
counterUpload += 1
|
|
|
}
|
|
@@ -130,7 +137,7 @@ class NCNetworkingProcessUpload: NSObject {
|
|
|
|
|
|
// verify delete Asset Local Identifiers in auto upload (DELETE Photos album)
|
|
|
DispatchQueue.main.async {
|
|
|
- if UIApplication.shared.applicationState == .active && counterUpload == 0 && !(UIApplication.shared.delegate as! AppDelegate).isPasscodePresented() {
|
|
|
+ if counterUpload == 0 && !(UIApplication.shared.delegate as! AppDelegate).isPasscodePresented() {
|
|
|
self.deleteAssetLocalIdentifiers(account: account.account) {
|
|
|
self.startTimer()
|
|
|
}
|