summaryrefslogtreecommitdiff
path: root/Sora/Data/Settings/SettingsManager.swift
blob: ba0dcdf946933a22b20ca32c10e8031908a939f2 (plain) (blame)
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
467
468
469
470
471
472
// swiftlint:disable file_length

import SwiftUI

class SettingsManager: ObservableObject {  // swiftlint:disable:this type_body_length
  // MARK: - Stored Properties
  @AppStorage("detailViewType")
  var detailViewQuality: BooruPostFileType = .original

  @AppStorage("thumbnailQuality")
  var thumbnailQuality: BooruPostFileType = .preview

  @AppStorage("searchSuggestionsMode")
  var searchSuggestionsMode: SettingsSearchSuggestionsMode = .disabled

  @AppStorage("thumbnailGridColumns")
  var thumbnailGridColumns = 2

  @AppStorage("enableShareShortcut")
  var enableShareShortcut = false

  @AppStorage("displayDetailsInformationBar")
  var displayDetailsInformationBar = true

  @AppStorage("preloadedCarouselImages")
  var preloadedCarouselImages = 3

  @AppStorage("enableSync")
  var enableSync: Bool = false

  private var syncObservation: NSObjectProtocol?

  #if os(macOS)
    @AppStorage("saveTagsToFile")
    var saveTagsToFile = false
  #endif

  // MARK: - Codable Properties
  @AppStorage("bookmarks")
  private var bookmarksData = Data()

  @AppStorage("displayRatings")
  private var displayRatingsData = SettingsManager.encode(BooruRating.allCases) ?? Data()

  @AppStorage("blurRatings")
  private var blurRatingsData = SettingsManager.encode([.explicit as BooruRating]) ?? Data()

  @AppStorage("searchHistory")
  private var searchHistoryData = Data()

  @AppStorage("preferredBooru")
  private var preferredBooruData = Data()

  @AppStorage("customProviders")
  private var customProvidersData = Data()

  @AppStorage("folders")
  private var foldersData = Data()

  // MARK: - Computed Properties
  var bookmarks: [SettingsBookmark] {
    get {
      syncableData(
        key: "bookmarks",
        localData: bookmarksData,
        sort: { $0.sorted { $0.date > $1.date } },
        identifier: { $0.id }
      )
    }

    set {
      syncableData(
        key: "bookmarks",
        localData: $bookmarksData,
        newValue: newValue,
        sort: { $0.sorted { $0.date > $1.date } },
        identifier: { $0.id }
      )
    }
  }

  var displayRatings: [BooruRating] {
    get {
      Self.decode([BooruRating].self, from: displayRatingsData) ?? BooruRating.allCases
    }

    set { displayRatingsData = Self.encode(newValue) ?? displayRatingsData }
  }

  var blurRatings: [BooruRating] {
    get { Self.decode([BooruRating].self, from: blurRatingsData) ?? [.explicit] }

    set { blurRatingsData = Self.encode(newValue) ?? blurRatingsData }
  }

  var searchHistory: [BooruSearchQuery] {
    get {
      syncableData(
        key: "searchHistory",
        localData: searchHistoryData,
        sort: { $0.sorted { $0.date > $1.date } },
        identifier: { $0.id }
      )
    }

    set {
      syncableData(
        key: "searchHistory",
        localData: $searchHistoryData,
        newValue: newValue,
        sort: { $0.sorted { $0.date > $1.date } },
        identifier: { $0.id }
      )
    }
  }

  var preferredBooru: BooruProvider {
    get {
      Self.decode(BooruProvider.self, from: preferredBooruData) ?? .safebooru
    }

    set { preferredBooruData = Self.encode(newValue) ?? preferredBooruData }
  }

  var customProviders: [BooruProviderCustom] {
    get {
      syncableData(
        key: "customProviders",
        localData: customProvidersData,
        sort: { $0 },
        identifier: { $0.id }
      )
    }

    set {
      syncableData(
        key: "customProviders",
        localData: $customProvidersData,
        newValue: newValue,
        sort: { $0 },
        identifier: { $0.id }
      )
    }
  }

  var folders: [SettingsFolder] {
    get {
      syncableData(
        key: "folders",
        localData: foldersData,
        sort: { $0 },
        identifier: { $0.id }
      )
    }

    set {
      syncableData(
        key: "folders",
        localData: $foldersData,
        newValue: newValue,
        sort: { $0 },
        identifier: { $0.id }
      )
    }
  }

  // MARK: - Initialisation
  init() {
    syncObservation = NotificationCenter.default.addObserver(
      forName: NSUbiquitousKeyValueStore.didChangeExternallyNotification,
      object: NSUbiquitousKeyValueStore.default,
      queue: .main
    ) { [weak self] _ in
      self?.syncFromCloud()
    }
  }

  // MARK: - Private Helpers
  private static func encode<T: Encodable>(_ value: T) -> Data? {
    try? JSONEncoder().encode(value)
  }

  private static func decode<T: Decodable>(_ type: T.Type, from data: Data) -> T? {
    try? JSONDecoder().decode(type, from: data)
  }

  private func syncableData<T: Codable>(
    key: String,
    localData: Data,
    sort: ([T]) -> [T],
    identifier: (T) -> UUID
  ) -> [T] {
    if enableSync {
      if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: key) {
        if let iCloudValues = Self.decode([T].self, from: iCloudData) {
          let localValues = Self.decode([T].self, from: localData) ?? []
          let mergedValues = (localValues + iCloudValues)
            .reduce(into: [T]()) { result, value in
              if !result.contains(where: { identifier($0) == identifier(value) }) {
                result.append(value)
              }
            }

          return sort(mergedValues)
        }
      }
    }

    let localValues = Self.decode([T].self, from: localData) ?? []

    return sort(localValues)
  }

  private func syncableData<T: Codable>(
    key: String,
    localData: Binding<Data>,
    newValue: [T],
    sort: ([T]) -> [T],
    identifier: (T) -> UUID
  ) {
    let sortedValues = sort(newValue)

    localData.wrappedValue = Self.encode(sortedValues) ?? Data()

    if enableSync {
      var iCloudValues: [T] = []

      if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: key) {
        iCloudValues = Self.decode([T].self, from: iCloudData) ?? []
      }

      let filteredICloudValues = iCloudValues.filter { iCloudItem in
        sortedValues.contains { identifier($0) == identifier(iCloudItem) }
      }
      let newLocalItems = sortedValues.filter { localItem in
        !filteredICloudValues.contains { identifier($0) == identifier(localItem) }
      }
      let mergedValues = filteredICloudValues + newLocalItems
      let sortedMergedValues = sort(mergedValues)

      NSUbiquitousKeyValueStore.default.set(Self.encode(sortedMergedValues), forKey: key)
      NSUbiquitousKeyValueStore.default.synchronize()
    }
  }

  // MARK: - Public Methods
  func appendToSearchHistory(_ query: BooruSearchQuery) {
    self.searchHistory.append(query)
  }

  func resetToDefaults() {
    detailViewQuality = .original
    thumbnailQuality = .preview
    searchSuggestionsMode = .disabled
    thumbnailGridColumns = 2
    preferredBooru = .safebooru
    enableShareShortcut = false
    displayRatings = BooruRating.allCases
    blurRatings = [.explicit]
    displayDetailsInformationBar = true
    preloadedCarouselImages = 3

    #if os(macOS)
      saveTagsToFile = false
    #endif
  }

  func syncFromCloud() {
    if self.enableSync {
      if let data = NSUbiquitousKeyValueStore.default.data(forKey: "bookmarks") {
        self.bookmarksData = data
      }

      if let data = NSUbiquitousKeyValueStore.default.data(forKey: "searchHistory") {
        self.searchHistoryData = data
      }

      if let data = NSUbiquitousKeyValueStore.default.data(forKey: "customProviders") {
        self.customProvidersData = data
      }

      self.objectWillChange.send()
    }
  }

  func syncToCloud() {
    if enableSync {
      // Merge bookmarks
      var iCloudBookmarks: [SettingsBookmark] = []

      if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "bookmarks") {
        iCloudBookmarks = Self.decode([SettingsBookmark].self, from: iCloudData) ?? []
      }

      let localBookmarks = Self.decode([SettingsBookmark].self, from: bookmarksData) ?? []
      let mergedBookmarks = (localBookmarks + iCloudBookmarks)
        .reduce(into: [SettingsBookmark]()) { result, value in
          if !result.contains(where: { $0.id == value.id }) {
            result.append(value)
          }
        }
        .sorted { $0.date > $1.date }

      NSUbiquitousKeyValueStore.default.set(Self.encode(mergedBookmarks), forKey: "bookmarks")

      bookmarksData = Self.encode(mergedBookmarks) ?? Data()

      // Merge search history
      var iCloudHistory: [BooruSearchQuery] = []

      if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "searchHistory") {
        iCloudHistory = Self.decode([BooruSearchQuery].self, from: iCloudData) ?? []
      }

      let localHistory = Self.decode([BooruSearchQuery].self, from: searchHistoryData) ?? []
      let mergedHistory = (localHistory + iCloudHistory)
        .reduce(into: [BooruSearchQuery]()) { result, value in
          if !result.contains(where: { $0.id == value.id }) {
            result.append(value)
          }
        }
        .sorted { $0.date > $1.date }

      NSUbiquitousKeyValueStore.default.set(Self.encode(mergedHistory), forKey: "searchHistory")

      searchHistoryData = Self.encode(mergedHistory) ?? Data()

      // Merge custom providers
      var iCloudProviders: [BooruProviderCustom] = []

      if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "customProviders") {
        iCloudProviders = Self.decode([BooruProviderCustom].self, from: iCloudData) ?? []
      }

      let localProviders = Self.decode([BooruProviderCustom].self, from: customProvidersData) ?? []
      let mergedProviders = (localProviders + iCloudProviders)
        .reduce(into: [BooruProviderCustom]()) { result, value in
          if !result.contains(where: { $0.id == value.id }) {
            result.append(value)
          }
        }

      NSUbiquitousKeyValueStore.default.set(Self.encode(mergedProviders), forKey: "customProviders")

      customProvidersData = Self.encode(mergedProviders) ?? Data()
    }
  }

  // MARK: Bookmark Management
  func addBookmark(provider: BooruProvider, tags: [String]) {
    var updatedBookmarks = bookmarks

    updatedBookmarks.append(
      SettingsBookmark(provider: provider, tags: tags.map { $0.lowercased() })
    )

    if let data = Self.encode(updatedBookmarks), data.count < 1_000_000 {  // 1 MB
      bookmarks = updatedBookmarks
    } else {
      debugPrint("SettingsManager.addBookmark: iCloud data limit exceeded")
    }
  }

  func removeBookmark(at offsets: IndexSet) {
    bookmarks.remove(atOffsets: offsets)
  }

  func removeBookmark(withTags tags: [String]) {
    bookmarks.removeAll { $0.tags.contains(where: tags.contains) }
  }

  func removeBookmark(withID id: UUID) {
    bookmarks.removeAll { $0.id == id }
  }

  func exportBookmarks() throws -> Data {
    try JSONEncoder().encode(bookmarks)
  }

  func importBookmarks(from data: Data) throws {
    let importedBookmarks = try JSONDecoder().decode([SettingsBookmark].self, from: data)
    let existingBookmarkIDs = Set(bookmarks.map(\.id))
    let newBookmarks = importedBookmarks.filter { !existingBookmarkIDs.contains($0.id) }

    bookmarks.append(contentsOf: newBookmarks)
  }

  func updateBookmarkFolder(withID id: UUID, folder: UUID?) {
    guard let index = bookmarks.firstIndex(where: { $0.id == id }) else { return }

    bookmarks[index].folder = folder

    Task { @MainActor in
      self.syncToCloud()
    }
  }

  func updateBookmarkLastVisit(withID id: UUID, date: Date = Date()) {
    guard let index = bookmarks.firstIndex(of: bookmarks.first(where: { $0.id == id })!) else {
      return
    }

    bookmarks[index].lastVisit = date

    Task { @MainActor in
      self.syncToCloud()
    }
  }

  func incrementBookmarkVisitCount(withID id: UUID) {
    guard let index = bookmarks.firstIndex(of: bookmarks.first(where: { $0.id == id })!) else {
      return
    }

    bookmarks[index].visitedCount += 1

    Task { @MainActor in
      self.syncToCloud()
    }
  }

  func folderName(forID id: UUID) -> String? {
    folders.first { $0.id == id }?.name
  }

  // MARK: Search History Management
  func removeSearchHistoryEntry(at offsets: IndexSet) {
    searchHistory.remove(atOffsets: offsets)
  }

  func removeSearchHistoryEntry(withID id: UUID) {
    searchHistory.removeAll { $0.id == id }
  }

  #if DEBUG
    // https://stackoverflow.com/a/68926484/14452787
    private func randomWord() -> String {
      var word = ""

      for _ in 0..<5 {
        word += String(format: "%c", Int.random(in: 97..<123)) as String
      }

      return word
    }

    func addDummyBookmarks() {
      for _ in 0..<10 {
        let randomTags: [String] = Array(repeating: randomWord(), count: Int.random(in: 1...5))

        addBookmark(provider: .safebooru, tags: randomTags)
      }
    }

    func addDummySearchHistory() {
      for _ in 0..<10 {
        let randomTags: [String] = Array(repeating: randomWord(), count: Int.random(in: 1...5))

        appendToSearchHistory(
          BooruSearchQuery(provider: .safebooru, tags: randomTags)
        )
      }
    }
  #endif

  // MARK: - Deinitialisation
  deinit {
    if let observation = syncObservation {
      NotificationCenter.default.removeObserver(observation)
    }
  }
}