conversations-classic-ios/ConversationsClassic/AppCore/Middlewares/FileMiddleware.swift

55 lines
2.4 KiB
Swift
Raw Normal View History

2024-07-11 13:59:24 +00:00
import Combine
2024-07-12 11:43:14 +00:00
import Foundation
import UIKit
2024-07-11 13:59:24 +00:00
final class FileMiddleware {
2024-07-12 11:43:14 +00:00
static let shared = FileMiddleware()
2024-07-11 13:59:24 +00:00
func middleware(state _: AppState, action: AppAction) -> AnyPublisher<AppAction, Never> {
switch action {
2024-07-12 11:43:14 +00:00
case .conversationAction(.attachmentsUpdated(let attachments)):
2024-07-13 01:29:46 +00:00
return Future { promise in
for attachment in attachments where attachment.localPath == nil && attachment.remotePath != nil {
DispatchQueue.main.async {
// swiftlint:disable:next force_unwrapping
store.dispatch(.fileAction(.downloadAttachmentFile(id: attachment.id, remotePath: attachment.remotePath!)))
2024-07-12 11:43:14 +00:00
}
}
2024-07-13 01:29:46 +00:00
promise(.success(.empty))
}.eraseToAnyPublisher()
2024-07-12 11:43:14 +00:00
2024-07-13 01:29:46 +00:00
case .fileAction(.downloadAttachmentFile(let id, let remotePath)):
return Future { promise in
let localUrl = FileProcessing.fileFolder.appendingPathComponent(id).appendingPathExtension(remotePath.pathExtension)
DownloadManager.shared.enqueueDownload(from: remotePath, to: localUrl) { error in
DispatchQueue.main.async {
if let error {
store.dispatch(.fileAction(.downloadingAttachmentFileFailed(id: id, reason: error.localizedDescription)))
} else {
store.dispatch(.fileAction(.attachmentFileDownloaded(id: id, localUrl: localUrl)))
2024-07-12 11:43:14 +00:00
}
}
2024-07-13 01:29:46 +00:00
}
promise(.success(.empty))
}.eraseToAnyPublisher()
2024-07-12 11:43:14 +00:00
2024-07-13 01:29:46 +00:00
case .fileAction(.attachmentFileDownloaded(let id, let localUrl)):
return Just(.fileAction(.createAttachmentThumbnail(id: id, localUrl: localUrl)))
.eraseToAnyPublisher()
2024-07-12 11:43:14 +00:00
2024-07-13 01:29:46 +00:00
case .fileAction(.createAttachmentThumbnail(let id, let localUrl)):
return Future { promise in
if let thumbnailUrl = FileProcessing.shared.createThumbnail(id: id, localUrl: localUrl) {
promise(.success(.fileAction(.attachmentThumbnailCreated(id: id, thumbnailUrl: thumbnailUrl))))
} else {
promise(.success(.empty))
2024-07-11 13:59:24 +00:00
}
}
2024-07-13 01:29:46 +00:00
.eraseToAnyPublisher()
2024-07-11 13:59:24 +00:00
default:
return Empty().eraseToAnyPublisher()
}
}
}