mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-09-15 08:50:57 +00:00
* Integrations to window * Cleanup of presenting. * Older name for copy * For copyable view too
148 lines
4.7 KiB
Swift
148 lines
4.7 KiB
Swift
import SwiftUI
|
|
import SecretKit
|
|
import SecureEnclaveSecretKit
|
|
import SmartCardSecretKit
|
|
import Brief
|
|
|
|
@main
|
|
struct Secretive: App {
|
|
|
|
@Environment(\.agentStatusChecker) var agentStatusChecker
|
|
@Environment(\.justUpdatedChecker) var justUpdatedChecker
|
|
@AppStorage("defaultsHasRunSetup") var hasRunSetup = false
|
|
|
|
@SceneBuilder var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environment(EnvironmentValues._secretStoreList)
|
|
.onReceive(NotificationCenter.default.publisher(for: NSApplication.didBecomeActiveNotification)) { _ in
|
|
guard hasRunSetup else { return }
|
|
agentStatusChecker.check()
|
|
if agentStatusChecker.running && justUpdatedChecker.justUpdatedBuild {
|
|
// Relaunch the agent, since it'll be running from earlier update still
|
|
reinstallAgent()
|
|
} else if !agentStatusChecker.running && !agentStatusChecker.developmentBuild {
|
|
forceLaunchAgent()
|
|
}
|
|
}
|
|
}
|
|
.commands {
|
|
AppCommands()
|
|
}
|
|
WindowGroup(id: String(describing: IntegrationsView.self)) {
|
|
IntegrationsView()
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
extension Secretive {
|
|
|
|
struct AppCommands: Commands {
|
|
|
|
@Environment(\.openWindow) var openWindow
|
|
@Environment(\.openURL) var openURL
|
|
@FocusedValue(\.showCreateSecret) var showCreateSecret
|
|
|
|
var body: some Commands {
|
|
CommandGroup(before: CommandGroupPlacement.appSettings) {
|
|
Button(.integrationsMenuBarTitle, systemImage: "app.connected.to.app.below.fill") {
|
|
openWindow(id: String(describing: IntegrationsView.self))
|
|
}
|
|
}
|
|
CommandGroup(after: CommandGroupPlacement.newItem) {
|
|
Button(.appMenuNewSecretButton, systemImage: "plus") {
|
|
showCreateSecret?()
|
|
}
|
|
.keyboardShortcut(KeyboardShortcut(KeyEquivalent("N"), modifiers: [.command, .shift]))
|
|
.disabled(showCreateSecret?.isEnabled == false)
|
|
}
|
|
CommandGroup(replacing: .help) {
|
|
Button(.appMenuHelpButton) {
|
|
openURL(Constants.helpURL)
|
|
}
|
|
}
|
|
SidebarCommands()
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
extension Secretive {
|
|
|
|
private func reinstallAgent() {
|
|
Task {
|
|
_ = await LaunchAgentController().install()
|
|
try? await Task.sleep(for: .seconds(1))
|
|
agentStatusChecker.check()
|
|
if !agentStatusChecker.running {
|
|
forceLaunchAgent()
|
|
}
|
|
}
|
|
}
|
|
|
|
private func forceLaunchAgent() {
|
|
// We've run setup, we didn't just update, launchd is just not doing it's thing.
|
|
// Force a launch directly.
|
|
Task {
|
|
_ = await LaunchAgentController().forceLaunch()
|
|
agentStatusChecker.check()
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
private enum Constants {
|
|
static let helpURL = URL(string: "https://github.com/maxgoedjen/secretive/blob/main/FAQ.md")!
|
|
}
|
|
|
|
|
|
extension EnvironmentValues {
|
|
|
|
// This is injected through .environment modifier below instead of @Entry for performance reasons (basially, restrictions around init/mainactor causing delay in loading secrets/"empty screen" blip).
|
|
@MainActor fileprivate static let _secretStoreList: SecretStoreList = {
|
|
let list = SecretStoreList()
|
|
let cryptoKit = SecureEnclave.Store()
|
|
let migrator = SecureEnclave.CryptoKitMigrator()
|
|
try? migrator.migrate(to: cryptoKit)
|
|
list.add(store: cryptoKit)
|
|
list.add(store: SmartCard.Store())
|
|
return list
|
|
}()
|
|
|
|
private static let _agentStatusChecker = AgentStatusChecker()
|
|
@Entry var agentStatusChecker: any AgentStatusCheckerProtocol = _agentStatusChecker
|
|
private static let _updater: any UpdaterProtocol = {
|
|
@AppStorage("defaultsHasRunSetup") var hasRunSetup = false
|
|
return Updater(checkOnLaunch: hasRunSetup)
|
|
}()
|
|
@Entry var updater: any UpdaterProtocol = _updater
|
|
|
|
private static let _justUpdatedChecker = JustUpdatedChecker()
|
|
@Entry var justUpdatedChecker: any JustUpdatedCheckerProtocol = _justUpdatedChecker
|
|
|
|
@MainActor var secretStoreList: SecretStoreList {
|
|
EnvironmentValues._secretStoreList
|
|
}
|
|
}
|
|
|
|
extension FocusedValues {
|
|
@Entry var showCreateSecret: OpenSheet?
|
|
}
|
|
|
|
final class OpenSheet {
|
|
|
|
let closure: () -> Void
|
|
let isEnabled: Bool
|
|
|
|
init(isEnabled: Bool = true, closure: @escaping () -> Void) {
|
|
self.isEnabled = isEnabled
|
|
self.closure = closure
|
|
}
|
|
|
|
func callAsFunction() {
|
|
closure()
|
|
}
|
|
|
|
}
|