mirror of
https://github.com/home-assistant/iOS.git
synced 2026-06-18 11:15:36 -05:00
## Summary Most, but not all, of the changes necessary to support multi-server throughout the app and all its features. ## Screenshots | Light | Dark | | ----- | ---- | |  |  | |  |  | |  |  | |  |  | |  |  | ## Any other notes - Encapsulates all connectivity, token & server-specific knowledge in a Server model object which gets passed around. - Updates various places throughout the app to know about and use Server rather than accessing said information through non-server-specific methods. - Visually requests/notes server in places where it's ambiguous. For example, the Open Page widget will gain a subtitle if multiple servers are set up. - Allows switching which server is shown in the WebViews. Note that this doesn't take into account multi-window support on iPad/macOS yet. Most things will migrate successfully however adding an additional server causes things like Shortcuts to start erroring requiring you specify which to use in the particular Shortcut. Future work necessary: - Model objects currently clobber each other if their identifiers match. For example, both servers having a zone named `home` means one of them wins the fight for which is known to the app. - Being remotely logged out on any account causes the app to require onboarding again, when instead it should only do that if the last known server is logged out.
77 lines
2.1 KiB
Swift
77 lines
2.1 KiB
Swift
import Foundation
|
|
import PromiseKit
|
|
import Shared
|
|
import UserNotifications
|
|
import WatchKit
|
|
|
|
final class NotificationSubControllerMedia: NotificationSubController {
|
|
enum MediaType {
|
|
case playable(URL)
|
|
case image(UIImage)
|
|
}
|
|
|
|
let api: HomeAssistantAPI
|
|
let media: MediaType
|
|
let endSecurityScopeURL: URL?
|
|
|
|
convenience init?(api: HomeAssistantAPI, notification: UNNotification) {
|
|
guard let url = notification.request.content.attachments.first?.url else {
|
|
return nil
|
|
}
|
|
|
|
self.init(api: api, url: url)
|
|
}
|
|
|
|
init?(api: HomeAssistantAPI, url: URL) {
|
|
let didStartSecurityScope = url.startAccessingSecurityScopedResource()
|
|
let data: Data
|
|
|
|
do {
|
|
// FB9096214 watchOS will give us a url which fails security scoped access and errors with
|
|
// Error Domain=NSCocoaErrorDomain Code=257
|
|
// so we unfortunately have to pretend like no attachment existed if we can't _read_ it
|
|
data = try Data(contentsOf: url, options: .alwaysMapped)
|
|
} catch {
|
|
Current.Log.error("failed to open data: \(error) security scope happened \(didStartSecurityScope)")
|
|
return nil
|
|
}
|
|
|
|
Current.Log.info("creating with url \(url) data size \(data.count)")
|
|
|
|
self.api = api
|
|
|
|
if let image = UIImage(data: data) {
|
|
self.media = .image(image)
|
|
} else {
|
|
self.media = .playable(url)
|
|
}
|
|
|
|
if didStartSecurityScope {
|
|
self.endSecurityScopeURL = url
|
|
} else {
|
|
self.endSecurityScopeURL = nil
|
|
}
|
|
}
|
|
|
|
deinit {
|
|
endSecurityScopeURL?.stopAccessingSecurityScopedResource()
|
|
}
|
|
|
|
func start(with elements: NotificationElements) -> Promise<Void> {
|
|
switch media {
|
|
case let .playable(url):
|
|
elements.movie.setHidden(false)
|
|
elements.movie.setLoops(true)
|
|
elements.movie.setMovieURL(url)
|
|
elements.movie.play()
|
|
case let .image(image):
|
|
elements.image.setHidden(false)
|
|
elements.image.setImage(image)
|
|
}
|
|
|
|
return .value(())
|
|
}
|
|
|
|
func stop() {}
|
|
}
|