2015-11-27 18:02:32 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2016-11-08 14:42:20 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2018-02-06 20:50:53 +03:00
|
|
|
import { MatrixClient } from 'matrix-js-sdk';
|
|
|
|
|
2016-11-04 21:20:20 +03:00
|
|
|
import MFileBody from './MFileBody';
|
2016-11-08 14:42:20 +03:00
|
|
|
import Modal from '../../../Modal';
|
|
|
|
import sdk from '../../../index';
|
2018-04-29 05:07:31 +03:00
|
|
|
import { decryptFile } from '../../../utils/DecryptFile';
|
2017-07-12 15:58:14 +03:00
|
|
|
import Promise from 'bluebird';
|
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";
|
2016-11-02 19:26:10 +03:00
|
|
|
|
2018-05-17 20:15:34 +03:00
|
|
|
const THUMBNAIL_MAX_HEIGHT = 600;
|
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
export default class extends React.Component {
|
|
|
|
displayName: 'MImageBody'
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
static propTypes = {
|
2016-02-22 20:19:04 +03:00
|
|
|
/* the MatrixEvent to show */
|
2017-12-26 04:03:18 +03:00
|
|
|
mxEvent: PropTypes.object.isRequired,
|
2016-12-02 14:11:35 +03:00
|
|
|
|
|
|
|
/* called when the image has loaded */
|
2017-12-26 04:03:18 +03:00
|
|
|
onWidgetLoad: PropTypes.func.isRequired,
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
static contextTypes = {
|
2018-02-06 20:50:53 +03:00
|
|
|
matrixClient: PropTypes.instanceOf(MatrixClient),
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2018-02-06 20:50:53 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
2018-04-23 20:14:59 +03:00
|
|
|
this.onImageError = this.onImageError.bind(this);
|
2018-04-29 06:28:15 +03:00
|
|
|
this.onImageLoad = this.onImageLoad.bind(this);
|
2018-02-26 17:01:33 +03:00
|
|
|
this.onImageEnter = this.onImageEnter.bind(this);
|
|
|
|
this.onImageLeave = this.onImageLeave.bind(this);
|
|
|
|
this.onClientSync = this.onClientSync.bind(this);
|
|
|
|
this.onClick = this.onClick.bind(this);
|
|
|
|
this._isGif = this._isGif.bind(this);
|
|
|
|
|
|
|
|
this.state = {
|
2016-11-04 14:52:47 +03:00
|
|
|
decryptedUrl: null,
|
2016-11-15 14:22:39 +03:00
|
|
|
decryptedThumbnailUrl: null,
|
2016-12-02 17:21:07 +03:00
|
|
|
decryptedBlob: null,
|
2017-02-28 01:16:56 +03:00
|
|
|
error: null,
|
2018-02-06 20:50:53 +03:00
|
|
|
imgError: false,
|
2016-11-04 14:52:47 +03:00
|
|
|
};
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
|
2018-02-06 20:50:53 +03:00
|
|
|
componentWillMount() {
|
|
|
|
this.unmounted = false;
|
|
|
|
this.context.matrixClient.on('sync', this.onClientSync);
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2018-02-06 20:50:53 +03:00
|
|
|
|
2018-04-29 05:17:55 +03:00
|
|
|
// FIXME: factor this out and aplpy it to MVideoBody and MAudioBody too!
|
2018-02-06 20:50:53 +03:00
|
|
|
onClientSync(syncState, prevState) {
|
|
|
|
if (this.unmounted) return;
|
|
|
|
// Consider the client reconnected if there is no error with syncing.
|
|
|
|
// This means the state could be RECONNECTING, SYNCING or PREPARED.
|
|
|
|
const reconnected = syncState !== "ERROR" && prevState !== syncState;
|
|
|
|
if (reconnected && this.state.imgError) {
|
|
|
|
// Load the image again
|
|
|
|
this.setState({
|
|
|
|
imgError: false,
|
|
|
|
});
|
|
|
|
}
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
onClick(ev) {
|
2015-11-27 18:02:32 +03:00
|
|
|
if (ev.button == 0 && !ev.metaKey) {
|
|
|
|
ev.preventDefault();
|
2016-11-08 15:57:24 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
|
|
|
const httpUrl = this._getContentUrl();
|
|
|
|
const ImageView = sdk.getComponent("elements.ImageView");
|
|
|
|
const params = {
|
2015-11-27 18:02:32 +03:00
|
|
|
src: httpUrl,
|
2017-05-30 17:09:57 +03:00
|
|
|
name: content.body && content.body.length > 0 ? content.body : _t('Attachment'),
|
2017-02-28 01:16:56 +03:00
|
|
|
mxEvent: this.props.mxEvent,
|
2015-12-08 22:49:16 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
if (content.info) {
|
|
|
|
params.width = content.info.w;
|
|
|
|
params.height = content.info.h;
|
2016-04-07 20:58:50 +03:00
|
|
|
params.fileSize = content.info.size;
|
2015-12-08 22:49:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Modal.createDialog(ImageView, params, "mx_Dialog_lightbox");
|
2015-11-27 18:02:32 +03:00
|
|
|
}
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
_isGif() {
|
2016-11-08 15:57:24 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2017-02-28 01:16:56 +03:00
|
|
|
return (
|
|
|
|
content &&
|
|
|
|
content.info &&
|
2017-03-02 16:39:56 +03:00
|
|
|
content.info.mimetype === "image/gif"
|
|
|
|
);
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
onImageEnter(e) {
|
2017-10-29 10:43:52 +03:00
|
|
|
if (!this._isGif() || SettingsStore.getValue("autoplayGifsAndVideos")) {
|
2015-11-27 18:02:32 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-02-28 01:16:56 +03:00
|
|
|
const imgElement = e.target;
|
2016-11-04 21:40:57 +03:00
|
|
|
imgElement.src = this._getContentUrl();
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
onImageLeave(e) {
|
2017-10-29 10:43:52 +03:00
|
|
|
if (!this._isGif() || SettingsStore.getValue("autoplayGifsAndVideos")) {
|
2015-11-27 18:02:32 +03:00
|
|
|
return;
|
|
|
|
}
|
2017-02-28 01:16:56 +03:00
|
|
|
const imgElement = e.target;
|
2015-11-27 18:02:32 +03:00
|
|
|
imgElement.src = this._getThumbUrl();
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
onImageError() {
|
2018-02-06 20:50:53 +03:00
|
|
|
this.setState({
|
|
|
|
imgError: true,
|
|
|
|
});
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2018-02-06 20:50:53 +03:00
|
|
|
|
2018-04-29 06:28:15 +03:00
|
|
|
onImageLoad() {
|
|
|
|
this.props.onWidgetLoad();
|
|
|
|
}
|
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
_getContentUrl() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-04 14:52:47 +03:00
|
|
|
if (content.file !== undefined) {
|
|
|
|
return this.state.decryptedUrl;
|
|
|
|
} else {
|
2018-02-06 20:50:53 +03:00
|
|
|
return this.context.matrixClient.mxcUrlToHttp(content.url);
|
2016-11-04 14:52:47 +03:00
|
|
|
}
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
_getThumbUrl() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-04 14:52:47 +03:00
|
|
|
if (content.file !== undefined) {
|
2017-03-02 16:39:56 +03:00
|
|
|
// Don't use the thumbnail for clients wishing to autoplay gifs.
|
2016-11-15 14:22:39 +03:00
|
|
|
if (this.state.decryptedThumbnailUrl) {
|
|
|
|
return this.state.decryptedThumbnailUrl;
|
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
return this.state.decryptedUrl;
|
2018-05-06 00:08:37 +03:00
|
|
|
} else if (content.info &&
|
|
|
|
content.info.mimetype == "image/svg+xml" &&
|
2018-05-06 00:28:09 +03:00
|
|
|
content.info.thumbnail_url) {
|
2018-04-29 05:58:17 +03:00
|
|
|
// special case to return client-generated thumbnails for SVGs, if any,
|
|
|
|
// given we deliberately don't thumbnail them serverside to prevent
|
|
|
|
// billion lol attacks and similar
|
|
|
|
return this.context.matrixClient.mxcUrlToHttp(
|
2018-04-29 06:31:30 +03:00
|
|
|
content.info.thumbnail_url, 800, 600,
|
2018-04-29 05:58:17 +03:00
|
|
|
);
|
2018-04-29 06:31:30 +03:00
|
|
|
} else {
|
2018-02-06 20:50:53 +03:00
|
|
|
return this.context.matrixClient.mxcUrlToHttp(content.url, 800, 600);
|
2016-11-04 14:52:47 +03:00
|
|
|
}
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
componentDidMount() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-04 14:52:47 +03:00
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
2017-07-12 16:02:00 +03:00
|
|
|
let thumbnailPromise = Promise.resolve(null);
|
2016-11-15 14:22:39 +03:00
|
|
|
if (content.info.thumbnail_file) {
|
|
|
|
thumbnailPromise = decryptFile(
|
2017-02-28 01:16:56 +03:00
|
|
|
content.info.thumbnail_file,
|
2017-01-20 17:22:27 +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-15 14:22:39 +03:00
|
|
|
}
|
2017-02-28 01:16:56 +03:00
|
|
|
let decryptedBlob;
|
2016-11-15 14:22:39 +03:00
|
|
|
thumbnailPromise.then((thumbnailUrl) => {
|
2016-12-02 17:21:07 +03:00
|
|
|
return decryptFile(content.file).then(function(blob) {
|
|
|
|
decryptedBlob = blob;
|
2018-04-29 05:07:31 +03:00
|
|
|
return URL.createObjectURL(blob);
|
2016-12-02 17:21:07 +03:00
|
|
|
}).then((contentUrl) => {
|
2016-11-15 14:22:39 +03:00
|
|
|
this.setState({
|
|
|
|
decryptedUrl: contentUrl,
|
|
|
|
decryptedThumbnailUrl: thumbnailUrl,
|
2016-12-02 17:21:07 +03:00
|
|
|
decryptedBlob: decryptedBlob,
|
2016-11-15 14:22:39 +03:00
|
|
|
});
|
2016-11-04 18:39:39 +03:00
|
|
|
});
|
2016-11-15 14:22:39 +03:00
|
|
|
}).catch((err) => {
|
2016-11-18 23:08:26 +03:00
|
|
|
console.warn("Unable to decrypt attachment: ", err);
|
2016-11-04 14:52:47 +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,
|
|
|
|
});
|
2016-11-15 14:22:39 +03:00
|
|
|
}).done();
|
2016-11-04 14:52:47 +03:00
|
|
|
}
|
2018-03-08 15:31:01 +03:00
|
|
|
this._afterComponentDidMount();
|
|
|
|
}
|
|
|
|
|
|
|
|
// To be overridden by subclasses (e.g. MStickerBody) for further
|
|
|
|
// initialisation after componentDidMount
|
|
|
|
_afterComponentDidMount() {
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
componentWillUnmount() {
|
2018-02-06 20:50:53 +03:00
|
|
|
this.unmounted = true;
|
|
|
|
this.context.matrixClient.removeListener('sync', this.onClientSync);
|
2018-03-10 00:12:56 +03:00
|
|
|
this._afterComponentWillUnmount();
|
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);
|
|
|
|
}
|
2018-03-10 00:12:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// To be overridden by subclasses (e.g. MStickerBody) for further
|
|
|
|
// cleanup after componentWillUnmount
|
|
|
|
_afterComponentWillUnmount() {
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
2016-03-24 03:13:32 +03:00
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
_messageContent(contentUrl, thumbUrl, content) {
|
2018-05-17 20:15:34 +03:00
|
|
|
const maxHeight = Math.min(THUMBNAIL_MAX_HEIGHT, content.info.h);
|
|
|
|
const maxWidth = content.info.w * maxHeight / content.info.h;
|
2018-04-29 05:58:17 +03:00
|
|
|
const thumbnail = (
|
|
|
|
<a href={contentUrl} onClick={this.onClick}>
|
2018-05-17 20:15:34 +03:00
|
|
|
<div className="mx_MImageBody_thumbnail_container" style={{ "max-height": maxHeight + "px" }} >
|
|
|
|
{ /* Calculate aspect ratio, using %padding will size _container correctly */ }
|
|
|
|
<div style={{ paddingBottom: (100 * content.info.h / content.info.w) + '%' }}></div>
|
|
|
|
|
|
|
|
{ /* Thumbnail CSS class resizes to exactly container size with inline CSS
|
|
|
|
to restrict width */ }
|
|
|
|
<img className="mx_MImageBody_thumbnail" src={thumbUrl} ref="image"
|
|
|
|
style={{ "max-width": maxWidth + "px" }}
|
|
|
|
alt={content.body}
|
|
|
|
onError={this.onImageError}
|
|
|
|
onLoad={this.onImageLoad}
|
|
|
|
onMouseEnter={this.onImageEnter}
|
|
|
|
onMouseLeave={this.onImageLeave} />
|
|
|
|
</div>
|
2018-04-29 05:58:17 +03:00
|
|
|
</a>
|
|
|
|
);
|
|
|
|
|
2018-02-26 17:01:33 +03:00
|
|
|
return (
|
|
|
|
<span className="mx_MImageBody" ref="body">
|
2018-04-29 05:58:17 +03:00
|
|
|
{ thumbUrl && !this.state.imgError ? thumbnail : '' }
|
2018-02-26 17:01:33 +03:00
|
|
|
<MFileBody {...this.props} decryptedBlob={this.state.decryptedBlob} />
|
2018-04-29 05:58:17 +03:00
|
|
|
</span>
|
2018-02-26 17:01:33 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-11-08 15:57:24 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-11 14:59:08 +03:00
|
|
|
|
2016-11-18 23:08:26 +03:00
|
|
|
if (this.state.error !== null) {
|
|
|
|
return (
|
|
|
|
<span className="mx_MImageBody" ref="body">
|
2017-10-11 19:56:17 +03:00
|
|
|
<img src="img/warning.svg" width="16" height="16" />
|
|
|
|
{ _t("Error decrypting image") }
|
2016-11-18 23:08:26 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-04 14:52:47 +03:00
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
|
|
|
// Need to decrypt the attachment
|
|
|
|
// The attachment is decrypted in componentDidMount.
|
|
|
|
// For now add an img tag with a spinner.
|
|
|
|
return (
|
|
|
|
<span className="mx_MImageBody" ref="body">
|
2016-11-18 23:08:26 +03:00
|
|
|
<div className="mx_MImageBody_thumbnail" ref="image" style={{
|
|
|
|
"display": "flex",
|
2016-12-02 14:11:35 +03:00
|
|
|
"alignItems": "center",
|
2016-11-18 23:08:26 +03:00
|
|
|
"width": "100%",
|
|
|
|
}}>
|
2016-12-02 14:11:35 +03:00
|
|
|
<img src="img/spinner.gif" alt={content.body} width="32" height="32" style={{
|
|
|
|
"margin": "auto",
|
2017-10-11 19:56:17 +03:00
|
|
|
}} />
|
2016-11-18 23:08:26 +03:00
|
|
|
</div>
|
2016-11-04 14:52:47 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-08 15:57:24 +03:00
|
|
|
const contentUrl = this._getContentUrl();
|
2017-02-28 01:16:56 +03:00
|
|
|
let thumbUrl;
|
2017-10-29 10:43:52 +03:00
|
|
|
if (this._isGif() && SettingsStore.getValue("autoplayGifsAndVideos")) {
|
2017-02-28 01:16:56 +03:00
|
|
|
thumbUrl = contentUrl;
|
|
|
|
} else {
|
|
|
|
thumbUrl = this._getThumbUrl();
|
|
|
|
}
|
2016-11-04 14:52:47 +03:00
|
|
|
|
2018-04-29 05:58:17 +03:00
|
|
|
return this._messageContent(contentUrl, thumbUrl, content);
|
2018-02-26 17:01:33 +03:00
|
|
|
}
|
|
|
|
}
|