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

93 lines
4.3 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-13 14:23:03 +00:00
private var downloadingMessageIDs = ThreadSafeSet<String>()
2024-07-11 13:59:24 +00:00
func middleware(state _: AppState, action: AppAction) -> AnyPublisher<AppAction, Never> {
switch action {
2024-07-14 13:42:51 +00:00
// MARK: - For incomig attachments
2024-07-13 13:38:15 +00:00
case .conversationAction(.messagesUpdated(let messages)):
2024-07-13 14:23:03 +00:00
return Future { [weak self] promise in
guard let wSelf = self else {
promise(.success(.empty))
return
}
2024-07-13 13:42:47 +00:00
for message in messages where message.attachmentRemotePath != nil && message.attachmentLocalPath == nil {
2024-07-13 14:23:03 +00:00
if wSelf.downloadingMessageIDs.contains(message.id) {
continue
}
wSelf.downloadingMessageIDs.insert(message.id)
2024-07-13 01:29:46 +00:00
DispatchQueue.main.async {
// swiftlint:disable:next force_unwrapping
2024-07-14 10:08:51 +00:00
store.dispatch(.fileAction(.downloadAttachmentFile(messageId: message.id, attachmentRemotePath: message.attachmentRemotePath!)))
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 13:42:47 +00:00
case .fileAction(.downloadAttachmentFile(let id, let attachmentRemotePath)):
2024-07-13 01:29:46 +00:00
return Future { promise in
2024-07-14 10:08:51 +00:00
let localName = "\(id)_\(UUID().uuidString)\(attachmentRemotePath.lastPathComponent)"
let localUrl = FileProcessing.fileFolder.appendingPathComponent(localName)
2024-07-13 13:42:47 +00:00
DownloadManager.shared.enqueueDownload(from: attachmentRemotePath, to: localUrl) { error in
2024-07-13 01:29:46 +00:00
DispatchQueue.main.async {
if let error {
2024-07-14 10:08:51 +00:00
store.dispatch(.fileAction(.downloadingAttachmentFileFailed(messageId: id, reason: error.localizedDescription)))
2024-07-13 01:29:46 +00:00
} else {
2024-07-14 10:08:51 +00:00
store.dispatch(.fileAction(.attachmentFileDownloaded(messageId: id, localName: localName)))
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-14 10:08:51 +00:00
case .fileAction(.attachmentFileDownloaded(let id, let localName)):
2024-07-13 14:23:03 +00:00
return Future { [weak self] promise in
self?.downloadingMessageIDs.remove(id)
2024-07-14 10:08:51 +00:00
promise(.success(.fileAction(.createAttachmentThumbnail(messageId: id, localName: localName))))
2024-07-13 14:23:03 +00:00
}
.eraseToAnyPublisher()
2024-07-12 11:43:14 +00:00
2024-07-14 10:08:51 +00:00
case .fileAction(.createAttachmentThumbnail(let id, let localName)):
2024-07-13 14:23:03 +00:00
return Future { [weak self] promise in
2024-07-14 10:08:51 +00:00
if let thumbnailName = FileProcessing.shared.createThumbnail(localName: localName) {
2024-07-13 14:23:03 +00:00
self?.downloadingMessageIDs.remove(id)
2024-07-14 10:08:51 +00:00
promise(.success(.fileAction(.attachmentThumbnailCreated(messageId: id, thumbnailName: thumbnailName))))
2024-07-13 01:29:46 +00:00
} else {
2024-07-13 14:23:03 +00:00
self?.downloadingMessageIDs.remove(id)
2024-07-13 01:29:46 +00:00
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
2024-07-14 13:42:51 +00:00
// MARK: - For outgoing sharing
case .fileAction(.fetchItemsFromGallery):
return Future<AppAction, Never> { promise in
let items = FileProcessing.shared.fetchGallery()
promise(.success(.fileAction(.itemsFromGalleryFetched(items: items))))
}
.eraseToAnyPublisher()
case .fileAction(.itemsFromGalleryFetched(let items)):
return Future { promise in
let newItems = FileProcessing.shared.fillGalleryItemsThumbnails(items: items)
promise(.success(.sharingAction(.galleryItemsUpdated(items: newItems))))
}
.eraseToAnyPublisher()
2024-07-14 16:53:33 +00:00
case .fileAction(.copyGalleryItemsForUploading(let items)):
return Future { promise in
let ids = FileProcessing.shared.copyGalleryItemsForUploading(items: items)
promise(.success(.fileAction(.galleryItemsCopiedForUploading(newMessageIds: ids.map { $0.0 }, localNames: ids.map { $0.1 }))))
}
.eraseToAnyPublisher()
2024-07-11 13:59:24 +00:00
default:
return Empty().eraseToAnyPublisher()
}
}
}