mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-18 00:23:25 -06:00
0dbdf994b3
* feat(macos): isolate named app profiles * refactor(macos): isolate profile launch ownership * fix(macos): avoid overlapping approvals socket access * fix(macos): declare profile defaults concurrency ownership * fix(macos): return profiled node launch arguments * chore(i18n): refresh macOS profile source inventory * fix(macos): gate profile startup before services * test(macos): evaluate profile state before assertions * fix(daemon): skip absent launchd deactivation * fix(macos): fail closed on profile port conflicts * chore(i18n): refresh profile conflict inventory * fix(macos): ignore non-gateway launch agent claims * test(macos): stabilize profile lifecycle timing * fix(macos): remove stale dashboard URL * chore(macos): refresh native source baseline
49 lines
1.5 KiB
Swift
49 lines
1.5 KiB
Swift
import Foundation
|
|
|
|
enum OpenClawEnv {
|
|
static func path(_ key: String) -> String? {
|
|
// Normalize env overrides once so UI + file IO stay consistent.
|
|
guard let raw = getenv(key) else { return nil }
|
|
let value = String(cString: raw).trimmingCharacters(in: .whitespacesAndNewlines)
|
|
guard !value.isEmpty
|
|
else {
|
|
return nil
|
|
}
|
|
return value
|
|
}
|
|
}
|
|
|
|
enum OpenClawPaths {
|
|
private static let configPathEnv = ["OPENCLAW_CONFIG_PATH"]
|
|
private static let stateDirEnv = ["OPENCLAW_STATE_DIR"]
|
|
|
|
static var stateDirURL: URL {
|
|
for key in self.stateDirEnv {
|
|
if let override = OpenClawEnv.path(key) {
|
|
return URL(fileURLWithPath: override, isDirectory: true)
|
|
}
|
|
}
|
|
return AppProfile.current.stateDirectoryURL()
|
|
}
|
|
|
|
private static func resolveConfigCandidate(in dir: URL) -> URL? {
|
|
let candidates = [
|
|
dir.appendingPathComponent("openclaw.json"),
|
|
]
|
|
return candidates.first(where: { FileManager().fileExists(atPath: $0.path) })
|
|
}
|
|
|
|
static var configURL: URL {
|
|
for key in self.configPathEnv {
|
|
if let override = OpenClawEnv.path(key) {
|
|
return URL(fileURLWithPath: override)
|
|
}
|
|
}
|
|
let stateDir = self.stateDirURL
|
|
if let existing = self.resolveConfigCandidate(in: stateDir) {
|
|
return existing
|
|
}
|
|
return stateDir.appendingPathComponent("openclaw.json")
|
|
}
|
|
}
|