95 lines
3.4 KiB
Swift
95 lines
3.4 KiB
Swift
import AppKit
|
|
import CodexBarCore
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct AugmentProviderImplementation: ProviderImplementation {
|
|
let id: UsageProvider = .augment
|
|
|
|
@MainActor
|
|
func observeSettings(_ settings: SettingsStore) {
|
|
_ = settings.augmentCookieSource
|
|
_ = settings.augmentCookieHeader
|
|
}
|
|
|
|
@MainActor
|
|
func settingsSnapshot(context: ProviderSettingsSnapshotContext) -> ProviderSettingsSnapshotContribution? {
|
|
.augment(context.settings.augmentSettingsSnapshot(tokenOverride: context.tokenOverride))
|
|
}
|
|
|
|
@MainActor
|
|
func tokenAccountsVisibility(context: ProviderSettingsContext, support: TokenAccountSupport) -> Bool {
|
|
guard support.requiresManualCookieSource else { return true }
|
|
if !context.settings.tokenAccounts(for: context.provider).isEmpty { return true }
|
|
return context.settings.augmentCookieSource == .manual
|
|
}
|
|
|
|
@MainActor
|
|
func applyTokenAccountCookieSource(settings: SettingsStore) {
|
|
if settings.augmentCookieSource != .manual {
|
|
settings.augmentCookieSource = .manual
|
|
}
|
|
}
|
|
|
|
func makeRuntime() -> (any ProviderRuntime)? {
|
|
AugmentProviderRuntime()
|
|
}
|
|
|
|
@MainActor
|
|
func settingsPickers(context: ProviderSettingsContext) -> [ProviderSettingsPickerDescriptor] {
|
|
let cookieBinding = Binding(
|
|
get: { context.settings.augmentCookieSource.rawValue },
|
|
set: { raw in
|
|
context.settings.augmentCookieSource = ProviderCookieSource(rawValue: raw) ?? .auto
|
|
})
|
|
let cookieOptions = ProviderCookieSourceUI.options(
|
|
allowsOff: false,
|
|
keychainDisabled: context.settings.debugDisableKeychainAccess)
|
|
|
|
let cookieSubtitle: () -> String? = {
|
|
ProviderCookieSourceUI.subtitle(
|
|
source: context.settings.augmentCookieSource,
|
|
keychainDisabled: context.settings.debugDisableKeychainAccess,
|
|
auto: "Automatic imports browser cookies.",
|
|
manual: "Paste a Cookie header or cURL capture from the Augment dashboard.",
|
|
off: "Augment cookies are disabled.")
|
|
}
|
|
|
|
return [
|
|
ProviderSettingsPickerDescriptor(
|
|
id: "augment-cookie-source",
|
|
title: "Cookie source",
|
|
subtitle: "Automatic imports browser cookies.",
|
|
dynamicSubtitle: cookieSubtitle,
|
|
binding: cookieBinding,
|
|
options: cookieOptions,
|
|
isVisible: nil,
|
|
onChange: nil,
|
|
trailingText: {
|
|
ProviderCookieSourceUI.cachedTrailingText(provider: .augment)
|
|
}),
|
|
]
|
|
}
|
|
|
|
@MainActor
|
|
func settingsFields(context: ProviderSettingsContext) -> [ProviderSettingsFieldDescriptor] {
|
|
_ = context
|
|
return []
|
|
}
|
|
|
|
@MainActor
|
|
func appendActionMenuEntries(context: ProviderMenuActionContext, entries: inout [ProviderMenuEntry]) {
|
|
entries.append(.action(L("Refresh Session"), .refreshAugmentSession))
|
|
|
|
if let error = context.store.error(for: .augment) {
|
|
if error.contains("session has expired") ||
|
|
error.contains("No Augment session cookie found")
|
|
{
|
|
entries.append(.action(
|
|
L("Open Augment (Log Out & Back In)"),
|
|
.loginToProvider(url: "https://app.augmentcode.com")))
|
|
}
|
|
}
|
|
}
|
|
}
|