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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
|
// swiftlint:disable file_length
import SwiftUI
@MainActor
class SettingsManager: ObservableObject { // swiftlint:disable:this type_body_length
// MARK: - Stored Properties
@AppStorage("detailViewType")
var detailViewQuality: BooruPostFileType = .original
@AppStorage("thumbnailQuality")
private 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
@AppStorage("alternativeThumbnailGrid")
var alternativeThumbnailGrid = false
@AppStorage("uniformThumbnailGrid")
private var _uniformThumbnailGrid: Bool = false
@preconcurrency private var syncObservation: (any NSObjectProtocol & Sendable)?
#if os(macOS)
@AppStorage("saveTagsToFile")
var saveTagsToFile = false
#endif
// MARK: - Private Properties
private var bookmarksCache: [SettingsBookmark] = []
private var searchHistoryCache: [BooruSearchQuery] = []
private var blurRatingsCache: [BooruRating] = []
private var displayRatingsCache: [BooruRating] = []
private var uniformThumbnailGridCache: Bool = false
private var thumbnailQualityCache: BooruPostFileType = .preview
// 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()
@AppStorage("providerCredentials")
private var providerCredentialsData = Data()
// MARK: - Computed Properties
var bookmarks: [SettingsBookmark] {
get { bookmarksCache }
set {
syncableData(
key: "bookmarks",
localData: $bookmarksData,
newValue: newValue
) { $0.sorted { $0.date > $1.date } }
}
}
var uniformThumbnailGrid: Bool {
get { uniformThumbnailGridCache }
set {
_uniformThumbnailGrid = newValue
uniformThumbnailGridCache = newValue
}
}
var thumbnailQuality: BooruPostFileType {
get { thumbnailQualityCache }
set {
_thumbnailQuality = newValue
thumbnailQualityCache = newValue
}
}
var displayRatings: [BooruRating] {
get { displayRatingsCache }
set {
displayRatingsData = Self.encode(newValue) ?? displayRatingsData
}
}
var blurRatings: [BooruRating] {
get { blurRatingsCache }
set {
blurRatingsData = Self.encode(newValue) ?? blurRatingsData
}
}
var searchHistory: [BooruSearchQuery] {
get { searchHistoryCache }
set {
syncableData(
key: "searchHistory",
localData: $searchHistoryData,
newValue: newValue,
) { $0.sorted { $0.date > $1.date } }
}
}
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,
) { $0 }
}
}
var folders: [SettingsFolder] {
get {
syncableData(
key: "folders",
localData: foldersData,
sort: { $0 },
identifier: { $0.id }
)
}
set {
syncableData(
key: "folders",
localData: $foldersData,
newValue: newValue,
) { $0 }
}
}
// MARK: Provider Credentials
var providerCredentials: [BooruProviderCredentials] {
get {
syncableData(
key: "providerAPIKeys",
localData: providerCredentialsData,
sort: { $0 },
identifier: { $0.id }
)
}
set {
let existingCredentials: [BooruProviderCredentials] =
Self.decode([BooruProviderCredentials].self, from: providerCredentialsData) ?? []
let rawCredentials = newValue.map { credentials in
(provider: credentials.provider, apiKey: credentials.apiKey, userID: credentials.userID)
}
let mergedCredentials = BooruProviderCredentials.from(
rawCredentials, existingCredentials: existingCredentials
)
syncableData(
key: "providerAPIKeys",
localData: $providerCredentialsData,
newValue: mergedCredentials,
) { $0 }
}
}
private func mergedCredentialValues<Value>(
extract: (BooruProviderCredentials) -> Value,
isDefault: (Value) -> Bool
) -> [BooruProvider: Value] {
providerCredentials.reduce(into: [BooruProvider: Value]()) { dictionary, credentials in
let key = credentials.provider
let value = extract(credentials)
if let existing = dictionary[key] {
if isDefault(existing) && !isDefault(value) {
dictionary[key] = value
}
} else {
dictionary[key] = value
}
}
}
var providerAPIKeys: [BooruProvider: String] {
mergedCredentialValues(
extract: { $0.apiKey },
isDefault: { $0.isEmpty }
)
}
var providerUserIDs: [BooruProvider: Int] {
mergedCredentialValues(
extract: { $0.userID },
isDefault: { $0 == 0 }
)
}
// MARK: - Initialisation
init() {
syncObservation = NotificationCenter.default.addObserver(
forName: NSUbiquitousKeyValueStore.didChangeExternallyNotification,
object: NSUbiquitousKeyValueStore.default,
queue: .main
) { [weak self] _ in
Task { @MainActor in
self?.syncFromCloud()
}
}
loadBookmarksCache()
loadSearchHistoryCache()
loadDisplayRatingsCache()
loadBlurRatingsCache()
uniformThumbnailGridCache = _uniformThumbnailGrid
thumbnailQualityCache = _thumbnailQuality
}
func updateBookmarks(_ newValue: [SettingsBookmark]) async {
syncableData(
key: "bookmarks",
localData: $bookmarksData,
newValue: newValue
) { $0.sorted { $0.date > $1.date } }
loadBookmarksCache()
await backupBookmarks()
}
func updateSearchHistory(_ newValue: [BooruSearchQuery]) {
syncableData(
key: "searchHistory",
localData: $searchHistoryData,
newValue: newValue,
) { $0.sorted { $0.date > $1.date } }
loadSearchHistoryCache()
}
func updateDisplayRatings(_ newValue: [BooruRating]) {
displayRatingsData = Self.encode(newValue) ?? displayRatingsData
loadDisplayRatingsCache()
}
func updateBlurRatings(_ newValue: [BooruRating]) {
blurRatingsData = Self.encode(newValue) ?? blurRatingsData
loadBlurRatingsCache()
}
func updateProviderCredentials(_ newValue: [BooruProviderCredentials]) {
let existingCredentials: [BooruProviderCredentials] =
Self.decode([BooruProviderCredentials].self, from: providerCredentialsData) ?? []
let rawCredentials = newValue.map { credentials in
(provider: credentials.provider, apiKey: credentials.apiKey, userID: credentials.userID)
}
let mergedCredentials = BooruProviderCredentials.from(
rawCredentials, existingCredentials: existingCredentials
)
syncableData(
key: "providerAPIKeys",
localData: $providerCredentialsData,
newValue: mergedCredentials,
) { $0 }
}
// 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) ?? []
var seenValues = Set<UUID>()
let mergedValues = (localValues + iCloudValues).filter { value in
seenValues.insert(identifier(value)).inserted
}
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]
) {
let sortedValues = sort(newValue)
guard let encoded = Self.encode(sortedValues) else {
localData.wrappedValue = Data()
return
}
localData.wrappedValue = encoded
if enableSync {
NSUbiquitousKeyValueStore.default.set(encoded, forKey: key)
NSUbiquitousKeyValueStore.default.synchronize()
}
}
private func backupBookmarks() async {
await Task.detached {
guard
let cachesDirectory = FileManager.default.urls(for: .cachesDirectory, in: .userDomainMask)
.first
else { return }
let backupDirectory = cachesDirectory.appendingPathComponent("bookmarks_backups")
let fileManager = FileManager.default
try? fileManager.createDirectory(at: backupDirectory, withIntermediateDirectories: true)
let timestamp = Int(Date().timeIntervalSince1970)
let backupFile = backupDirectory.appendingPathComponent("bookmarks_backup_\(timestamp).json")
if let data = await Self.encode(self.bookmarksCache) {
try? data.write(to: backupFile)
}
if let files = try? fileManager.contentsOfDirectory(
at: backupDirectory,
includingPropertiesForKeys: [.contentModificationDateKey],
options: .skipsHiddenFiles
) {
let jsonBackups = files.filter { file in
file.lastPathComponent.hasPrefix("bookmarks_backup_") && file.pathExtension == "json"
}
let sortedBackups = jsonBackups.sorted { firstFile, secondFile in
let firstDate =
(try? firstFile.resourceValues(forKeys: [.contentModificationDateKey])
.contentModificationDate)
?? .distantPast
let secondDate =
(try? secondFile.resourceValues(forKeys: [.contentModificationDateKey])
.contentModificationDate)
?? .distantPast
return firstDate > secondDate
}
if sortedBackups.count > 10 {
for url in sortedBackups[10...] {
try? fileManager.removeItem(at: url)
}
}
}
}.value
}
// MARK: Cache Loaders
private func loadCache<T: Decodable & Sendable>(
from data: Data,
sort: @escaping ([T]) -> [T],
assign: @escaping ([T]) -> Void
) {
let decoded = Self.decode([T].self, from: data) ?? []
let sorted = sort(decoded)
assign(sorted)
}
private func loadBookmarksCache() {
loadCache(
from: bookmarksData,
sort: { $0.sorted { $0.date > $1.date } },
assign: { [weak self] in self?.bookmarksCache = $0 }
)
}
private func loadSearchHistoryCache() {
loadCache(
from: searchHistoryData,
sort: { $0.sorted { $0.date > $1.date } },
assign: { [weak self] in self?.searchHistoryCache = $0 }
)
}
private func loadDisplayRatingsCache() {
loadCache(
from: displayRatingsData,
sort: { $0 },
assign: { [weak self] in self?.displayRatingsCache = $0 }
)
}
private func loadBlurRatingsCache() {
loadCache(
from: blurRatingsData,
sort: { $0 },
assign: { [weak self] in self?.blurRatingsCache = $0 }
)
}
// MARK: - Public Methods
func appendToSearchHistory(_ query: BooruSearchQuery) {
var updated = searchHistory
updated.append(query)
updateSearchHistory(updated)
}
func resetToDefaults() {
detailViewQuality = .original
thumbnailQuality = .preview
searchSuggestionsMode = .disabled
thumbnailGridColumns = 2
preferredBooru = .safebooru
enableShareShortcut = false
updateDisplayRatings(BooruRating.allCases)
updateBlurRatings([.explicit])
displayDetailsInformationBar = true
preloadedCarouselImages = 3
#if os(macOS)
saveTagsToFile = false
#endif
}
func syncFromCloud() {
if self.enableSync {
Task.detached { [weak self] in
guard let self else { return }
if let data = NSUbiquitousKeyValueStore.default.data(forKey: "bookmarks") {
await MainActor.run {
self.bookmarksData = data
}
}
if let data = NSUbiquitousKeyValueStore.default.data(forKey: "searchHistory") {
await MainActor.run {
self.searchHistoryData = data
}
}
if let data = NSUbiquitousKeyValueStore.default.data(forKey: "customProviders") {
await MainActor.run {
self.customProvidersData = data
}
}
await MainActor.run {
self.loadBookmarksCache()
self.loadSearchHistoryCache()
self.objectWillChange.send()
}
}
}
}
func syncToCloud() {
if enableSync {
Task.detached { [weak self] in
guard let self else { return }
// Merge bookmarks
var iCloudBookmarks: [SettingsBookmark] = []
if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "bookmarks") {
iCloudBookmarks =
await Self
.decode([SettingsBookmark].self, from: iCloudData) ?? []
}
let localBookmarks =
await Self.decode([SettingsBookmark].self, from: bookmarksData) ?? []
let mergedBookmarks = Array(Set(localBookmarks + iCloudBookmarks))
.sorted { $0.date > $1.date }
if let encoded = await Self.encode(mergedBookmarks) {
NSUbiquitousKeyValueStore.default.set(encoded, forKey: "bookmarks")
await MainActor.run {
self.bookmarksData = encoded
}
}
// Merge search history
var iCloudHistory: [BooruSearchQuery] = []
if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "searchHistory") {
iCloudHistory = await Self.decode([BooruSearchQuery].self, from: iCloudData) ?? []
}
let localHistory =
await Self.decode([BooruSearchQuery].self, from: searchHistoryData) ?? []
let mergedHistory = Array(Set(localHistory + iCloudHistory))
.sorted { $0.date > $1.date }
if let encoded = await Self.encode(mergedHistory) {
NSUbiquitousKeyValueStore.default.set(encoded, forKey: "searchHistory")
await MainActor.run {
self.searchHistoryData = encoded
}
}
// Merge custom providers
var iCloudProviders: [BooruProviderCustom] = []
if let iCloudData = NSUbiquitousKeyValueStore.default.data(forKey: "customProviders") {
iCloudProviders =
await Self
.decode([BooruProviderCustom].self, from: iCloudData) ?? []
}
let localProviders =
await Self.decode([BooruProviderCustom].self, from: customProvidersData) ?? []
let mergedProviders = Array(Set(localProviders + iCloudProviders))
if let encoded = await Self.encode(mergedProviders) {
NSUbiquitousKeyValueStore.default.set(encoded, forKey: "customProviders")
await MainActor.run {
self.customProvidersData = encoded
}
}
await MainActor.run {
self.loadBookmarksCache()
self.loadSearchHistoryCache()
}
}
}
}
// 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
Task {
await updateBookmarks(updatedBookmarks)
}
} else {
debugPrint("SettingsManager.addBookmark: iCloud data limit exceeded")
}
}
func removeBookmark(at offsets: IndexSet) {
var updated = bookmarks
updated.remove(atOffsets: offsets)
Task {
await updateBookmarks(updated)
}
}
func removeBookmark(withTags tags: [String]) {
let updated = bookmarks.filter { !$0.tags.contains(where: tags.contains) }
Task {
await updateBookmarks(updated)
}
}
func removeBookmark(withID id: UUID) {
let updated = bookmarks.filter { $0.id != id }
Task {
await updateBookmarks(updated)
}
}
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) }
var updated = bookmarks
updated.append(contentsOf: newBookmarks)
Task {
await updateBookmarks(updated)
}
}
func updateBookmarkFolder(withID id: UUID, folder: UUID?) {
guard let index = bookmarks.firstIndex(where: { $0.id == id }) else { return }
var updated = bookmarks
updated[index].folder = folder
Task {
await updateBookmarks(updated)
}
Task { @MainActor in
self.syncToCloud()
}
}
func updateBookmarkLastVisit(withID id: UUID, date: Date = Date()) {
guard let index = bookmarks.firstIndex(where: { $0.id == id }) else { return }
var updated = bookmarks
updated[index].lastVisit = date
Task {
await updateBookmarks(updated)
}
Task { @MainActor in
self.syncToCloud()
}
}
func incrementBookmarkVisitCount(withID id: UUID) {
guard let index = bookmarks.firstIndex(where: { $0.id == id }) else { return }
var updated = bookmarks
updated[index].visitedCount += 1
Task {
await updateBookmarks(updated)
}
Task { @MainActor in
self.syncToCloud()
}
}
func folderName(forID id: UUID) -> String? {
folders.first { $0.id == id }?.name
}
func renameFolder(_ folder: SettingsFolder, to newName: String) {
var updated = folders
guard let index = updated.firstIndex(where: { $0.id == folder.id }) else { return }
updated[index].name = newName
syncableData(
key: "folders",
localData: $foldersData,
newValue: updated,
) { $0 }
}
// MARK: Search History Management
func removeSearchHistoryEntry(at offsets: IndexSet) {
var updated = searchHistory
updated.remove(atOffsets: offsets)
updateSearchHistory(updated)
}
func removeSearchHistoryEntry(withID id: UUID) {
let updated = searchHistory.filter { $0.id != id }
updateSearchHistory(updated)
}
#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)
}
}
}
|