2021-05-03 20:41:14 +03:00
|
|
|
/*
|
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2021-06-29 15:11:58 +03:00
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
|
|
import { Playback } from "../../../voice/Playback";
|
2021-05-03 20:41:14 +03:00
|
|
|
import MFileBody from "./MFileBody";
|
|
|
|
import InlineSpinner from '../elements/InlineSpinner';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { _t } from "../../../languageHandler";
|
|
|
|
import { mediaFromContent } from "../../../customisations/Media";
|
|
|
|
import { decryptFile } from "../../../utils/DecryptFile";
|
2021-06-22 00:18:34 +03:00
|
|
|
import RecordingPlayback from "../audio_messages/RecordingPlayback";
|
2021-06-29 15:11:58 +03:00
|
|
|
import { IMediaEventContent } from "../../../customisations/models/IMediaEventContent";
|
2021-07-14 03:51:53 +03:00
|
|
|
import { TileShape } from "../rooms/EventTile";
|
2021-05-03 20:41:14 +03:00
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
mxEvent: MatrixEvent;
|
2021-07-14 03:51:53 +03:00
|
|
|
tileShape?: TileShape;
|
2021-05-03 20:41:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
error?: Error;
|
|
|
|
playback?: Playback;
|
|
|
|
decryptedBlob?: Blob;
|
|
|
|
}
|
|
|
|
|
|
|
|
@replaceableComponent("views.messages.MVoiceMessageBody")
|
|
|
|
export default class MVoiceMessageBody extends React.PureComponent<IProps, IState> {
|
|
|
|
constructor(props: IProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
public async componentDidMount() {
|
|
|
|
let buffer: ArrayBuffer;
|
2021-06-17 16:49:27 +03:00
|
|
|
const content: IMediaEventContent = this.props.mxEvent.getContent();
|
2021-05-03 20:41:14 +03:00
|
|
|
const media = mediaFromContent(content);
|
|
|
|
if (media.isEncrypted) {
|
|
|
|
try {
|
|
|
|
const blob = await decryptFile(content.file);
|
|
|
|
buffer = await blob.arrayBuffer();
|
2021-06-29 15:11:58 +03:00
|
|
|
this.setState({ decryptedBlob: blob });
|
2021-05-03 20:41:14 +03:00
|
|
|
} catch (e) {
|
2021-06-29 15:11:58 +03:00
|
|
|
this.setState({ error: e });
|
2021-05-03 20:41:14 +03:00
|
|
|
console.warn("Unable to decrypt voice message", e);
|
|
|
|
return; // stop processing the audio file
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
buffer = await media.downloadSource().then(r => r.blob()).then(r => r.arrayBuffer());
|
|
|
|
} catch (e) {
|
2021-06-29 15:11:58 +03:00
|
|
|
this.setState({ error: e });
|
2021-05-03 20:41:14 +03:00
|
|
|
console.warn("Unable to download voice message", e);
|
|
|
|
return; // stop processing the audio file
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const waveform = content?.["org.matrix.msc1767.audio"]?.waveform?.map(p => p / 1024);
|
|
|
|
|
|
|
|
// We should have a buffer to work with now: let's set it up
|
|
|
|
const playback = new Playback(buffer, waveform);
|
2021-05-26 10:27:39 +03:00
|
|
|
this.setState({ playback });
|
2021-05-03 20:41:14 +03:00
|
|
|
// Note: the RecordingPlayback component will handle preparing the Playback class for us.
|
|
|
|
}
|
|
|
|
|
2021-05-26 10:27:39 +03:00
|
|
|
public componentWillUnmount() {
|
2021-05-26 10:37:57 +03:00
|
|
|
this.state.playback?.destroy();
|
2021-05-26 10:27:39 +03:00
|
|
|
}
|
|
|
|
|
2021-05-03 20:41:14 +03:00
|
|
|
public render() {
|
|
|
|
if (this.state.error) {
|
|
|
|
// TODO: @@TR: Verify error state
|
|
|
|
return (
|
|
|
|
<span className="mx_MVoiceMessageBody">
|
|
|
|
<img src={require("../../../../res/img/warning.svg")} width="16" height="16" />
|
|
|
|
{ _t("Error processing voice message") }
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.state.playback) {
|
|
|
|
// TODO: @@TR: Verify loading/decrypting state
|
|
|
|
return (
|
|
|
|
<span className="mx_MVoiceMessageBody">
|
|
|
|
<InlineSpinner />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point we should have a playable state
|
|
|
|
return (
|
|
|
|
<span className="mx_MVoiceMessageBody">
|
2021-07-14 03:51:53 +03:00
|
|
|
<RecordingPlayback playback={this.state.playback} tileShape={this.props.tileShape} />
|
2021-05-03 20:41:14 +03:00
|
|
|
<MFileBody {...this.props} decryptedBlob={this.state.decryptedBlob} showGenericPlaceholder={false} />
|
|
|
|
</span>
|
2021-06-29 15:11:58 +03:00
|
|
|
);
|
2021-05-03 20:41:14 +03:00
|
|
|
}
|
|
|
|
}
|