99 lines
3.7 KiB
Swift
99 lines
3.7 KiB
Swift
import AppKit
|
|
import CodexBarCore
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct MiMoProviderImplementation: ProviderImplementation {
|
|
let id: UsageProvider = .mimo
|
|
let supportsLoginFlow: Bool = true
|
|
|
|
@MainActor
|
|
func presentation(context _: ProviderPresentationContext) -> ProviderPresentation {
|
|
ProviderPresentation { _ in "web" }
|
|
}
|
|
|
|
@MainActor
|
|
func observeSettings(_ settings: SettingsStore) {
|
|
_ = settings.miMoCookieSource
|
|
_ = settings.miMoCookieHeader
|
|
}
|
|
|
|
@MainActor
|
|
func settingsSnapshot(context: ProviderSettingsSnapshotContext) -> ProviderSettingsSnapshotContribution? {
|
|
.mimo(context.settings.miMoSettingsSnapshot(tokenOverride: context.tokenOverride))
|
|
}
|
|
|
|
@MainActor
|
|
func settingsPickers(context: ProviderSettingsContext) -> [ProviderSettingsPickerDescriptor] {
|
|
let cookieBinding = Binding(
|
|
get: { context.settings.miMoCookieSource.rawValue },
|
|
set: { raw in
|
|
context.settings.miMoCookieSource = ProviderCookieSource(rawValue: raw) ?? .auto
|
|
})
|
|
let cookieOptions = ProviderCookieSourceUI.options(
|
|
allowsOff: false,
|
|
keychainDisabled: context.settings.debugDisableKeychainAccess)
|
|
let cookieSubtitle: () -> String? = {
|
|
ProviderCookieSourceUI.subtitle(
|
|
source: context.settings.miMoCookieSource,
|
|
keychainDisabled: context.settings.debugDisableKeychainAccess,
|
|
auto: "Automatic imports browser cookies from Xiaomi MiMo.",
|
|
manual: "Paste a Cookie header from platform.xiaomimimo.com.",
|
|
off: "Xiaomi MiMo cookies are disabled.")
|
|
}
|
|
|
|
return [
|
|
ProviderSettingsPickerDescriptor(
|
|
id: "mimo-cookie-source",
|
|
title: "Cookie source",
|
|
subtitle: "Automatic imports browser cookies from Xiaomi MiMo.",
|
|
dynamicSubtitle: cookieSubtitle,
|
|
binding: cookieBinding,
|
|
options: cookieOptions,
|
|
isVisible: nil,
|
|
onChange: nil,
|
|
trailingText: {
|
|
ProviderCookieSourceUI.cachedTrailingText(provider: .mimo)
|
|
}),
|
|
]
|
|
}
|
|
|
|
@MainActor
|
|
func settingsFields(context: ProviderSettingsContext) -> [ProviderSettingsFieldDescriptor] {
|
|
[
|
|
ProviderSettingsFieldDescriptor(
|
|
id: "mimo-cookie",
|
|
title: "",
|
|
subtitle: "",
|
|
kind: .secure,
|
|
placeholder: "Cookie: ...",
|
|
binding: context.stringBinding(\.miMoCookieHeader),
|
|
actions: [
|
|
ProviderSettingsActionDescriptor(
|
|
id: "mimo-open-balance",
|
|
title: "Open MiMo Balance",
|
|
style: .link,
|
|
isVisible: nil,
|
|
perform: {
|
|
guard let url = URL(string: "https://platform.xiaomimimo.com/#/console/balance") else {
|
|
return
|
|
}
|
|
NSWorkspace.shared.open(url)
|
|
}),
|
|
],
|
|
isVisible: { context.settings.miMoCookieSource == .manual },
|
|
onActivate: { context.settings.ensureMiMoCookieLoaded() }),
|
|
]
|
|
}
|
|
|
|
@MainActor
|
|
func runLoginFlow(context _: ProviderLoginContext) async -> Bool {
|
|
let loginURL = "https://platform.xiaomimimo.com/api/v1/genLoginUrl?currentPath=%2F%23%2Fconsole%2Fbalance"
|
|
guard let url = URL(string: loginURL) else {
|
|
return false
|
|
}
|
|
NSWorkspace.shared.open(url)
|
|
return false
|
|
}
|
|
}
|