2020-03-04 07:14:38 +00:00
|
|
|
import Cocoa
|
2020-03-22 01:43:26 +00:00
|
|
|
import OSLog
|
|
|
|
import Combine
|
2020-03-04 07:14:38 +00:00
|
|
|
import SecretKit
|
2022-01-02 00:43:29 +00:00
|
|
|
import SecureEnclaveSecretKit
|
|
|
|
import SmartCardSecretKit
|
2020-03-17 06:39:34 +00:00
|
|
|
import SecretAgentKit
|
2020-03-22 01:43:26 +00:00
|
|
|
import Brief
|
2020-03-04 07:14:38 +00:00
|
|
|
|
|
|
|
@NSApplicationMain
|
|
|
|
class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
|
2020-09-22 06:12:50 +00:00
|
|
|
private let storeList: SecretStoreList = {
|
2020-03-09 04:11:59 +00:00
|
|
|
let list = SecretStoreList()
|
|
|
|
list.add(store: SecureEnclave.Store())
|
|
|
|
list.add(store: SmartCard.Store())
|
|
|
|
return list
|
|
|
|
}()
|
2022-01-18 21:38:59 +00:00
|
|
|
private let updater = Updater()
|
2020-09-22 06:12:50 +00:00
|
|
|
private let notifier = Notifier()
|
2022-01-03 07:25:40 +00:00
|
|
|
private let publicKeyFileStoreController = PublicKeyFileStoreController(homeDirectory: NSHomeDirectory())
|
2020-09-22 06:12:50 +00:00
|
|
|
private lazy var agent: Agent = {
|
2020-03-17 07:56:55 +00:00
|
|
|
Agent(storeList: storeList, witness: notifier)
|
2020-03-04 07:14:38 +00:00
|
|
|
}()
|
2020-09-22 06:12:50 +00:00
|
|
|
private lazy var socketController: SocketController = {
|
2020-03-04 07:14:38 +00:00
|
|
|
let path = (NSHomeDirectory() as NSString).appendingPathComponent("socket.ssh") as String
|
|
|
|
return SocketController(path: path)
|
|
|
|
}()
|
2020-05-16 06:19:00 +00:00
|
|
|
private var updateSink: AnyCancellable?
|
2020-03-04 07:14:38 +00:00
|
|
|
|
|
|
|
func applicationDidFinishLaunching(_ aNotification: Notification) {
|
2020-11-11 23:32:28 +00:00
|
|
|
Logger().debug("SecretAgent finished launching")
|
2020-03-04 07:14:38 +00:00
|
|
|
DispatchQueue.main.async {
|
2020-03-24 06:22:22 +00:00
|
|
|
self.socketController.handler = self.agent.handle(reader:writer:)
|
2020-03-04 07:14:38 +00:00
|
|
|
}
|
2022-01-03 07:25:40 +00:00
|
|
|
DistributedNotificationCenter.default().addObserver(forName: .secretStoreUpdated, object: nil, queue: .main) { [self] _ in
|
|
|
|
try? publicKeyFileStoreController.generatePublicKeys(for: storeList.stores.flatMap({ $0.secrets }), clear: true)
|
|
|
|
}
|
|
|
|
try? publicKeyFileStoreController.generatePublicKeys(for: storeList.stores.flatMap({ $0.secrets }), clear: true)
|
2020-03-04 07:14:38 +00:00
|
|
|
notifier.prompt()
|
2022-01-18 21:38:59 +00:00
|
|
|
// updateSink = updater.$update.sink { update in
|
|
|
|
// guard let update = update else { return }
|
|
|
|
// self.notifier.notify(update: update, ignore: self.updater.ignore(release:))
|
|
|
|
// }
|
2020-03-04 07:14:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|