42 lines
1.4 KiB
Swift
42 lines
1.4 KiB
Swift
//
|
|
// Copyright 2025 Element Creations Ltd.
|
|
// Copyright 2024-2025 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
|
// Please see LICENSE files in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
import SwiftUI
|
|
|
|
class GenericCallLinkWidgetDriver: ElementCallWidgetDriverProtocol {
|
|
private let url: URL
|
|
|
|
let widgetID = UUID().uuidString
|
|
let messagePublisher = PassthroughSubject<String, Never>()
|
|
|
|
private let actionsSubject: PassthroughSubject<ElementCallWidgetDriverAction, Never> = .init()
|
|
var actions: AnyPublisher<ElementCallWidgetDriverAction, Never> {
|
|
actionsSubject.eraseToAnyPublisher()
|
|
}
|
|
|
|
init(url: URL) {
|
|
self.url = url
|
|
}
|
|
|
|
func start(baseURL: URL,
|
|
clientID: String,
|
|
colorScheme: ColorScheme,
|
|
voiceOnly: Bool,
|
|
rageshakeURL: String?,
|
|
analyticsConfiguration: ElementCallAnalyticsConfiguration?) async -> Result<URL, ElementCallWidgetDriverError> {
|
|
MXLog.error("Nothing to start, use the configuration's URL directly instead.")
|
|
return .success(url)
|
|
}
|
|
|
|
func handleMessage(_ message: String) async -> Result<Bool, ElementCallWidgetDriverError> {
|
|
// The web view doesn't send us messages through the Widget API, so nothing to implement (yet?).
|
|
.failure(.driverNotSetup)
|
|
}
|
|
}
|