import Alamofire import CoreLocation import Foundation import HAKit import Intents import ObjectMapper import PromiseKit import RealmSwift import UIKit import Version #if os(iOS) import Reachability #endif public class HomeAssistantAPI { public enum APIError: Error, Equatable { case managerNotAvailable case invalidResponse case cantBuildURL case notConfigured case updateNotPossible case mobileAppComponentNotLoaded case mustUpgradeHomeAssistant(current: Version, minimum: Version) case noAPIAvailable case unknown } public static let didConnectNotification = Notification.Name(rawValue: "HomeAssistantAPIConnected") public private(set) var manager: Alamofire.Session! public static let unauthenticatedManager: Alamofire.Session = configureSessionManager() public let tokenManager: TokenManager public var server: Server public internal(set) var connection: HAConnection public static var clientVersionDescription: String { "\(AppConstants.version) (\(AppConstants.build))" } public static var userAgent: String { // This matches Alamofire's generated string, for consistency with the past let bundle = AppConstants.BundleID let appVersion = AppConstants.version let appBuild = AppConstants.build let osNameVersion: String = { let version = ProcessInfo.processInfo.operatingSystemVersion let versionString = "\(version.majorVersion).\(version.minorVersion).\(version.patchVersion)" let notCircularReferenceWrapper = DeviceWrapper() let osName = notCircularReferenceWrapper.systemName() return "\(osName) \(versionString)" }() return "Home Assistant/\(appVersion) (\(bundle); build:\(appBuild); \(osNameVersion))" } // "Mobile/BUILD_NUMBER" is what CodeMirror sniffs for to decide iOS or not; other things likely look for Safari public static var applicationNameForUserAgent: String { HomeAssistantAPI.userAgent + " Mobile/HomeAssistant, like Safari" } /// Initialize an API object with an authenticated tokenManager. public init(server: Server, urlConfig: URLSessionConfiguration = .default) { self.server = server let tokenManager = TokenManager(server: server) self.tokenManager = tokenManager self.connection = HAKit.connection(configuration: .init( connectionInfo: { do { if let activeURL = server.info.connection.activeURL() { return try .init( url: activeURL, userAgent: HomeAssistantAPI.userAgent, evaluateCertificate: { secTrust, completion in completion( Swift.Result { try server.info.connection.securityExceptions.evaluate(secTrust) } ) } ) } else { Current.clientEventStore.addEvent(.init( text: "No active URL available to interact with API, please check if you have internal or external URL available, for internal URL you need to specify your network SSID otherwise for security reasons it won't be available.", type: .networkRequest )) Current.Log.error("activeURL was not available when HAAPI called initializer") return nil } } catch { Current.Log.error("couldn't create connection info: \(error)") return nil } }, fetchAuthToken: { completion in tokenManager.bearerToken.done { completion(.success($0.0)) }.catch { completion(.failure($0)) } } )) let manager = HomeAssistantAPI.configureSessionManager( urlConfig: urlConfig, interceptor: newInterceptor(), trustManager: newServerTrustManager() ) self.manager = manager removeOldDownloadDirectory() Current.sensors.register(observer: self) } convenience init?() { if let server = Current.servers.all.first { self.init(server: server, urlConfig: .default) } else { return nil } } private static func configureSessionManager( urlConfig: URLSessionConfiguration = .default, delegate: SessionDelegate = SessionDelegate(), interceptor: Interceptor = .init(), trustManager: ServerTrustManager? = nil ) -> Session { let configuration = urlConfig var headers = configuration.httpAdditionalHeaders ?? [:] headers["User-Agent"] = Self.userAgent configuration.httpAdditionalHeaders = headers return Alamofire.Session( configuration: configuration, delegate: delegate, interceptor: interceptor, serverTrustManager: trustManager ) } private func newInterceptor() -> Interceptor { .init( adapters: [ ServerRequestAdapter(server: server), ], retriers: [ ], interceptors: [ tokenManager.authenticationInterceptor, RetryPolicy(), ] ) } private func newServerTrustManager() -> ServerTrustManager { CustomServerTrustManager(server: server) } public func VideoStreamer() -> MJPEGStreamer { MJPEGStreamer(manager: HomeAssistantAPI.configureSessionManager( delegate: MJPEGStreamerSessionDelegate(), interceptor: newInterceptor(), trustManager: newServerTrustManager() )) } public enum ConnectReason { case cold case warm case periodic case background var updateSensorTrigger: LocationUpdateTrigger { switch self { case .cold, .warm, .background: return .Launch case .periodic: return .Periodic } } } public func Connect(reason: ConnectReason) -> Promise { Current.Log.info("running connect for \(reason)") // websocket connection.connect() return firstly { () -> Promise in guard !Current.isAppExtension else { Current.Log.info("skipping registration changes in extension") return Promise.value(()) } return updateRegistration().asVoid().recover { [self] error -> Promise in switch error as? WebhookError { case .unmappableValue, .unexpectedType, .unacceptableStatusCode(404), .unacceptableStatusCode(410): // cloudhook will send a 404 for deleted // ha directly will send a 200 with an empty body for deleted let message = "Integration is missing; registering." Current.clientEventStore .addEvent(ClientEvent(text: message, type: .networkRequest, payload: [ "error": String(describing: error), ])) return register() case .unregisteredIdentifier, .unacceptableStatusCode, .replaced, .none: // not a WebhookError, or not one we think requires reintegration Current.Log.info("not re-registering, but failed to update registration: \(error)") throw error } } }.then { [self] () -> Promise in var promises: [Promise] = [] if !Current.isAppExtension { promises.append(getConfig()) promises.append(Current.modelManager.fetch(apis: [self])) promises.append(updateComplications(passively: false).asVoid()) } promises.append(UpdateSensors(trigger: reason.updateSensorTrigger).asVoid()) return when(fulfilled: promises).asVoid() }.get { _ in NotificationCenter.default.post( name: Self.didConnectNotification, object: nil, userInfo: nil ) } } public func CreateEvent(eventType: String, eventData: [String: Any]) -> Promise { let intent = FireEventIntent(eventName: eventType, payload: eventData) INInteraction(intent: intent, response: nil).donate(completion: nil) return Current.webhooks.sendEphemeral( server: server, request: .init(type: "fire_event", data: [ "event_type": eventType, "event_data": eventData, ]) ) } public func temporaryDownloadFileURL(appropriateFor downloadingURL: URL? = nil) -> URL? { let url = URL(fileURLWithPath: NSTemporaryDirectory(), isDirectory: true) // using a random file name so we always have one, see https://github.com/home-assistant/iOS/issues/1068 .appendingPathComponent(UUID().uuidString, isDirectory: false) if let downloadingURL { return url.appendingPathExtension(downloadingURL.pathExtension) } else { return url } } private func removeOldDownloadDirectory() { let fileManager = FileManager.default if let downloadDataDir = fileManager.containerURL( forSecurityApplicationGroupIdentifier: AppConstants.AppGroupID )?.appendingPathComponent("downloadedData", isDirectory: true) { try? fileManager.removeItem(at: downloadDataDir) } } public func DownloadDataAt(url: URL, needsAuth: Bool) -> Promise { Promise { seal in var finalURL = url let dataManager: Alamofire.Session = needsAuth ? self.manager : Self.unauthenticatedManager if needsAuth { guard let activeURL = server.info.connection.activeURL() else { seal.reject(ServerConnectionError.noActiveURL(server.info.name)) return } if !url.absoluteString.hasPrefix(activeURL.absoluteString) { Current.Log.verbose("URL does not contain base URL, prepending base URL to \(url.absoluteString)") finalURL = activeURL.appendingPathComponent(url.absoluteString) } Current.Log.verbose("Data download needs auth!") } guard let downloadPath = temporaryDownloadFileURL(appropriateFor: finalURL) else { Current.Log.error("Unable to get download path!") seal.reject(APIError.cantBuildURL) return } let destination: DownloadRequest.Destination = { _, _ in (downloadPath, [.removePreviousFile, .createIntermediateDirectories]) } dataManager.download(finalURL, to: destination).validate().responseData { downloadResponse in switch downloadResponse.result { case .success: seal.fulfill(downloadResponse.fileURL!) case let .failure(error): seal.reject(error) } } } } public func getConfig() -> Promise { let promise: Promise = Current.webhooks.sendEphemeral( server: server, request: .init(type: "get_config", data: [:]) ) return promise.done { [self] config in server.update { serverInfo in serverInfo.connection.cloudhookURL = config.CloudhookURL serverInfo.connection.set(address: config.RemoteUIURL, for: .remoteUI) serverInfo.remoteName = config.LocationName ?? ServerInfo.defaultName serverInfo.hassDeviceId = config.hassDeviceId if let version = try? Version(hassVersion: config.Version) { serverInfo.version = version } } Current.crashReporter.setUserProperty(value: config.Version, name: "HA_Version") } } public func GetLogbook() -> Promise<[LogbookEntry]> { request(path: "logbook", callingFunctionName: "\(#function)") } public func CallService( domain: String, service: String, serviceData: [String: Any], triggerSource: AppTriggerSource, shouldLog: Bool = true ) -> Promise { let intent = CallServiceIntent(domain: domain, service: service, payload: serviceData) INInteraction(intent: intent, response: nil).donate(completion: nil) return Current.webhooks.send( identifier: .serviceCall, server: server, request: .init(type: "call_service", data: [ "domain": domain, "service": service, "service_data": serviceData, ]) ) } public func turnOnScript(scriptEntityId: String, triggerSource: AppTriggerSource) -> Promise { CallService(domain: Domain.script.rawValue, service: Service.turnOn.rawValue, serviceData: [ "entity_id": scriptEntityId, ], triggerSource: triggerSource) } public func getCameraSnapshot(cameraEntityID: String) -> Promise { Promise { seal in guard let queryUrl = server.info.connection.activeAPIURL()? .appendingPathComponent("camera_proxy/\(cameraEntityID)") else { seal.reject(ServerConnectionError.noActiveURL(server.info.name)) return } _ = manager.request(queryUrl) .validate() .responseData { response in switch response.result { case let .success(data): if let image = UIImage(data: data) { seal.fulfill(image) } case let .failure(error): Current.Log.error("Error when attemping to GetCameraImage(): \(error)") seal.reject(error) } } } } public func register() -> Promise { request( path: "mobile_app/registrations", callingFunctionName: "\(#function)", method: .post, parameters: buildMobileAppRegistration(), encoding: JSONEncoding.default ).recover { error -> Promise in if case AFError.responseValidationFailed(reason: .unacceptableStatusCode(code: 404)) = error { throw APIError.mobileAppComponentNotLoaded } throw error }.done { [server] (resp: MobileAppRegistrationResponse) in Current.Log.verbose("Registration response \(resp)") server.update { server in server.connection.set(address: resp.RemoteUIURL, for: .remoteUI) server.connection.cloudhookURL = resp.CloudhookURL server.connection.webhookID = resp.WebhookID server.connection.webhookSecret = resp.WebhookSecret } } } public func updateRegistration() -> Promise { Current.webhooks.sendEphemeral( server: server, request: .init( type: "update_registration", data: buildMobileAppUpdateRegistration() ) ) } public func GetMobileAppConfig() -> Promise { firstly { () -> Promise in if server.info.version < .actionSyncing { let old: Promise = requestImmutable( path: "ios/push", callingFunctionName: "\(#function)" ) return old.map { MobileAppConfig(push: $0) } } else { return requestImmutable(path: "ios/config", callingFunctionName: "\(#function)") } }.recover { error -> Promise in if case AFError.responseValidationFailed(reason: .unacceptableStatusCode(code: 404)) = error { Current.Log.info("ios component is not loaded; pretending there's no push config") return .value(.init()) } throw error } } public func StreamCamera(entityId: String) -> Promise { Current.webhooks.sendEphemeral( server: server, request: .init( type: "stream_camera", data: ["camera_entity_id": entityId] ) ) } private func buildMobileAppRegistration() -> [String: Any] { let ident = mobileAppRegistrationRequestModel() var json = Mapper().toJSON(ident) if server.info.version < .canSendDeviceID { // device_id was added in 0.104, but prior it would error for unknown keys json.removeValue(forKey: "device_id") } return json } private func mobileAppRegistrationRequestModel() -> MobileAppRegistrationRequest { with(MobileAppRegistrationRequest()) { if let pushID = Current.settingsStore.pushID { $0.AppData = [ "push_url": "https://mobile-apps.home-assistant.io/api/sendPushNotification", "push_token": pushID, ] } $0.AppIdentifier = AppConstants.BundleID $0.AppName = Bundle.main.infoDictionary?["CFBundleDisplayName"] as? String $0.AppVersion = HomeAssistantAPI.clientVersionDescription $0.DeviceID = Current.settingsStore.integrationDeviceID $0.DeviceName = server.info.setting(for: .overrideDeviceName) ?? Current.device.deviceName() $0.Manufacturer = "Apple" $0.Model = Current.device.systemModel() $0.OSName = Current.device.systemName() $0.OSVersion = Current.device.systemVersion() $0.SupportsEncryption = true } } private func buildMobileAppUpdateRegistration() -> [String: Any] { let registerRequest = mobileAppRegistrationRequestModel() let ident = with(MobileAppUpdateRegistrationRequest()) { $0.AppData = registerRequest.AppData $0.AppVersion = registerRequest.AppVersion $0.DeviceName = registerRequest.DeviceName $0.Manufacturer = registerRequest.Manufacturer $0.Model = registerRequest.Model $0.OSVersion = registerRequest.OSVersion } return Mapper().toJSON(ident) } public func SubmitLocation( updateType: LocationUpdateTrigger, location rawLocation: CLLocation?, zone: RLMZone? ) -> Promise { let update: WebhookUpdateLocation let location: CLLocation? let localMetadata = WebhookResponseLocation.localMetdata( trigger: updateType, zone: zone ) switch server.info.setting(for: .locationPrivacy) { case .exact: update = .init(trigger: updateType, location: rawLocation, zone: zone) location = rawLocation case .zoneOnly: if updateType == .BeaconRegionEnter { update = .init(trigger: updateType, usingNameOf: zone) } else if let rawLocation { // note this is a different zone than the event - e.g. the zone may be the one we are exiting update = .init(trigger: updateType, usingNameOf: RLMZone.zone(of: rawLocation, in: server)) } else { update = .init(trigger: updateType) } location = nil case .never: update = .init(trigger: updateType) location = nil } return firstly { let realm = Current.realm() return when(resolved: realm.reentrantWrite { let accuracyAuthorization: CLAccuracyAuthorization = CLLocationManager().accuracyAuthorization realm.add(LocationHistoryEntry( updateType: updateType, location: location, zone: zone, accuracyAuthorization: accuracyAuthorization, payload: update.toJSONString(prettyPrint: false) ?? "(unknown)" )) }).asVoid() }.map { () -> [String: Any] in let payloadDict = Mapper().toJSON(update) Current.Log.info("Location update payload: \(payloadDict)") return payloadDict }.then { [self] payload in when( resolved: UpdateSensors(trigger: updateType, location: location).asVoid(), Current.webhooks.send( identifier: .location, server: server, request: .init( type: "update_location", data: payload, localMetadata: localMetadata ) ) ) }.asVoid() } public var sharedEventDeviceInfo: [String: String] { [ "sourceDevicePermanentID": AppConstants.PermanentID, "sourceDeviceName": server.info.setting(for: .overrideDeviceName) ?? Current.device.deviceName(), "sourceDeviceID": Current.settingsStore.deviceID, ] } public func legacyNotificationActionEvent( identifier: String, category: String?, actionData: Any?, textInput: String? ) -> (eventType: String, eventData: [String: Any]) { var eventData: [String: Any] = sharedEventDeviceInfo eventData["actionName"] = identifier if let category { eventData["categoryName"] = category } if let actionData { eventData["action_data"] = actionData } if let textInput { eventData["response_info"] = textInput eventData["textInput"] = textInput } return (eventType: "ios.notification_action_fired", eventData: eventData) } public func mobileAppNotificationActionEvent( identifier: String, category: String?, actionData: Any?, textInput: String? ) -> (eventType: String, eventData: [String: Any]) { var eventData = [String: Any]() eventData["action"] = identifier if let actionData { eventData["action_data"] = actionData } if let textInput { eventData["reply_text"] = textInput } return (eventType: "mobile_app_notification_action", eventData: eventData) } public func actionEvent( actionID: String, actionName: String, source: AppTriggerSource ) -> (eventType: String, eventData: [String: String]) { var eventData = sharedEventDeviceInfo eventData["actionName"] = actionName eventData["actionID"] = actionID eventData["triggerSource"] = source.description return (eventType: "ios.action_fired", eventData: eventData) } public func actionScene( actionID: String, source: AppTriggerSource ) -> (serviceDomain: String, serviceName: String, serviceData: [String: String]) { ( serviceDomain: Domain.scene.rawValue, serviceName: Service.turnOn.rawValue, serviceData: ["entity_id": actionID] ) } public func tagEvent( tagPath: String ) -> (eventType: String, eventData: [String: String]) { var eventData: [String: String] = sharedEventDeviceInfo eventData["tag_id"] = tagPath if server.info.version < .tagWebhookAvailable { eventData["device_id"] = Current.settingsStore.integrationDeviceID } return (eventType: "tag_scanned", eventData: eventData) } @available(watchOS, unavailable) public func zoneStateEvent( region: CLRegion, state: CLRegionState, zone: RLMZone ) -> (eventType: String, eventData: [String: Any]) { var eventData: [String: Any] = sharedEventDeviceInfo eventData["zone"] = zone.entityId if region.identifier.contains("@"), let subId = region.identifier.split(separator: "@").last { eventData["multi_region_zone_id"] = String(subId) } if state == .inside { return (eventType: "ios.zone_entered", eventData: eventData) } else { return (eventType: "ios.zone_exited", eventData: eventData) } } public func shareEvent( entered: String, url: URL?, text: String? ) -> (eventType: String, eventData: [String: String]) { var eventData = sharedEventDeviceInfo eventData["entered"] = entered eventData["url"] = url?.absoluteString eventData["text"] = text return ( eventType: "mobile_app.share", eventData: eventData ) } public struct PushActionInfo: ImmutableMappable { public var identifier: String public var category: String? public var textInput: String? public var actionData: Any? public init?(response: UNNotificationResponse) { guard response.actionIdentifier != UNNotificationDefaultActionIdentifier else { return nil } self.identifier = UNNotificationContent.uncombinedAction(from: response.actionIdentifier) self.category = response.notification.request.content.categoryIdentifier self.actionData = response.notification.request.content.userInfo["homeassistant"] self.textInput = (response as? UNTextInputNotificationResponse)?.userText } public init(map: ObjectMapper.Map) throws { self.identifier = try map.value("identifier") self.category = try? map.value("category") self.textInput = try? map.value("textInput") self.actionData = try? map.value("actionData") } public func mapping(map: ObjectMapper.Map) { identifier >>> map["identifier"] category >>> map["category"] textInput >>> map["textInput"] actionData >>> map["actionData"] } } public func handlePushAction(for info: PushActionInfo) -> Promise { let actions = [ legacyNotificationActionEvent( identifier: info.identifier, category: info.category, actionData: info.actionData, textInput: info.textInput ), mobileAppNotificationActionEvent( identifier: info.identifier, category: info.category, actionData: info.actionData, textInput: info.textInput ), ] return when(resolved: actions.map { action -> Promise in Current.Log.verbose("Sending action: \(action.eventType) payload: \(action.eventData)") return CreateEvent(eventType: action.eventType, eventData: action.eventData) }).asVoid() } public func HandleAction(actionID: String, source: AppTriggerSource) -> Promise { guard let action = Current.realm().object(ofType: Action.self, forPrimaryKey: actionID) else { Current.Log.error("couldn't find action with id \(actionID)") return .init(error: HomeAssistantAPI.APIError.cantBuildURL) } let intent = PerformActionIntent(action: action) INInteraction(intent: intent, response: nil).donate(completion: nil) switch action.triggerType { case .event: let actionInfo = actionEvent(actionID: action.ID, actionName: action.Name, source: source) Current.Log.verbose("Sending action: \(actionInfo.eventType) payload: \(actionInfo.eventData)") return CreateEvent( eventType: actionInfo.eventType, eventData: actionInfo.eventData ) case .scene: let serviceInfo = actionScene(actionID: action.ID, source: source) Current.Log.verbose("activating scene: \(action.ID)") return CallService( domain: serviceInfo.serviceDomain, service: serviceInfo.serviceName, serviceData: serviceInfo.serviceData, triggerSource: source ) } } public func executeActionForDomainType(domain: Domain, entityId: String, state: String) -> Promise { var request: HATypedRequest? switch domain { case .button, .inputButton: request = .pressButton(domain: domain, entityId: entityId) case .cover, .inputBoolean, .light, .switch, .fan: request = .toggleDomain(domain: domain, entityId: entityId) case .scene: request = .applyScene(entityId: entityId) case .script: request = .runScript(entityId: entityId) case .lock: guard let state = Domain.State(rawValue: state) else { return .value } switch state { case .unlocking, .unlocked, .opening: request = .lockLock(entityId: entityId) case .locked, .locking: request = .unlockLock(entityId: entityId) default: break } case .sensor, .binarySensor, .zone, .person, .camera: break case .automation: request = .trigger(entityId: entityId) } if let request { return connection.send(request).promise .map { _ in () } } else { return .value } } public func registerSensors() -> Promise { firstly { Current.sensors.sensors(reason: .registration, server: server).map(\.sensors) }.get { sensors in Current.Log.verbose("Registering sensors \(sensors.map(\.UniqueID))") }.thenMap { [server] sensor in Current.webhooks.send(server: server, request: .init(type: "register_sensor", data: sensor.toJSON())) }.tap { result in Current.Log.info("finished registering sensors: \(result)") }.asVoid() } public func UpdateSensors( trigger: LocationUpdateTrigger, location: CLLocation? = nil ) -> Promise { UpdateSensors(trigger: trigger, limitedTo: nil, location: location) } func UpdateSensors( trigger: LocationUpdateTrigger, limitedTo: [SensorProvider.Type]?, location: CLLocation? = nil ) -> Promise { firstly { Current.sensors.sensors( reason: .trigger(trigger.rawValue), limitedTo: limitedTo, location: location, server: server ) }.map { sensorResponse -> (SensorResponse, [[String: Any]]) in Current.Log.info("updating sensors \(sensorResponse.sensors.map { $0.UniqueID ?? "unknown" })") let mapper = Mapper( context: WebhookSensorContext(update: true), shouldIncludeNilValues: false ) return (sensorResponse, mapper.toJSONArray(sensorResponse.sensors)) }.then { [server] _, payload -> Promise in if payload.isEmpty { Current.Log.info("skipping network request for unchanged sensor update") return .value(()) } else { return Current.webhooks.send( identifier: .updateSensors, server: server, request: .init(type: "update_sensor_states", data: payload) ) } } } #if os(iOS) public enum ManualUpdateType { case userRequested case appOpened case programmatic var allowsTemporaryAccess: Bool { switch self { case .userRequested, .appOpened: return true case .programmatic: return false } } } public static func manuallyUpdate( applicationState: UIApplication.State, type: ManualUpdateType ) -> Promise { Current.backgroundTask(withName: BackgroundTask.manualLocationUpdate.rawValue) { _ in firstly { () -> Guarantee in Guarantee { seal in let locationManager = CLLocationManager() guard locationManager.accuracyAuthorization != .fullAccuracy else { // already have full accuracy, don't need to request return seal(()) } guard type.allowsTemporaryAccess else { return seal(()) } Current.Log.info("requesting full accuracy for manual update") locationManager.requestTemporaryFullAccuracyAuthorization( withPurposeKey: "TemporaryFullAccuracyReasonManualUpdate" ) { error in Current.Log.info("got temporary full accuracy result: \(String(describing: error))") withExtendedLifetime(locationManager) { seal(()) } } } }.then { () -> Promise in func updateWithoutLocation() -> Promise { when(fulfilled: Current.apis.map { $0.UpdateSensors(trigger: .Manual) }) } if Current.settingsStore.isLocationEnabled(for: applicationState) { return firstly { Current.location.oneShotLocation(.Manual, nil) }.then { location in when(fulfilled: Current.apis.map { api in api.SubmitLocation(updateType: .Manual, location: location, zone: nil) }).asVoid() }.recover { error -> Promise in if error is CLError || error is OneShotError { Current.Log.info("couldn't get location, sending remaining sensor data") return updateWithoutLocation() } else { throw error } } } else { return updateWithoutLocation() } } } } #endif public func profilePictureURL(completion: @escaping (URL?) -> Void) { connection.caches.user.once { [weak self] user in guard let self else { Current.Log.error("Failed to retrieve profile picture URL: self is nil") completion(nil) return } connection.caches.states().once { [weak self] states in let states = states.all guard let person = states.first(where: { $0.attributes["user_id"] as? String == user.id }) else { Current.Log.error("Profile picture: No person found for user \(user.id)") completion(nil) return } guard let path = person.attributes["entity_picture"] as? String else { Current.Log.error("Profile picture: Missing URL for user entity picture, user id \(user.id)") completion(nil) return } guard let url = self?.server.info.connection.activeURL()?.appendingPathComponent(path) else { Current.Log.error("Profile picture: Missing active URL for user entity picture, user id \(user.id)") completion(nil) return } completion(url) } } } } extension HomeAssistantAPI.APIError: LocalizedError { public var errorDescription: String? { switch self { case .managerNotAvailable: return L10n.HaApi.ApiError.managerNotAvailable case .invalidResponse: return L10n.HaApi.ApiError.invalidResponse case .cantBuildURL: return L10n.HaApi.ApiError.cantBuildUrl case .notConfigured: return L10n.HaApi.ApiError.notConfigured case .updateNotPossible: return L10n.HaApi.ApiError.updateNotPossible case .mobileAppComponentNotLoaded: return L10n.HaApi.ApiError.mobileAppComponentNotLoaded case let .mustUpgradeHomeAssistant(current: current, minimum: minimum): return L10n.HaApi.ApiError.mustUpgradeHomeAssistant( current.description, minimum.description ) case .noAPIAvailable: return L10n.HaApi.ApiError.noAvailableApi case .unknown: return L10n.HaApi.ApiError.unknown } } } extension HomeAssistantAPI: SensorObserver { public func sensorContainer( _ container: SensorContainer, didSignalForUpdateBecause reason: SensorContainerUpdateReason, lastUpdate: SensorObserverUpdate? ) { Current.backgroundTask(withName: BackgroundTask.signaledUpdateSensors.rawValue) { _ in UpdateSensors(trigger: .Signaled) }.cauterize() } public func sensorContainer(_ container: SensorContainer, didUpdate update: SensorObserverUpdate) { // we don't do anything for this } }