项目文件夹

文件
wehub-resource-sync 426e9eeabd
Voice Workbench / headless workbench (mocked backends) (push) Has been cancelled
Voice Workbench / real acoustic lane (nightly, provisioned only) (push) Has been cancelled
ci / test (push) Has been cancelled
ci / lint-and-format (push) Has been cancelled
ci / build (push) Has been cancelled
ci / dev-startup (push) Has been cancelled
gitleaks / gitleaks (push) Has been cancelled
Markdown Links / Relative Markdown Links (push) Has been cancelled
Quality (Extended) / Homepage Build (PR smoke) (push) Has been cancelled
Quality (Extended) / Comment-only diff guard (push) Has been cancelled
Quality (Extended) / Format + Type Safety Ratchet (push) Has been cancelled
Quality (Extended) / Develop Gate (secret scan + UI determinism) (push) Has been cancelled
Quality (Extended) / Develop Gate (lint) (push) Has been cancelled
Chat shell gestures / Chat shell gesture + parity e2e (push) Has been cancelled
Cloud Gateway Discord / Test (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx @biomejs/biome check packages/lifeops-bench/src, benchmark-lint) (push) Has been cancelled
Benchmark Bridge Tests / benchmark (bunx vitest run --config packages/lifeops-bench/vitest.config.ts --root packages/lifeops-bench --passWithNoTests, benchmark-tests) (push) Has been cancelled
Build Agent Image / build-and-push (push) Has been cancelled
Dev Smoke / bun run dev onboarding chat (push) Has been cancelled
Dev Smoke / Vite HMR dependency-level smoke (push) Has been cancelled
Electrobun Submodule Guard / electrobun gitlink is fetchable (push) Has been cancelled
Publish @elizaos/example-code / check_npm (push) Has been cancelled
Publish @elizaos/example-code / publish_npm (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / verify_version (push) Has been cancelled
Publish @elizaos/plugin-elizacloud / publish_npm (push) Has been cancelled
Sandbox Live Smoke / Sandbox live smoke (push) Has been cancelled
Snap Build & Test / Build Snap (amd64) (push) Has been cancelled
Snap Build & Test / Build Snap (arm64) (push) Has been cancelled
Test Packaging / elizaos CLI global-install smoke (node + bun) (push) Has been cancelled
Cloud Gateway Webhook / Test (push) Has been cancelled
Cloud Tests / lint-and-types (push) Has been cancelled
Cloud Tests / unit-tests (push) Has been cancelled
Cloud Tests / integration-tests (push) Has been cancelled
Cloud Tests / e2e-tests (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Apps Worker (Product 2) / Determine environment (push) Has been cancelled
Deploy Apps Worker (Product 2) / Deploy apps worker to apps-control host (${{ needs.determine-env.outputs.environment }}) (push) Has been cancelled
Deploy Eliza Provisioning Worker / Determine environment (push) Has been cancelled
Deploy Eliza Provisioning Worker / Deploy worker to Hetzner host (${{ needs.determine-env.outputs.environment }} @ ${{ needs.determine-env.outputs.deployment_sha }}) (push) Has been cancelled
Dev Smoke / Classify changed paths (push) Has been cancelled
supply-chain / sbom (push) Has been cancelled
supply-chain / vulnerability-scan (push) Has been cancelled
Build, Push & Deploy to Phala Cloud / build-and-push (push) Has been cancelled
Test Packaging / Validate Packaging Configs (push) Has been cancelled
Test Packaging / Build & Test PyPI Package (push) Has been cancelled
Test Packaging / PyPI on Python ${{ matrix.python }} (push) Has been cancelled
Test Packaging / Pack & Test JS Tarballs (push) Has been cancelled
UI Fixture E2E / ui-fixture-e2e (push) Has been cancelled
UI Fixture E2E / fixture-e2e (push) Has been cancelled
UI Story Gate / story-gate (push) Has been cancelled
vault-ci / test (macos-latest) (push) Has been cancelled
vault-ci / test (ubuntu-latest) (push) Has been cancelled
vault-ci / test (windows-latest) (push) Has been cancelled
vault-ci / app-core wiring tests (push) Has been cancelled
verify-patches / verify patches/CHECKSUMS.sha256 (push) Has been cancelled
Voice Benchmark Smoke / voice-emotion fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voiceagentbench fixture smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench-quality unit smoke (push) Has been cancelled
Voice Benchmark Smoke / voicebench TypeScript unit (no audio) (push) Has been cancelled
Voice Benchmark Smoke / voice bench smoke summary (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/app-core test bun run --cwd packages/elizaos test bun run --cwd packages/cloud/shared test], app-and-cli) (push) Has been cancelled
Windows CI / windows ([bun run --cwd packages/scenario-runner test bun run --cwd packages/vault test bun run --cwd packages/security test bun run --cwd plugins/plugin-coding-tools test], framework-packages) (push) Has been cancelled
Windows CI / windows ([bun run --cwd plugins/plugin-elizacloud test bun run --cwd plugins/plugin-discord test bun run --cwd plugins/plugin-anthropic test bun run --cwd plugins/plugin-openai test bun run --cwd plugins/plugin-app-control test bun run --cwd plugins/pl… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run build --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/agent --concurrency=4 node packages/scripts/run-bash-linux-only.mjs scripts/verify-riscv64-buildpaths.sh node packages/scripts/run… (push) Has been cancelled
Windows CI / windows ([node packages/scripts/run-turbo.mjs run typecheck --filter=@elizaos/core --filter=@elizaos/shared --filter=@elizaos/cloud-shared --concurrency=4 bun run --cwd packages/core test bun run --cwd packages/shared test], core-runtime, 75) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:43:05 +08:00

249 行
7.7 KiB
Swift

import Foundation
import UserNotifications
// macOS native alarm helper.
//
// Reads one JSON request from stdin and writes exactly one JSON response to
// stdout before exiting. All diagnostic messages go to stderr so the parent
// process can cleanly parse stdout as JSON.
//
// Request shape:
// { "action": "schedule" | "cancel" | "list" | "permission",
// "id": "...", // required for schedule/cancel
// "timeIso": "...", // required for schedule (ISO-8601)
// "title": "...", // required for schedule
// "body": "...", // optional for schedule
// "sound": "..." } // optional for schedule ("default" or named)
//
// Response shape:
// { "success": true, ... fields per action ... }
// { "success": false, "error": "reason" }
struct Request: Decodable {
let action: String
let id: String?
let timeIso: String?
let title: String?
let body: String?
let sound: String?
}
enum HelperError: Error {
case invalidRequest(String)
case permissionDenied(String)
case scheduleFailed(String)
}
func writeJSON(_ value: [String: Any]) {
let data = try! JSONSerialization.data(withJSONObject: value, options: [.sortedKeys])
FileHandle.standardOutput.write(data)
FileHandle.standardOutput.write("\n".data(using: .utf8)!)
}
func writeError(_ message: String) {
writeJSON(["success": false, "error": message])
}
func log(_ message: String) {
FileHandle.standardError.write("[macosalarm-helper] \(message)\n".data(using: .utf8)!)
}
func readRequest() throws -> Request {
let data = FileHandle.standardInput.readDataToEndOfFile()
guard !data.isEmpty else {
throw HelperError.invalidRequest("empty stdin")
}
let decoder = JSONDecoder()
do {
return try decoder.decode(Request.self, from: data)
} catch {
throw HelperError.invalidRequest("could not decode request json: \(error.localizedDescription)")
}
}
// UNUserNotificationCenter APIs are mostly async with completion handlers.
// We drive them synchronously from a CLI using DispatchSemaphore.
func ensureAuthorization() throws {
let center = UNUserNotificationCenter.current()
let sem = DispatchSemaphore(value: 0)
var authorized = false
var errorMessage: String?
center.getNotificationSettings { settings in
switch settings.authorizationStatus {
case .authorized, .provisional:
authorized = true
sem.signal()
case .notDetermined:
center.requestAuthorization(options: [.alert, .sound]) { granted, err in
authorized = granted
if let err = err {
errorMessage = err.localizedDescription
}
sem.signal()
}
case .denied:
errorMessage = "notification permission denied by user"
sem.signal()
@unknown default:
errorMessage = "unknown notification authorization status"
sem.signal()
}
}
sem.wait()
if !authorized {
throw HelperError.permissionDenied(errorMessage ?? "notification permission not granted")
}
}
func schedule(_ req: Request) throws -> [String: Any] {
guard let id = req.id, !id.isEmpty else {
throw HelperError.invalidRequest("id is required")
}
guard let title = req.title, !title.isEmpty else {
throw HelperError.invalidRequest("title is required")
}
guard let timeIso = req.timeIso else {
throw HelperError.invalidRequest("timeIso is required")
}
let iso = ISO8601DateFormatter()
iso.formatOptions = [.withInternetDateTime, .withFractionalSeconds]
var when = iso.date(from: timeIso)
if when == nil {
iso.formatOptions = [.withInternetDateTime]
when = iso.date(from: timeIso)
}
guard let fireDate = when else {
throw HelperError.invalidRequest("timeIso is not a valid ISO-8601 timestamp")
}
try ensureAuthorization()
let content = UNMutableNotificationContent()
content.title = title
if let body = req.body {
content.body = body
}
let soundName = req.sound ?? "default"
if soundName == "default" {
content.sound = .defaultCritical
} else {
content.sound = UNNotificationSound(named: UNNotificationSoundName(rawValue: soundName))
}
let comps = Calendar.current.dateComponents(
[.year, .month, .day, .hour, .minute, .second],
from: fireDate
)
let trigger = UNCalendarNotificationTrigger(dateMatching: comps, repeats: false)
let request = UNNotificationRequest(identifier: id, content: content, trigger: trigger)
let center = UNUserNotificationCenter.current()
let sem = DispatchSemaphore(value: 0)
var addError: String?
center.add(request) { err in
if let err = err {
addError = err.localizedDescription
}
sem.signal()
}
sem.wait()
if let err = addError {
throw HelperError.scheduleFailed(err)
}
return [
"success": true,
"id": id,
"fireAt": ISO8601DateFormatter().string(from: fireDate),
]
}
func cancel(_ req: Request) throws -> [String: Any] {
guard let id = req.id, !id.isEmpty else {
throw HelperError.invalidRequest("id is required")
}
UNUserNotificationCenter.current().removePendingNotificationRequests(withIdentifiers: [id])
return ["success": true, "id": id, "cancelled": true]
}
func list() -> [String: Any] {
let center = UNUserNotificationCenter.current()
let sem = DispatchSemaphore(value: 0)
var items: [[String: Any]] = []
center.getPendingNotificationRequests { requests in
for req in requests {
var entry: [String: Any] = [
"id": req.identifier,
"title": req.content.title,
"body": req.content.body,
]
if let cal = req.trigger as? UNCalendarNotificationTrigger,
let next = cal.nextTriggerDate() {
entry["fireAt"] = ISO8601DateFormatter().string(from: next)
}
items.append(entry)
}
sem.signal()
}
sem.wait()
return ["success": true, "alarms": items]
}
func permission() -> [String: Any] {
let center = UNUserNotificationCenter.current()
let sem = DispatchSemaphore(value: 0)
var status = "unknown"
center.getNotificationSettings { settings in
switch settings.authorizationStatus {
case .authorized: status = "authorized"
case .provisional: status = "provisional"
case .denied: status = "denied"
case .notDetermined: status = "not-determined"
case .ephemeral: status = "ephemeral"
@unknown default: status = "unknown"
}
sem.signal()
}
sem.wait()
return ["success": true, "status": status]
}
do {
let req = try readRequest()
switch req.action {
case "schedule":
writeJSON(try schedule(req))
case "cancel":
writeJSON(try cancel(req))
case "list":
writeJSON(list())
case "permission":
writeJSON(permission())
default:
writeError("unknown action: \(req.action)")
exit(2)
}
} catch HelperError.invalidRequest(let msg) {
log("invalid request: \(msg)")
writeError("invalid-request: \(msg)")
exit(2)
} catch HelperError.permissionDenied(let msg) {
log("permission denied: \(msg)")
writeError("permission-denied: \(msg)")
exit(3)
} catch HelperError.scheduleFailed(let msg) {
log("schedule failed: \(msg)")
writeError("schedule-failed: \(msg)")
exit(4)
} catch {
log("unexpected error: \(error.localizedDescription)")
writeError("unexpected: \(error.localizedDescription)")
exit(1)
}