mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-05 00:49:53 +00:00
* Update dependency prettier to v3.0.2 * Reformat --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Steve Repsher <steverep@users.noreply.github.com>
217 lines
5.8 KiB
TypeScript
217 lines
5.8 KiB
TypeScript
import {
|
|
css,
|
|
CSSResultGroup,
|
|
html,
|
|
LitElement,
|
|
PropertyValues,
|
|
TemplateResult,
|
|
} from "lit";
|
|
import { customElement, property, state, query } from "lit/decorators";
|
|
import { isComponentLoaded } from "../common/config/is_component_loaded";
|
|
import { fireEvent } from "../common/dom/fire_event";
|
|
import { handleWebRtcOffer, WebRtcAnswer } from "../data/camera";
|
|
import { fetchWebRtcSettings } from "../data/rtsp_to_webrtc";
|
|
import type { HomeAssistant } from "../types";
|
|
import "./ha-alert";
|
|
|
|
/**
|
|
* A WebRTC stream is established by first sending an offer through a signal
|
|
* path via an integration. An answer is returned, then the rest of the stream
|
|
* is handled entirely client side.
|
|
*/
|
|
@customElement("ha-web-rtc-player")
|
|
class HaWebRtcPlayer extends LitElement {
|
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
|
|
|
@property() public entityid!: string;
|
|
|
|
@property({ type: Boolean, attribute: "controls" })
|
|
public controls = false;
|
|
|
|
@property({ type: Boolean, attribute: "muted" })
|
|
public muted = false;
|
|
|
|
@property({ type: Boolean, attribute: "autoplay" })
|
|
public autoPlay = false;
|
|
|
|
@property({ type: Boolean, attribute: "playsinline" })
|
|
public playsInline = false;
|
|
|
|
@property() public posterUrl!: string;
|
|
|
|
@state() private _error?: string;
|
|
|
|
// don't cache this, as we remove it on disconnects
|
|
@query("#remote-stream") private _videoEl!: HTMLVideoElement;
|
|
|
|
private _peerConnection?: RTCPeerConnection;
|
|
|
|
private _remoteStream?: MediaStream;
|
|
|
|
protected override render(): TemplateResult {
|
|
if (this._error) {
|
|
return html`<ha-alert alert-type="error">${this._error}</ha-alert>`;
|
|
}
|
|
return html`
|
|
<video
|
|
id="remote-stream"
|
|
?autoplay=${this.autoPlay}
|
|
.muted=${this.muted}
|
|
?playsinline=${this.playsInline}
|
|
?controls=${this.controls}
|
|
.poster=${this.posterUrl}
|
|
@loadeddata=${this._loadedData}
|
|
></video>
|
|
`;
|
|
}
|
|
|
|
public override connectedCallback() {
|
|
super.connectedCallback();
|
|
if (this.hasUpdated) {
|
|
this._startWebRtc();
|
|
}
|
|
}
|
|
|
|
public override disconnectedCallback() {
|
|
super.disconnectedCallback();
|
|
this._cleanUp();
|
|
}
|
|
|
|
protected override updated(changedProperties: PropertyValues<this>) {
|
|
if (!changedProperties.has("entityid")) {
|
|
return;
|
|
}
|
|
if (!this._videoEl) {
|
|
return;
|
|
}
|
|
this._startWebRtc();
|
|
}
|
|
|
|
private async _startWebRtc(): Promise<void> {
|
|
this._error = undefined;
|
|
|
|
const configuration = await this._fetchPeerConfiguration();
|
|
const peerConnection = new RTCPeerConnection(configuration);
|
|
// Some cameras (such as nest) require a data channel to establish a stream
|
|
// however, not used by any integrations.
|
|
peerConnection.createDataChannel("dataSendChannel");
|
|
peerConnection.addTransceiver("audio", { direction: "recvonly" });
|
|
peerConnection.addTransceiver("video", { direction: "recvonly" });
|
|
|
|
const offerOptions: RTCOfferOptions = {
|
|
offerToReceiveAudio: true,
|
|
offerToReceiveVideo: true,
|
|
};
|
|
const offer: RTCSessionDescriptionInit =
|
|
await peerConnection.createOffer(offerOptions);
|
|
await peerConnection.setLocalDescription(offer);
|
|
|
|
let candidates = ""; // Build an Offer SDP string with ice candidates
|
|
const iceResolver = new Promise<void>((resolve) => {
|
|
peerConnection.addEventListener("icecandidate", async (event) => {
|
|
if (!event.candidate) {
|
|
resolve(); // Gathering complete
|
|
return;
|
|
}
|
|
candidates += `a=${event.candidate.candidate}\r\n`;
|
|
});
|
|
});
|
|
await iceResolver;
|
|
const offer_sdp = offer.sdp! + candidates;
|
|
|
|
let webRtcAnswer: WebRtcAnswer;
|
|
try {
|
|
webRtcAnswer = await handleWebRtcOffer(
|
|
this.hass,
|
|
this.entityid,
|
|
offer_sdp
|
|
);
|
|
} catch (err: any) {
|
|
this._error = "Failed to start WebRTC stream: " + err.message;
|
|
peerConnection.close();
|
|
return;
|
|
}
|
|
|
|
// Setup callbacks to render remote stream once media tracks are discovered.
|
|
const remoteStream = new MediaStream();
|
|
peerConnection.addEventListener("track", (event) => {
|
|
remoteStream.addTrack(event.track);
|
|
this._videoEl.srcObject = remoteStream;
|
|
});
|
|
this._remoteStream = remoteStream;
|
|
|
|
// Initiate the stream with the remote device
|
|
const remoteDesc = new RTCSessionDescription({
|
|
type: "answer",
|
|
sdp: webRtcAnswer.answer,
|
|
});
|
|
try {
|
|
await peerConnection.setRemoteDescription(remoteDesc);
|
|
} catch (err: any) {
|
|
this._error = "Failed to connect WebRTC stream: " + err.message;
|
|
peerConnection.close();
|
|
return;
|
|
}
|
|
this._peerConnection = peerConnection;
|
|
}
|
|
|
|
private async _fetchPeerConfiguration(): Promise<RTCConfiguration> {
|
|
if (!isComponentLoaded(this.hass!, "rtsp_to_webrtc")) {
|
|
return {};
|
|
}
|
|
const settings = await fetchWebRtcSettings(this.hass!);
|
|
if (!settings || !settings.stun_server) {
|
|
return {};
|
|
}
|
|
return {
|
|
iceServers: [
|
|
{
|
|
urls: [`stun:${settings.stun_server!}`],
|
|
},
|
|
],
|
|
};
|
|
}
|
|
|
|
private _cleanUp() {
|
|
if (this._remoteStream) {
|
|
this._remoteStream.getTracks().forEach((track) => {
|
|
track.stop();
|
|
});
|
|
this._remoteStream = undefined;
|
|
}
|
|
if (this._videoEl) {
|
|
this._videoEl.removeAttribute("src");
|
|
this._videoEl.load();
|
|
}
|
|
if (this._peerConnection) {
|
|
this._peerConnection.close();
|
|
this._peerConnection = undefined;
|
|
}
|
|
}
|
|
|
|
private _loadedData() {
|
|
// @ts-ignore
|
|
fireEvent(this, "load");
|
|
}
|
|
|
|
static get styles(): CSSResultGroup {
|
|
return css`
|
|
:host,
|
|
video {
|
|
display: block;
|
|
}
|
|
|
|
video {
|
|
width: 100%;
|
|
max-height: var(--video-max-height, calc(100vh - 97px));
|
|
}
|
|
`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"ha-web-rtc-player": HaWebRtcPlayer;
|
|
}
|
|
}
|