44 lines
1.4 KiB
Swift
44 lines
1.4 KiB
Swift
import Foundation
|
|
|
|
public enum ClaudeAdminAPISettingsReader {
|
|
public static let adminAPIKeyEnvironmentKey = "ANTHROPIC_ADMIN_KEY"
|
|
public static let alternateAdminAPIKeyEnvironmentKey = "ANTHROPIC_ADMIN_API_KEY"
|
|
public static let apiKeyEnvironmentKeys = [
|
|
Self.adminAPIKeyEnvironmentKey,
|
|
Self.alternateAdminAPIKeyEnvironmentKey,
|
|
]
|
|
|
|
public static func apiKey(environment: [String: String] = ProcessInfo.processInfo.environment) -> String? {
|
|
for key in self.apiKeyEnvironmentKeys {
|
|
if let token = self.cleaned(environment[key]) { return token }
|
|
}
|
|
return nil
|
|
}
|
|
|
|
public static func cleaned(_ raw: String?) -> String? {
|
|
guard var value = raw?.trimmingCharacters(in: .whitespacesAndNewlines), !value.isEmpty else {
|
|
return nil
|
|
}
|
|
|
|
if (value.hasPrefix("\"") && value.hasSuffix("\"")) ||
|
|
(value.hasPrefix("'") && value.hasSuffix("'"))
|
|
{
|
|
value = String(value.dropFirst().dropLast())
|
|
}
|
|
|
|
value = value.trimmingCharacters(in: .whitespacesAndNewlines)
|
|
return value.isEmpty ? nil : value
|
|
}
|
|
}
|
|
|
|
public enum ClaudeAdminAPISettingsError: LocalizedError, Sendable {
|
|
case missingToken
|
|
|
|
public var errorDescription: String? {
|
|
switch self {
|
|
case .missingToken:
|
|
"Claude API usage needs an Anthropic Admin API key."
|
|
}
|
|
}
|
|
}
|