2015-07-08 18:25:27 +03:00
|
|
|
/*
|
2016-01-07 07:06:39 +03:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-08 18:25:27 +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';
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
var React = require('react');
|
2015-07-08 21:52:44 +03:00
|
|
|
var filesize = require('filesize');
|
2015-11-27 18:02:32 +03:00
|
|
|
var MatrixClientPeg = require('../../../MatrixClientPeg');
|
2016-01-06 05:11:07 +03:00
|
|
|
var sdk = require('../../../index');
|
2016-11-04 17:00:26 +03:00
|
|
|
var DecryptFile = require('../../../utils/DecryptFile');
|
2015-11-27 18:02:32 +03:00
|
|
|
|
|
|
|
module.exports = React.createClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'MFileBody',
|
2015-07-08 21:52:44 +03:00
|
|
|
|
2016-11-04 17:00:26 +03:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
decryptedUrl: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-07-08 18:25:27 +03:00
|
|
|
presentableTextForFile: function(content) {
|
|
|
|
var linkText = 'Attachment';
|
|
|
|
if (content.body && content.body.length > 0) {
|
|
|
|
linkText = content.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
var additionals = [];
|
2015-07-08 18:50:49 +03:00
|
|
|
if (content.info) {
|
2015-10-22 18:32:27 +03:00
|
|
|
// if (content.info.mimetype && content.info.mimetype.length > 0) {
|
|
|
|
// additionals.push(content.info.mimetype);
|
|
|
|
// }
|
2015-07-08 21:52:44 +03:00
|
|
|
if (content.info.size) {
|
2015-07-08 18:50:49 +03:00
|
|
|
additionals.push(filesize(content.info.size));
|
|
|
|
}
|
2015-07-08 18:25:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (additionals.length > 0) {
|
2015-07-08 21:57:58 +03:00
|
|
|
linkText += ' (' + additionals.join(', ') + ')';
|
2015-07-08 18:25:27 +03:00
|
|
|
}
|
|
|
|
return linkText;
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
|
2016-11-04 17:00:26 +03:00
|
|
|
_getContentUrl: function() {
|
|
|
|
var content = this.props.mxEvent.getContent();
|
|
|
|
if (content.file !== undefined) {
|
|
|
|
return this.state.decryptedUrl;
|
|
|
|
} else {
|
|
|
|
return MatrixClientPeg.get().mxcUrlToHttp(content.url);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
|
|
|
var content = this.props.mxEvent.getContent();
|
|
|
|
var self = this;
|
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
|
|
|
DecryptFile.decryptFile(content.file).then(function(blob) {
|
|
|
|
if (!self._unmounted) {
|
|
|
|
self.setState({
|
|
|
|
decryptedUrl: window.URL.createObjectURL(blob),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).catch(function (err) {
|
|
|
|
console.warn("Unable to decrypt attachment: ", err)
|
|
|
|
// Set a placeholder image when we can't decrypt the image.
|
|
|
|
self.refs.image.src = "img/warning.svg";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount: function() {
|
|
|
|
this._unmounted = true;
|
|
|
|
if (this.state.decryptedUrl) {
|
|
|
|
window.URL.revokeObjectURL(this.state.decryptedUrl);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
|
|
|
var content = this.props.mxEvent.getContent();
|
2015-07-08 18:25:27 +03:00
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
var text = this.presentableTextForFile(content);
|
|
|
|
|
2016-01-06 05:11:07 +03:00
|
|
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
2016-11-04 17:00:26 +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_MFileBody" ref="body">
|
|
|
|
<img src="img/spinner.gif" ref="image"
|
|
|
|
alt={content.body} />
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
var contentUrl = this._getContentUrl();
|
2016-01-06 05:11:07 +03:00
|
|
|
|
2016-11-04 17:00:26 +03:00
|
|
|
if (contentUrl) {
|
2016-09-11 04:14:27 +03:00
|
|
|
if (this.props.tileShape === "file_grid") {
|
|
|
|
return (
|
|
|
|
<span className="mx_MFileBody">
|
|
|
|
<div className="mx_MImageBody_download">
|
2016-11-04 17:00:26 +03:00
|
|
|
<a className="mx_ImageBody_downloadLink" href={contentUrl} target="_blank" rel="noopener">
|
2016-09-11 04:14:27 +03:00
|
|
|
{ content.body && content.body.length > 0 ? content.body : "Attachment" }
|
|
|
|
</a>
|
|
|
|
<div className="mx_MImageBody_size">
|
|
|
|
{ content.info && content.info.size ? filesize(content.info.size) : "" }
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return (
|
|
|
|
<span className="mx_MFileBody">
|
|
|
|
<div className="mx_MImageBody_download">
|
2016-11-04 17:00:26 +03:00
|
|
|
<a href={contentUrl} target="_blank" rel="noopener">
|
2016-09-11 04:14:27 +03:00
|
|
|
<TintableSvg src="img/download.svg" width="12" height="14"/>
|
|
|
|
Download {text}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
} else {
|
2016-09-11 04:14:27 +03:00
|
|
|
var extra = text ? (': ' + text) : '';
|
2016-01-03 03:11:11 +03:00
|
|
|
return <span className="mx_MFileBody">
|
2015-11-27 18:02:32 +03:00
|
|
|
Invalid file{extra}
|
|
|
|
</span>
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|