This repository was archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathWriteUserConfigurationJSON.swift
58 lines (54 loc) · 1.91 KB
/
WriteUserConfigurationJSON.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
//
// WriteUserConfigurationJSON.swift
// RsyncUI
//
// Created by Thomas Evensen on 12/02/2022.
//
// swiftlint:disable line_length
import Combine
import Foundation
class WriteUserConfigurationJSON: NamesandPaths {
var subscriptons = Set<AnyCancellable>()
// Filename for JSON file
var filename = SharedReference.shared.userconfigjson
private func writeJSONToPersistentStore(_ data: String?) {
if let atpath = fullpathmacserial {
do {
let folder = try Folder(path: atpath)
let file = try folder.createFile(named: filename)
if let data = data {
try file.write(data)
}
} catch let e {
let error = e as NSError
self.error(errordescription: error.description, errortype: .readerror)
}
}
}
// We have to remove UUID and computed properties ahead of writing JSON file
// done in the .map operator
@discardableResult
init(_ userconfiguration: UserConfiguration?) {
super.init(.configurations)
userconfiguration.publisher
.map { userconfiguration in
userconfiguration
}
.encode(encoder: JSONEncoder())
.sink(receiveCompletion: { completion in
switch completion {
case .finished:
// print("The publisher finished normally.")
return
case let .failure(e):
let error = e as NSError
self.error(errordescription: error.description, errortype: .readerror)
}
}, receiveValue: { [unowned self] result in
let jsonfile = String(data: result, encoding: .utf8)
writeJSONToPersistentStore(jsonfile)
subscriptons.removeAll()
})
.store(in: &subscriptons)
}
}