2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-12-20 03:45:24 +03:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2016-11-08 19:26:25 +03:00
|
|
|
import React from 'react';
|
2016-11-04 21:09:12 +03:00
|
|
|
import MFileBody from './MFileBody';
|
2018-04-29 05:07:31 +03:00
|
|
|
import { decryptFile } from '../../../utils/DecryptFile';
|
2017-05-30 17:09:57 +03:00
|
|
|
import { _t } from '../../../languageHandler';
|
2017-10-29 10:43:52 +03:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
2020-04-25 00:14:41 +03:00
|
|
|
import InlineSpinner from '../elements/InlineSpinner';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
|
|
|
import { mediaFromContent } from "../../../customisations/Media";
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2020-10-23 18:31:30 +03:00
|
|
|
interface IProps {
|
|
|
|
/* the MatrixEvent to show */
|
|
|
|
mxEvent: any;
|
|
|
|
/* called when the video has loaded */
|
|
|
|
onHeightChanged: () => void;
|
|
|
|
}
|
2016-12-20 15:33:07 +03:00
|
|
|
|
2020-10-23 18:31:30 +03:00
|
|
|
interface IState {
|
|
|
|
decryptedUrl: string|null,
|
|
|
|
decryptedThumbnailUrl: string|null,
|
|
|
|
decryptedBlob: Blob|null,
|
2020-10-23 18:33:40 +03:00
|
|
|
error: any|null,
|
|
|
|
fetchingData: boolean,
|
2020-10-23 18:31:30 +03:00
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
|
2021-03-09 06:04:46 +03:00
|
|
|
@replaceableComponent("views.messages.MVideoBody")
|
2020-10-23 18:31:30 +03:00
|
|
|
export default class MVideoBody extends React.PureComponent<IProps, IState> {
|
2020-11-19 16:26:14 +03:00
|
|
|
private videoRef = React.createRef<HTMLVideoElement>();
|
|
|
|
|
2020-10-23 18:31:30 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2020-10-23 18:33:40 +03:00
|
|
|
fetchingData: false,
|
2020-10-23 18:31:30 +03:00
|
|
|
decryptedUrl: null,
|
|
|
|
decryptedThumbnailUrl: null,
|
|
|
|
decryptedBlob: null,
|
|
|
|
error: null,
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2020-10-23 18:31:30 +03:00
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
|
2020-10-23 18:31:30 +03:00
|
|
|
thumbScale(fullWidth: number, fullHeight: number, thumbWidth: number, thumbHeight: number) {
|
2015-11-27 18:02:32 +03:00
|
|
|
if (!fullWidth || !fullHeight) {
|
|
|
|
// Cannot calculate thumbnail height for image: missing w/h in metadata. We can't even
|
|
|
|
// log this because it's spammy
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
if (fullWidth < thumbWidth && fullHeight < thumbHeight) {
|
|
|
|
// no scaling needs to be applied
|
2016-07-20 13:58:49 +03:00
|
|
|
return 1;
|
2015-11-27 18:02:32 +03:00
|
|
|
}
|
2017-10-11 19:56:17 +03:00
|
|
|
const widthMulti = thumbWidth / fullWidth;
|
|
|
|
const heightMulti = thumbHeight / fullHeight;
|
2015-11-27 18:02:32 +03:00
|
|
|
if (widthMulti < heightMulti) {
|
|
|
|
// width is the dominant dimension so scaling will be fixed on that
|
|
|
|
return widthMulti;
|
2017-10-11 19:56:17 +03:00
|
|
|
} else {
|
2015-11-27 18:02:32 +03:00
|
|
|
// height is the dominant dimension so scaling will be fixed on that
|
|
|
|
return heightMulti;
|
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2020-11-18 20:41:54 +03:00
|
|
|
private getContentUrl(): string|null {
|
2021-03-04 05:06:46 +03:00
|
|
|
const media = mediaFromContent(this.props.mxEvent.getContent());
|
|
|
|
if (media.isEncrypted) {
|
2016-11-04 16:05:34 +03:00
|
|
|
return this.state.decryptedUrl;
|
|
|
|
} else {
|
2021-03-04 05:06:46 +03:00
|
|
|
return media.srcHttp;
|
2016-11-04 16:05:34 +03:00
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2016-11-04 16:05:34 +03:00
|
|
|
|
2020-11-19 16:26:14 +03:00
|
|
|
private hasContentUrl(): boolean {
|
|
|
|
const url = this.getContentUrl();
|
|
|
|
return url && !url.startsWith("data:");
|
|
|
|
}
|
|
|
|
|
2020-11-18 20:41:54 +03:00
|
|
|
private getThumbUrl(): string|null {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2021-03-04 05:06:46 +03:00
|
|
|
const media = mediaFromContent(content);
|
|
|
|
if (media.isEncrypted) {
|
2016-11-04 16:05:34 +03:00
|
|
|
return this.state.decryptedThumbnailUrl;
|
2021-03-04 05:06:46 +03:00
|
|
|
} else if (media.hasThumbnail) {
|
|
|
|
return media.thumbnailHttp;
|
2016-11-04 16:05:34 +03:00
|
|
|
} else {
|
2016-11-04 16:13:25 +03:00
|
|
|
return null;
|
2016-11-04 16:05:34 +03:00
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2016-11-04 16:05:34 +03:00
|
|
|
|
2020-10-23 18:33:40 +03:00
|
|
|
async componentDidMount() {
|
|
|
|
const autoplay = SettingsStore.getValue("autoplayGifsAndVideos") as boolean;
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-04 16:05:34 +03:00
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
2017-10-11 19:56:17 +03:00
|
|
|
let thumbnailPromise = Promise.resolve(null);
|
2019-11-22 19:50:32 +03:00
|
|
|
if (content.info && content.info.thumbnail_file) {
|
2016-11-08 15:57:24 +03:00
|
|
|
thumbnailPromise = decryptFile(
|
2017-10-11 19:56:17 +03:00
|
|
|
content.info.thumbnail_file,
|
2016-12-02 17:21:07 +03:00
|
|
|
).then(function(blob) {
|
2018-04-29 05:07:31 +03:00
|
|
|
return URL.createObjectURL(blob);
|
2016-12-02 17:21:07 +03:00
|
|
|
});
|
2016-11-04 16:05:34 +03:00
|
|
|
}
|
2020-10-23 18:33:40 +03:00
|
|
|
try {
|
|
|
|
const thumbnailUrl = await thumbnailPromise;
|
|
|
|
if (autoplay) {
|
|
|
|
console.log("Preloading video");
|
|
|
|
const decryptedBlob = await decryptFile(content.file);
|
|
|
|
const contentUrl = URL.createObjectURL(decryptedBlob);
|
2016-11-08 19:26:25 +03:00
|
|
|
this.setState({
|
2016-11-04 16:05:34 +03:00
|
|
|
decryptedUrl: contentUrl,
|
2016-11-04 18:39:39 +03:00
|
|
|
decryptedThumbnailUrl: thumbnailUrl,
|
2016-12-02 17:21:07 +03:00
|
|
|
decryptedBlob: decryptedBlob,
|
2016-11-08 19:26:25 +03:00
|
|
|
});
|
2019-03-06 14:27:16 +03:00
|
|
|
this.props.onHeightChanged();
|
2020-10-23 18:33:40 +03:00
|
|
|
} else {
|
|
|
|
console.log("NOT preloading video");
|
|
|
|
this.setState({
|
2020-11-19 16:26:14 +03:00
|
|
|
// For Chrome and Electron, we need to set some non-empty `src` to
|
|
|
|
// enable the play button. Firefox does not seem to care either
|
|
|
|
// way, so it's fine to do for all browsers.
|
|
|
|
decryptedUrl: `data:${content?.info?.mimetype},`,
|
2021-04-02 20:24:26 +03:00
|
|
|
decryptedThumbnailUrl: thumbnailUrl || `data:${content?.info?.mimetype},`,
|
2020-10-23 18:33:40 +03:00
|
|
|
decryptedBlob: null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (err) {
|
2017-01-20 17:22:27 +03:00
|
|
|
console.warn("Unable to decrypt attachment: ", err);
|
2016-11-04 16:05:34 +03:00
|
|
|
// Set a placeholder image when we can't decrypt the image.
|
2016-11-18 23:08:26 +03:00
|
|
|
this.setState({
|
|
|
|
error: err,
|
|
|
|
});
|
2020-10-23 18:33:40 +03:00
|
|
|
}
|
2016-11-04 16:05:34 +03:00
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2016-11-04 16:05:34 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
componentWillUnmount() {
|
2018-04-29 05:17:55 +03:00
|
|
|
if (this.state.decryptedUrl) {
|
|
|
|
URL.revokeObjectURL(this.state.decryptedUrl);
|
|
|
|
}
|
|
|
|
if (this.state.decryptedThumbnailUrl) {
|
|
|
|
URL.revokeObjectURL(this.state.decryptedThumbnailUrl);
|
|
|
|
}
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
2018-04-29 05:17:55 +03:00
|
|
|
|
2020-11-18 20:41:54 +03:00
|
|
|
private videoOnPlay = async () => {
|
2020-11-19 16:26:14 +03:00
|
|
|
if (this.hasContentUrl() || this.state.fetchingData || this.state.error) {
|
2020-10-30 03:34:18 +03:00
|
|
|
// We have the file, we are fetching the file, or there is an error.
|
2020-10-23 18:33:40 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
// To stop subsequent download attempts
|
|
|
|
fetchingData: true,
|
|
|
|
});
|
|
|
|
const content = this.props.mxEvent.getContent();
|
|
|
|
if (!content.file) {
|
|
|
|
this.setState({
|
|
|
|
error: "No file given in content",
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const decryptedBlob = await decryptFile(content.file);
|
|
|
|
const contentUrl = URL.createObjectURL(decryptedBlob);
|
|
|
|
this.setState({
|
|
|
|
decryptedUrl: contentUrl,
|
|
|
|
decryptedBlob: decryptedBlob,
|
2020-10-30 03:34:18 +03:00
|
|
|
fetchingData: false,
|
2020-11-19 16:26:14 +03:00
|
|
|
}, () => {
|
|
|
|
if (!this.videoRef.current) return;
|
|
|
|
this.videoRef.current.play();
|
2020-10-23 18:33:40 +03:00
|
|
|
});
|
|
|
|
this.props.onHeightChanged();
|
2021-06-29 15:11:58 +03:00
|
|
|
};
|
2020-10-23 18:33:40 +03:00
|
|
|
|
2020-08-29 14:14:16 +03:00
|
|
|
render() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2020-10-23 18:33:40 +03:00
|
|
|
const autoplay = SettingsStore.getValue("autoplayGifsAndVideos");
|
2016-11-04 16:05:34 +03:00
|
|
|
|
2016-11-18 23:08:26 +03:00
|
|
|
if (this.state.error !== null) {
|
|
|
|
return (
|
2019-12-08 15:12:06 +03:00
|
|
|
<span className="mx_MVideoBody">
|
2019-01-11 04:37:28 +03:00
|
|
|
<img src={require("../../../../res/img/warning.svg")} width="16" height="16" />
|
2017-10-11 19:56:17 +03:00
|
|
|
{ _t("Error decrypting video") }
|
2016-11-18 23:08:26 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-23 18:33:40 +03:00
|
|
|
// Important: If we aren't autoplaying and we haven't decrypred it yet, show a video with a poster.
|
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null && autoplay) {
|
2016-11-04 16:05:34 +03:00
|
|
|
// Need to decrypt the attachment
|
|
|
|
// The attachment is decrypted in componentDidMount.
|
|
|
|
// For now add an img tag with a spinner.
|
|
|
|
return (
|
2019-12-08 15:12:06 +03:00
|
|
|
<span className="mx_MVideoBody">
|
|
|
|
<div className="mx_MImageBody_thumbnail mx_MImageBody_thumbnail_spinner">
|
2020-06-26 03:18:02 +03:00
|
|
|
<InlineSpinner />
|
2016-11-18 23:08:26 +03:00
|
|
|
</div>
|
2016-11-04 16:05:34 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-11-18 20:41:54 +03:00
|
|
|
const contentUrl = this.getContentUrl();
|
|
|
|
const thumbUrl = this.getThumbUrl();
|
2017-02-28 01:16:56 +03:00
|
|
|
let height = null;
|
|
|
|
let width = null;
|
|
|
|
let poster = null;
|
|
|
|
let preload = "metadata";
|
2015-11-27 18:02:32 +03:00
|
|
|
if (content.info) {
|
2016-11-08 14:42:20 +03:00
|
|
|
const scale = this.thumbScale(content.info.w, content.info.h, 480, 360);
|
2015-11-27 18:02:32 +03:00
|
|
|
if (scale) {
|
|
|
|
width = Math.floor(content.info.w * scale);
|
|
|
|
height = Math.floor(content.info.h * scale);
|
|
|
|
}
|
|
|
|
|
2016-11-04 16:05:34 +03:00
|
|
|
if (thumbUrl) {
|
|
|
|
poster = thumbUrl;
|
2015-11-27 18:02:32 +03:00
|
|
|
preload = "none";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (
|
2016-01-03 03:11:11 +03:00
|
|
|
<span className="mx_MVideoBody">
|
2020-11-19 16:26:14 +03:00
|
|
|
<video
|
|
|
|
className="mx_MVideoBody"
|
|
|
|
ref={this.videoRef}
|
|
|
|
src={contentUrl}
|
|
|
|
title={content.body}
|
|
|
|
controls
|
|
|
|
preload={preload}
|
|
|
|
muted={autoplay}
|
|
|
|
autoPlay={autoplay}
|
|
|
|
height={height}
|
|
|
|
width={width}
|
|
|
|
poster={poster}
|
|
|
|
onPlay={this.videoOnPlay}
|
|
|
|
>
|
2015-11-27 18:02:32 +03:00
|
|
|
</video>
|
2021-03-05 06:07:48 +03:00
|
|
|
<MFileBody {...this.props} decryptedBlob={this.state.decryptedBlob} showGenericPlaceholder={false} />
|
2015-11-27 18:02:32 +03:00
|
|
|
</span>
|
|
|
|
);
|
2020-08-29 14:14:16 +03:00
|
|
|
}
|
|
|
|
}
|