-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathProductImageUploader.swift
466 lines (406 loc) · 21.9 KB
/
ProductImageUploader.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
import Combine
import UIKit
import Foundation
import struct Yosemite.ProductImage
import enum Yosemite.ProductAction
import protocol Yosemite.StoresManager
import enum Yosemite.ProductImageStatus
import enum Yosemite.ProductImageAssetType
import enum Yosemite.ProductOrVariationID
import class Networking.ProductImageStatusStorage
import protocol Experiments.FeatureFlagService
/// Information about a background product image upload error.
struct ProductImageUploadErrorInfo {
let siteID: Int64
let productOrVariationID: ProductOrVariationID
let error: ProductImageUploaderError
}
/// Identifiable information about a specific product or product variation of different sites for image upload.
struct ProductImageUploaderKey: Equatable, Hashable {
let siteID: Int64
let productOrVariationID: ProductOrVariationID
let isLocalID: Bool
}
/// Handles product image upload to support background image upload.
protocol ProductImageUploaderProtocol {
/// Emits active image uploads
var activeUploads: AnyPublisher<[ProductImageUploaderKey], Never> { get }
/// Emits product image upload errors.
var errors: AnyPublisher<ProductImageUploadErrorInfo, Never> { get }
/// Called for product image upload use cases (e.g. product/variation form, downloadable product list).
/// - Parameters:
/// - key: identifiable information about the product.
/// - originalStatuses: the current image statuses of the product for initialization.
func actionHandler(key: ProductImageUploaderKey, originalStatuses: [ProductImageStatus]) -> ProductImageActionHandler
/// Replaces the local ID of the product with the remote ID from API.
///
/// Called in "Add product" flow as soon as the product is saved in the API.
///
/// Replacing product ID is necessary to update the product with the images that are already uploaded without product ID.
/// Note that the images start uploading even before the product is created in API.
///
/// - Parameters:
/// - siteID: The ID of the site to which images are uploaded to.
/// - localID: A temporary local ID of the product.
/// - remoteID: Remote product ID received from API.
func replaceLocalID(siteID: Int64, localID: ProductOrVariationID, remoteID: Int64)
/// Saves the product remotely with the images after none is pending upload.
/// - Parameters:
/// - key: identifiable information about the product.
/// - onProductSave: called after the product is saved remotely with the uploaded images.
func saveProductImagesWhenNoneIsPendingUploadAnymore(key: ProductImageUploaderKey,
onProductSave: @escaping (Result<[ProductImage], Error>) -> Void)
/// Stops the emission of errors when the user is in the product form to edit a specific product.
/// - Parameters:
/// - key: identifiable information about the product.
func stopEmittingErrors(key: ProductImageUploaderKey)
/// Starts the emission of errors when the user leaves the product form.
/// - Parameters:
/// - key: identifiable information about the product.
func startEmittingErrors(key: ProductImageUploaderKey)
/// Triggers a notice about background image upload for a product if needed.
/// - Parameter key: identifiable information about the product.
///
func sendBackgroundUploadNoticeIfNeeded(key: ProductImageUploaderKey, using noticePresenter: NoticePresenter)
/// Determines whether there are unsaved changes on a product's images.
/// If the product had any save request before, it checks whether the image statuses to save match the latest image statuses.
/// Otherwise, it checks whether there is any pending upload or the image statuses match the given original image statuses.
/// - Parameters:
/// - key: identifiable information about the product.
/// - originalImages: the image statuses before any edits.
func hasUnsavedChangesOnImages(key: ProductImageUploaderKey, originalImages: [ProductImage]) -> Bool
/// Resets all internal states and tracking of image uploads for connected stores.
/// Called when the user is logged out.
func reset()
}
/// Supports background image upload and product images update after the user leaves the product form.
final class ProductImageUploader: ProductImageUploaderProtocol {
let userDefaultsStatuses: ProductImageStatusStorage?
var errors: AnyPublisher<ProductImageUploadErrorInfo, Never> {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
let upstream = userDefaultsStatuses?.errorsPublisher
?? Empty<[(siteID: Int64,
productOrVariationID: ProductOrVariationID?,
assetType: ProductImageAssetType?,
error: Error)], Never>().eraseToAnyPublisher()
return upstream
.flatMap { errorItems in
errorItems.publisher
.compactMap { errorItem in
guard let productOrVariationID = errorItem.productOrVariationID,
let assetType = errorItem.assetType else { return nil }
return ProductImageUploadErrorInfo(
siteID: errorItem.siteID,
productOrVariationID: productOrVariationID,
error: .failedUploadingImage(asset: assetType, error: errorItem.error)
)
}
}
.eraseToAnyPublisher()
} else {
return errorsSubject.eraseToAnyPublisher()
}
}
var activeUploads: AnyPublisher<[ProductImageUploaderKey], Never> {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
return userDefaultsStatuses?.statusesPublisher
.map { statuses in
statuses.compactMap { status -> ProductImageUploaderKey? in
if status.isUploading {
return ProductImageUploaderKey(siteID: status.siteID,
productOrVariationID: status.productOrVariationID,
isLocalID: status.isLocalID)
}
return nil
}
}
.eraseToAnyPublisher() ?? Empty().eraseToAnyPublisher()
} else {
return $activeUploadsPublisher.eraseToAnyPublisher()
}
}
typealias Key = ProductImageUploaderKey
private let errorsSubject: PassthroughSubject<ProductImageUploadErrorInfo, Never> = .init()
private var statusUpdatesExcludedProductKeys: Set<Key> = []
private var statusUpdatesSubscriptions: Set<AnyCancellable> = []
private var imageUploadSubscriptions: Set<AnyCancellable> = []
private var actionHandlersByProduct: [Key: ProductImageActionHandler] = [:]
private var imagesSaverByProduct: [Key: ProductImagesSaver] = [:]
@Published private var activeUploadsPublisher: [ProductImageUploaderKey] = []
private let stores: StoresManager
private let featureFlagService: FeatureFlagService
private let imagesProductIDUpdater: ProductImagesProductIDUpdaterProtocol
private var cancellables = Set<AnyCancellable>()
init(stores: StoresManager = ServiceLocator.stores,
featureFlagService: FeatureFlagService = ServiceLocator.featureFlagService,
imagesProductIDUpdater: ProductImagesProductIDUpdaterProtocol = ProductImagesProductIDUpdater()) {
self.stores = stores
self.featureFlagService = featureFlagService
self.imagesProductIDUpdater = imagesProductIDUpdater
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
self.userDefaultsStatuses = ProductImageStatusStorage()
observeStatuses()
} else {
self.userDefaultsStatuses = nil
}
// Observe when the app enters background.
NotificationCenter.default.addObserver(self,
selector: #selector(appDidEnterBackground),
name: UIApplication.didEnterBackgroundNotification,
object: nil)
}
deinit {
NotificationCenter.default.removeObserver(self)
}
func actionHandler(key: ProductImageUploaderKey, originalStatuses: [ProductImageStatus]) -> ProductImageActionHandler {
let actionHandler: ProductImageActionHandler
if let handler = actionHandlersByProduct[key] {
actionHandler = handler
} else {
actionHandler = ProductImageActionHandler(siteID: key.siteID, productID: key.productOrVariationID, imageStatuses: originalStatuses, stores: stores)
actionHandlersByProduct[key] = actionHandler
observeStatusUpdates(key: key, actionHandler: actionHandler)
observeImageUploads(key: key, actionHandler: actionHandler)
}
return actionHandler
}
func replaceLocalID(siteID: Int64, localID: ProductOrVariationID, remoteID: Int64) {
let key = Key(siteID: siteID,
productOrVariationID: localID,
isLocalID: true)
guard let handler = actionHandlersByProduct[key] else {
return
}
// Update the product ID of handler to make sure that future product image uploads use the `remoteProductID` instead of `localProductID`
let remoteProductOrVariationID = localID.replacingID(remoteID)
handler.updateProductID(remoteProductOrVariationID)
actionHandlersByProduct.removeValue(forKey: key)
let keyWithRemoteProductID = Key(siteID: siteID,
productOrVariationID: remoteProductOrVariationID,
isLocalID: false)
actionHandlersByProduct[keyWithRemoteProductID] = handler
statusUpdatesExcludedProductKeys.remove(key)
statusUpdatesExcludedProductKeys.insert(keyWithRemoteProductID)
}
func stopEmittingErrors(key: ProductImageUploaderKey) {
statusUpdatesExcludedProductKeys.insert(key)
}
func startEmittingErrors(key: ProductImageUploaderKey) {
statusUpdatesExcludedProductKeys.remove(key)
}
func sendBackgroundUploadNoticeIfNeeded(key: ProductImageUploaderKey, using noticePresenter: NoticePresenter) {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
if let statuses = userDefaultsStatuses?.getAllStatuses(for: key.siteID, productID: key.productOrVariationID),
statuses.contains(where: { $0.isUploading }) {
let notice = Notice(title: Localization.backgroundUploadNoticeTitle)
noticePresenter.enqueue(notice: notice)
}
} else {
if activeUploadsPublisher.contains(key) {
let notice = Notice(title: Localization.backgroundUploadNoticeTitle)
noticePresenter.enqueue(notice: notice)
}
}
}
func hasUnsavedChangesOnImages(key: ProductImageUploaderKey, originalImages: [ProductImage]) -> Bool {
guard let handler = actionHandlersByProduct[key] else {
return false
}
let productImagesSaver = imagesSaverByProduct[key]
if let productImagesSaver, productImagesSaver.imageStatusesToSave.isNotEmpty {
// If there are images scheduled to be saved, there are no unsaved changes if the image statuses to save match the latest image statuses.
return handler.productImageStatuses.images != productImagesSaver.imageStatusesToSave.images
} else {
if handler.productImageStatuses.hasPendingUpload {
return true
}
/// If there's a product saved in background, compare the images to determine unsaved changes.
if let savedProduct = productImagesSaver?.savedProduct {
return handler.productImageStatuses.images.map { $0.imageID } != savedProduct.images.map { $0.imageID }
}
// Otherwise, there are unsaved changes if there is any difference in the remote image IDs between the
// original and latest product.
return handler.productImageStatuses.images.map { $0.imageID } != originalImages.map { $0.imageID }
}
}
func saveProductImagesWhenNoneIsPendingUploadAnymore(key: ProductImageUploaderKey,
onProductSave: @escaping (Result<[ProductImage], Error>) -> Void) {
// The product has to exist remotely in order to save its images remotely.
// In product creation, this save function should be called after a new product is saved remotely for the first time.
guard key.isLocalID == false else {
return onProductSave(.failure(ProductImageUploaderError.noRemoteProductIDFound))
}
guard let handler = actionHandlersByProduct[key] else {
return onProductSave(.failure(ProductImageUploaderError.noActionHandlerFound))
}
let imagesSaver: ProductImagesSaver
if let productImagesSaver = imagesSaverByProduct[key] {
imagesSaver = productImagesSaver
} else {
imagesSaver = ProductImagesSaver(siteID: key.siteID,
productOrVariationID: key.productOrVariationID,
stores: stores)
imagesSaverByProduct[key] = imagesSaver
}
imagesSaver.saveProductImagesWhenNoneIsPendingUploadAnymore(imageActionHandler: handler) { [weak self] result in
guard let self = self else { return }
onProductSave(result)
if case let .failure(error) = result {
self.errorsSubject.send(.init(siteID: key.siteID,
productOrVariationID: key.productOrVariationID,
error: .failedSavingProductAfterImageUpload(error: error)))
}
self.updateProductIDOfImagesUploadedUsingLocalProductID(siteID: key.siteID,
productOrVariationID: key.productOrVariationID,
images: handler.productImageStatuses.images)
}
}
func reset() {
statusUpdatesExcludedProductKeys = []
statusUpdatesSubscriptions = []
imageUploadSubscriptions = []
activeUploadsPublisher = []
actionHandlersByProduct = [:]
imagesSaverByProduct = [:]
}
private func scheduleUploadInProgressNotificationIfNeeded() {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
userDefaultsStatuses?.statusesPublisher
.map { statuses in
statuses.filter { $0.isUploading }
}
.sink { uploadingStatuses in
if !uploadingStatuses.isEmpty {
let notification = LocalNotification(scenario: .productImageBackgroundUpload)
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
Task {
await LocalNotificationScheduler(pushNotesManager: ServiceLocator.pushNotesManager).schedule(notification: notification,
trigger: trigger, remoteFeatureFlag: nil)
}
}
}
.store(in: &cancellables)
} else {
guard !activeUploadsPublisher.isEmpty else { return }
let notification = LocalNotification(scenario: .productImageBackgroundUpload)
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
Task {
await LocalNotificationScheduler(pushNotesManager: ServiceLocator.pushNotesManager).schedule(notification: notification,
trigger: trigger, remoteFeatureFlag: nil)
}
}
}
@objc private func appDidEnterBackground() {
self.scheduleUploadInProgressNotificationIfNeeded()
}
}
private extension ProductImageUploader {
/// Called to replace the local product ID with remote product ID for the previously uploaded images
///
func updateProductIDOfImagesUploadedUsingLocalProductID(siteID: Int64,
productOrVariationID: ProductOrVariationID,
images: [ProductImage]) {
images.forEach { image in
Task {
_ = try? await imagesProductIDUpdater.updateImageProductID(siteID: siteID,
productID: productOrVariationID.id,
productImage: image)
}
}
}
private func observeStatuses() {
userDefaultsStatuses?.statusesPublisher
.sink { [weak self] statuses in
guard let self = self else { return }
// Handle all the errors
let failureStatuses = statuses.filter({ $0.isUploadFailure })
for failureStatus in failureStatuses {
if let error = failureStatus.error, let asset = failureStatus.asset {
let errorInfo = ProductImageUploadErrorInfo(
siteID: failureStatus.siteID,
productOrVariationID: failureStatus.productOrVariationID,
error: .failedUploadingImage(asset: asset, error: error)
)
self.errorsSubject.send(errorInfo)
}
}
}
.store(in: &cancellables)
}
func observeStatusUpdates(key: Key, actionHandler: ProductImageActionHandler) {
let observationToken = actionHandler.addUpdateObserver(self) { [weak self] productImageStatuses in
guard let self = self else { return }
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
// Update the states in userDefaultsStatuses
self.userDefaultsStatuses?.appendStatuses(productImageStatuses, for: key.siteID, productID: key.productOrVariationID)
}
else {
if !activeUploadsPublisher.contains(key), productImageStatuses.hasPendingUpload {
activeUploadsPublisher.append(key)
} else if activeUploadsPublisher.contains(key), !productImageStatuses.hasPendingUpload {
/// When all pending uploads are completed or removed,
/// remove the key from active uploads
removeProductFromActiveUploads(key: key)
}
}
}
statusUpdatesSubscriptions.insert(observationToken)
}
func observeImageUploads(key: Key, actionHandler: ProductImageActionHandler) {
let observationToken = actionHandler.addAssetUploadObserver(self) { [weak self] asset, result in
guard let self else { return }
if case .failure(let error) = result {
let infoError = ProductImageUploadErrorInfo(siteID: key.siteID,
productOrVariationID: key.productOrVariationID,
error: .failedUploadingImage(asset: asset, error: error))
if statusUpdatesExcludedProductKeys.contains(key) == false {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
let failedStatus = ProductImageStatus.uploadFailure(asset: asset,
error: error,
siteID: key.siteID,
productID: key.productOrVariationID)
self.userDefaultsStatuses?.updateStatus(failedStatus)
} else {
errorsSubject.send(infoError)
}
}
}
}
imageUploadSubscriptions.insert(observationToken)
}
func removeProductFromActiveUploads(key: Key) {
if featureFlagService.isFeatureFlagEnabled(.backgroundProductImageUpload) {
userDefaultsStatuses?.removeStatus(where: { status in
status.siteID == key.siteID &&
status.productOrVariationID == key.productOrVariationID &&
status.isUploading
})
} else {
activeUploadsPublisher.removeAll(where: { $0 == key })
}
}
}
private extension ProductOrVariationID {
func replacingID(_ id: Int64) -> ProductOrVariationID {
switch self {
case .product:
return .product(id: id)
case .variation(let productID, _):
return .variation(productID: productID, variationID: id)
}
}
}
/// Possible errors from background image upload.
enum ProductImageUploaderError: Error {
case noActionHandlerFound
case noRemoteProductIDFound
case failedSavingProductAfterImageUpload(error: Error)
case failedUploadingImage(asset: ProductImageAssetType, error: Error)
}
private enum Localization {
static let backgroundUploadNoticeTitle = NSLocalizedString(
"productImageUploader.backgroundUploadNotice.title",
value: "Image uploading will continue in the background",
comment: ""
)
}