secretive/Sources/SecretAgent/AppDelegate.swift

45 lines
1.3 KiB
Swift
Raw Normal View History

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
import SecureEnclaveSecretKit
import SmartCardSecretKit
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
}()
2020-09-22 06:12:50 +00:00
private let updater = Updater(checkOnLaunch: false)
private let notifier = Notifier()
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) {
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
}
notifier.prompt()
updateSink = updater.$update.sink { update in
guard let update = update else { return }
self.notifier.notify(update: update, ignore: self.updater.ignore(release:))
2020-03-22 01:43:26 +00:00
}
2020-03-04 07:14:38 +00:00
}
}