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';
|
|
|
|
|
2016-11-08 15:57:24 +03:00
|
|
|
import React from 'react';
|
|
|
|
import filesize from 'filesize';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
|
|
|
import sdk from '../../../index';
|
|
|
|
import {decryptFile} from '../../../utils/DecryptFile';
|
2016-11-16 17:16:51 +03:00
|
|
|
import Tinter from '../../../Tinter';
|
2016-11-26 02:19:20 +03:00
|
|
|
import request from 'browser-request';
|
2016-11-16 17:16:51 +03:00
|
|
|
import q from 'q';
|
2016-11-18 23:08:26 +03:00
|
|
|
import Modal from '../../../Modal';
|
|
|
|
|
2016-11-16 17:16:51 +03:00
|
|
|
|
|
|
|
// A cached tinted copy of "img/download.svg"
|
|
|
|
var tintedDownloadImageURL;
|
|
|
|
// Track a list of mounted MFileBody instances so that we can update
|
|
|
|
// the "img/download.svg" when the tint changes.
|
|
|
|
var nextMountId = 0;
|
|
|
|
const mounts = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the tinted copy of "img/download.svg" when the tint changes.
|
|
|
|
*/
|
|
|
|
function updateTintedDownloadImage() {
|
|
|
|
// Download the svg as an XML document.
|
|
|
|
// We could cache the XML response here, but since the tint rarely changes
|
|
|
|
// it's probably not worth it.
|
2016-11-26 02:19:20 +03:00
|
|
|
// Also note that we can't use fetch here because fetch doesn't support
|
|
|
|
// file URLs, which the download image will be if we're running from
|
|
|
|
// the filesystem (like in an Electron wrapper).
|
|
|
|
request({uri: "img/download.svg"}, (err, response, body) => {
|
|
|
|
if (err) return;
|
|
|
|
|
|
|
|
const svg = new DOMParser().parseFromString(body, "image/svg+xml");
|
2016-11-16 17:16:51 +03:00
|
|
|
// Apply the fixups to the XML.
|
|
|
|
const fixups = Tinter.calcSvgFixups([{contentDocument: svg}]);
|
|
|
|
Tinter.applySvgFixups(fixups);
|
|
|
|
// Encoded the fixed up SVG as a data URL.
|
|
|
|
const svgString = new XMLSerializer().serializeToString(svg);
|
|
|
|
tintedDownloadImageURL = "data:image/svg+xml;base64," + window.btoa(svgString);
|
|
|
|
// Notify each mounted MFileBody that the URL has changed.
|
|
|
|
Object.keys(mounts).forEach(function(id) {
|
|
|
|
mounts[id].tint();
|
|
|
|
});
|
2016-11-26 02:19:20 +03:00
|
|
|
});
|
2016-11-16 17:16:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Tinter.registerTintable(updateTintedDownloadImage);
|
2016-11-04 18:39:39 +03:00
|
|
|
|
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 {
|
2016-11-04 21:20:20 +03:00
|
|
|
decryptedUrl: (this.props.decryptedUrl ? this.props.decryptedUrl : null),
|
2016-11-04 17:00:26 +03:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-11-15 18:54:14 +03:00
|
|
|
/**
|
|
|
|
* Extracts a human readable label for the file attachment to use as
|
|
|
|
* link text.
|
|
|
|
*
|
|
|
|
* @params {Object} content The "content" key of the matrix event.
|
|
|
|
* @return {string} the human readable link text for the attachment.
|
|
|
|
*/
|
2015-07-08 18:25:27 +03:00
|
|
|
presentableTextForFile: function(content) {
|
|
|
|
var linkText = 'Attachment';
|
|
|
|
if (content.body && content.body.length > 0) {
|
2016-11-15 18:54:14 +03:00
|
|
|
// The content body should be the name of the file including a
|
|
|
|
// file extension.
|
2015-07-08 18:25:27 +03:00
|
|
|
linkText = content.body;
|
|
|
|
}
|
|
|
|
|
2016-11-15 18:54:14 +03:00
|
|
|
if (content.info && content.info.size) {
|
|
|
|
// If we know the size of the file then add it as human readable
|
|
|
|
// string to the end of the link text so that the user knows how
|
|
|
|
// big a file they are downloading.
|
|
|
|
// The content.info also contains a MIME-type but we don't display
|
|
|
|
// it since it is "ugly", users generally aren't aware what it
|
|
|
|
// means and the type of the attachment can usually be inferrered
|
|
|
|
// from the file extension.
|
|
|
|
linkText += ' (' + filesize(content.info.size) + ')';
|
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() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2016-11-04 17:00:26 +03:00
|
|
|
if (content.file !== undefined) {
|
|
|
|
return this.state.decryptedUrl;
|
|
|
|
} else {
|
|
|
|
return MatrixClientPeg.get().mxcUrlToHttp(content.url);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
componentDidMount: function() {
|
2016-11-16 17:16:51 +03:00
|
|
|
// Add this to the list of mounted components to receive notifications
|
|
|
|
// when the tint changes.
|
|
|
|
this.id = nextMountId++;
|
|
|
|
mounts[this.id] = this;
|
|
|
|
this.tint();
|
2016-11-04 17:00:26 +03:00
|
|
|
},
|
|
|
|
|
2016-11-16 17:16:51 +03:00
|
|
|
componentWillUnmount: function() {
|
|
|
|
// Remove this from the list of mounted components
|
|
|
|
delete mounts[this.id];
|
|
|
|
},
|
|
|
|
|
|
|
|
tint: function() {
|
|
|
|
// Update our tinted copy of "img/download.svg"
|
|
|
|
if (this.refs.downloadImage) {
|
|
|
|
this.refs.downloadImage.src = tintedDownloadImageURL;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2016-11-08 14:42:20 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2015-07-08 18:25:27 +03:00
|
|
|
|
2016-11-08 14:42:20 +03:00
|
|
|
const text = this.presentableTextForFile(content);
|
2016-11-18 23:08:26 +03:00
|
|
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-11-04 17:00:26 +03:00
|
|
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
|
|
|
|
2016-11-18 23:08:26 +03:00
|
|
|
var decrypting = false;
|
|
|
|
const decrypt = () => {
|
|
|
|
if (decrypting) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
decrypting = true;
|
|
|
|
decryptFile(content.file).then((url) => {
|
|
|
|
this.setState({
|
|
|
|
decryptedUrl: url,
|
|
|
|
});
|
|
|
|
}).catch((err) => {
|
|
|
|
console.warn("Unable to decrypt attachment: ", err)
|
|
|
|
// Set a placeholder image when we can't decrypt the image
|
|
|
|
Modal.createDialog(ErrorDialog, {
|
|
|
|
description: "Error decrypting attachment"
|
|
|
|
});
|
|
|
|
}).finally(function() {
|
|
|
|
decrypting = false;
|
|
|
|
}).done();
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2016-11-04 17:00:26 +03:00
|
|
|
// 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">
|
2016-11-18 23:08:26 +03:00
|
|
|
<div className="mx_MImageBody_download">
|
|
|
|
<a href="javascript:void(0)" onClick={decrypt}>
|
|
|
|
Decrypt {text}
|
|
|
|
</a>
|
|
|
|
</div>
|
2016-11-04 17:00:26 +03:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-08 14:42:20 +03:00
|
|
|
const contentUrl = this._getContentUrl();
|
2016-11-04 21:09:12 +03:00
|
|
|
|
2016-11-08 14:42:20 +03:00
|
|
|
const fileName = content.body && content.body.length > 0 ? content.body : "Attachment";
|
2016-11-04 21:09:12 +03:00
|
|
|
|
|
|
|
var downloadAttr = undefined;
|
|
|
|
if (this.state.decryptedUrl) {
|
|
|
|
// If the file is encrypted then we MUST download it rather than displaying it
|
|
|
|
// because Firefox is vunerable to XSS attacks in data:// URLs
|
|
|
|
// and all browsers are vunerable to XSS attacks in blob: URLs
|
|
|
|
// created with window.URL.createObjectURL
|
|
|
|
// See https://bugzilla.mozilla.org/show_bug.cgi?id=255107
|
|
|
|
// See https://w3c.github.io/FileAPI/#originOfBlobURL
|
|
|
|
//
|
|
|
|
// This is not a problem for unencrypted links because they are
|
|
|
|
// either fetched from a different domain so are safe because of
|
|
|
|
// the same-origin policy or they are fetch from the same domain,
|
|
|
|
// in which case we trust that the homeserver will set a
|
|
|
|
// Content-Security-Policy that disables script execution.
|
|
|
|
// It is reasonable to trust the homeserver in that case since
|
|
|
|
// it is the same domain that controls this javascript.
|
|
|
|
//
|
|
|
|
// We can't apply the same workaround for encrypted files because
|
|
|
|
// we can't supply HTTP headers when the user clicks on a blob:
|
|
|
|
// or data:// uri.
|
|
|
|
//
|
|
|
|
// We should probably provide a download attribute anyway so that
|
|
|
|
// the file will have the correct name when the user tries to
|
|
|
|
// download it. We can't provide a Content-Disposition header
|
|
|
|
// like we would for HTTP.
|
|
|
|
downloadAttr = fileName;
|
|
|
|
}
|
|
|
|
|
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 21:09:12 +03:00
|
|
|
<a className="mx_ImageBody_downloadLink" href={contentUrl} target="_blank" rel="noopener" download={downloadAttr}>
|
|
|
|
{ fileName }
|
2016-09-11 04:14:27 +03:00
|
|
|
</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 21:09:12 +03:00
|
|
|
<a href={contentUrl} target="_blank" rel="noopener" download={downloadAttr}>
|
2016-11-16 17:16:51 +03:00
|
|
|
<img src={tintedDownloadImageURL} width="12" height="14" ref="downloadImage"/>
|
2016-09-11 04:14:27 +03:00
|
|
|
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>
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|