Review comments
Conflicts: src/ContentMessages.js
This commit is contained in:
parent
734c4eb638
commit
bf5ecbd016
6 changed files with 79 additions and 66 deletions
|
@ -81,6 +81,24 @@ function infoForVideoFile(videoFile) {
|
||||||
return deferred.promise;
|
return deferred.promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read the file as an ArrayBuffer.
|
||||||
|
* @return {Promise} A promise that resolves with an ArrayBuffer when the file
|
||||||
|
* is read.
|
||||||
|
*/
|
||||||
|
function readFileAsArrayBuffer(file) {
|
||||||
|
const deferred = q.defer();
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = function(e) {
|
||||||
|
deferred.resolve(e.target.result);
|
||||||
|
};
|
||||||
|
reader.onerror = function(e) {
|
||||||
|
deferred.reject(e);
|
||||||
|
};
|
||||||
|
reader.readAsArrayBuffer(file);
|
||||||
|
return deferred.promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
class ContentMessages {
|
class ContentMessages {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
|
@ -38,7 +38,7 @@ export default class MAudioBody extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
_getContentUrl() {
|
_getContentUrl() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
return this.state.decryptedUrl;
|
return this.state.decryptedUrl;
|
||||||
} else {
|
} else {
|
||||||
|
@ -49,11 +49,11 @@ export default class MAudioBody extends React.Component {
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
var content = this.props.mxEvent.getContent();
|
var content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
decryptFile(content.file).then((url) => {
|
decryptFile(content.file).done((url) => {
|
||||||
this.setState({
|
this.setState({
|
||||||
decryptedUrl: url
|
decryptedUrl: url
|
||||||
});
|
});
|
||||||
}).catch((err) => {
|
}, (err) => {
|
||||||
console.warn("Unable to decrypt attachment: ", err)
|
console.warn("Unable to decrypt attachment: ", err)
|
||||||
// Set a placeholder image when we can't decrypt the image.
|
// Set a placeholder image when we can't decrypt the image.
|
||||||
this.refs.image.src = "img/warning.svg";
|
this.refs.image.src = "img/warning.svg";
|
||||||
|
@ -62,7 +62,7 @@ export default class MAudioBody extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
|
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
// Need to decrypt the attachment
|
// Need to decrypt the attachment
|
||||||
|
@ -76,7 +76,7 @@ export default class MAudioBody extends React.Component {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
var contentUrl = this._getContentUrl();
|
const contentUrl = this._getContentUrl();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<span className="mx_MAudioBody">
|
<span className="mx_MAudioBody">
|
||||||
|
|
|
@ -55,7 +55,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getContentUrl: function() {
|
_getContentUrl: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
return this.state.decryptedUrl;
|
return this.state.decryptedUrl;
|
||||||
} else {
|
} else {
|
||||||
|
@ -64,25 +64,24 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
var self = this;
|
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
DecryptFile.decryptFile(content.file).then(function(url) {
|
DecryptFile.decryptFile(content.file).done((url) => {
|
||||||
self.setState({
|
this.setState({
|
||||||
decryptedUrl: url,
|
decryptedUrl: url,
|
||||||
});
|
});
|
||||||
}).catch(function (err) {
|
}, (err) => {
|
||||||
console.warn("Unable to decrypt attachment: ", err)
|
console.warn("Unable to decrypt attachment: ", err)
|
||||||
// Set a placeholder image when we can't decrypt the image.
|
// Set a placeholder image when we can't decrypt the image.
|
||||||
self.refs.image.src = "img/warning.svg";
|
this.refs.image.src = "img/warning.svg";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
|
|
||||||
var text = this.presentableTextForFile(content);
|
const text = this.presentableTextForFile(content);
|
||||||
|
|
||||||
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
var TintableSvg = sdk.getComponent("elements.TintableSvg");
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
|
@ -98,9 +97,9 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
var contentUrl = this._getContentUrl();
|
const contentUrl = this._getContentUrl();
|
||||||
|
|
||||||
var fileName = content.body && content.body.length > 0 ? content.body : "Attachment";
|
const fileName = content.body && content.body.length > 0 ? content.body : "Attachment";
|
||||||
|
|
||||||
var downloadAttr = undefined;
|
var downloadAttr = undefined;
|
||||||
if (this.state.decryptedUrl) {
|
if (this.state.decryptedUrl) {
|
||||||
|
|
|
@ -16,17 +16,14 @@ limitations under the License.
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var React = require('react');
|
import React from 'react';
|
||||||
var filesize = require('filesize');
|
|
||||||
|
|
||||||
import MFileBody from './MFileBody';
|
import MFileBody from './MFileBody';
|
||||||
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
var MatrixClientPeg = require('../../../MatrixClientPeg');
|
import ImageUtils from '../../../ImageUtils';
|
||||||
var ImageUtils = require('../../../ImageUtils');
|
import Modal from '../../../Modal';
|
||||||
var Modal = require('../../../Modal');
|
import sdk from '../../../index';
|
||||||
var sdk = require('../../../index');
|
import dis from '../../../dispatcher';
|
||||||
var dis = require("../../../dispatcher");
|
import DecryptFile from '../../../utils/DecryptFile';
|
||||||
var DecryptFile = require('../../../utils/DecryptFile');
|
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'MImageBody',
|
displayName: 'MImageBody',
|
||||||
|
@ -86,7 +83,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getContentUrl: function() {
|
_getContentUrl: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
return this.state.decryptedUrl;
|
return this.state.decryptedUrl;
|
||||||
} else {
|
} else {
|
||||||
|
@ -95,7 +92,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getThumbUrl: function() {
|
_getThumbUrl: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
// TODO: Decrypt and use the thumbnail file if one is present.
|
// TODO: Decrypt and use the thumbnail file if one is present.
|
||||||
return this.state.decryptedUrl;
|
return this.state.decryptedUrl;
|
||||||
|
@ -107,17 +104,16 @@ module.exports = React.createClass({
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
this.dispatcherRef = dis.register(this.onAction);
|
this.dispatcherRef = dis.register(this.onAction);
|
||||||
this.fixupHeight();
|
this.fixupHeight();
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
var self = this;
|
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
DecryptFile.decryptFile(content.file).then(function(url) {
|
DecryptFile.decryptFile(content.file).done((url) => {
|
||||||
self.setState({
|
this.setState({
|
||||||
decryptedUrl: url,
|
decryptedUrl: url,
|
||||||
});
|
});
|
||||||
}).catch(function (err) {
|
}, (err) => {
|
||||||
console.warn("Unable to decrypt attachment: ", err)
|
console.warn("Unable to decrypt attachment: ", err)
|
||||||
// Set a placeholder image when we can't decrypt the image.
|
// Set a placeholder image when we can't decrypt the image.
|
||||||
self.refs.image.src = "img/warning.svg";
|
this.refs.image.src = "img/warning.svg";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -16,15 +16,12 @@ limitations under the License.
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var React = require('react');
|
import React from require('react');
|
||||||
var filesize = require('filesize');
|
|
||||||
|
|
||||||
import MFileBody from './MFileBody';
|
import MFileBody from './MFileBody';
|
||||||
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||||
var MatrixClientPeg = require('../../../MatrixClientPeg');
|
import Model from '../../../Modal';
|
||||||
var Modal = require('../../../Modal');
|
import sdk from '../../../index';
|
||||||
var sdk = require('../../../index');
|
import DecryptFile from '../../../utils/DecryptFile';
|
||||||
var DecryptFile = require("../../../utils/DecryptFile")
|
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
displayName: 'MVideoBody',
|
displayName: 'MVideoBody',
|
||||||
|
@ -59,7 +56,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getContentUrl: function() {
|
_getContentUrl: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
return this.state.decryptedUrl;
|
return this.state.decryptedUrl;
|
||||||
} else {
|
} else {
|
||||||
|
@ -68,7 +65,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getThumbUrl: function() {
|
_getThumbUrl: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
if (content.file !== undefined) {
|
if (content.file !== undefined) {
|
||||||
return this.state.decryptedThumbnailUrl;
|
return this.state.decryptedThumbnailUrl;
|
||||||
} else if (content.info.thumbnail_url) {
|
} else if (content.info.thumbnail_url) {
|
||||||
|
@ -79,9 +76,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
var self = this;
|
|
||||||
|
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
var thumbnailPromise = Promise.resolve(null);
|
var thumbnailPromise = Promise.resolve(null);
|
||||||
if (content.info.thumbnail_file) {
|
if (content.info.thumbnail_file) {
|
||||||
|
@ -89,25 +84,25 @@ module.exports = React.createClass({
|
||||||
content.info.thumbnail_file
|
content.info.thumbnail_file
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
thumbnailPromise.then(function(thumbnailUrl) {
|
thumbnailPromise.done((thumbnailUrl) => {
|
||||||
DecryptFile.decryptFile(
|
DecryptFile.decryptFile(
|
||||||
content.file
|
content.file
|
||||||
).then(function(contentUrl) {
|
).then(function(contentUrl) {
|
||||||
self.setState({
|
this.setState({
|
||||||
decryptedUrl: contentUrl,
|
decryptedUrl: contentUrl,
|
||||||
decryptedThumbnailUrl: thumbnailUrl,
|
decryptedThumbnailUrl: thumbnailUrl,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}).catch(function (err) {
|
}, (err) => {
|
||||||
console.warn("Unable to decrypt attachment: ", err)
|
console.warn("Unable to decrypt attachment: ", err)
|
||||||
// Set a placeholder image when we can't decrypt the image.
|
// Set a placeholder image when we can't decrypt the image.
|
||||||
self.refs.image.src = "img/warning.svg";
|
this.refs.image.src = "img/warning.svg";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function() {
|
render: function() {
|
||||||
var content = this.props.mxEvent.getContent();
|
const content = this.props.mxEvent.getContent();
|
||||||
|
|
||||||
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
if (content.file !== undefined && this.state.decryptedUrl === null) {
|
||||||
// Need to decrypt the attachment
|
// Need to decrypt the attachment
|
||||||
|
@ -121,15 +116,15 @@ module.exports = React.createClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
var contentUrl = this._getContentUrl();
|
const contentUrl = this._getContentUrl();
|
||||||
var thumbUrl = this._getThumbUrl();
|
const thumbUrl = this._getThumbUrl();
|
||||||
|
|
||||||
var height = null;
|
var height = null;
|
||||||
var width = null;
|
var width = null;
|
||||||
var poster = null;
|
var poster = null;
|
||||||
var preload = "metadata";
|
var preload = "metadata";
|
||||||
if (content.info) {
|
if (content.info) {
|
||||||
var scale = this.thumbScale(content.info.w, content.info.h, 480, 360);
|
const scale = this.thumbScale(content.info.w, content.info.h, 480, 360);
|
||||||
if (scale) {
|
if (scale) {
|
||||||
width = Math.floor(content.info.w * scale);
|
width = Math.floor(content.info.w * scale);
|
||||||
height = Math.floor(content.info.h * scale);
|
height = Math.floor(content.info.h * scale);
|
||||||
|
|
|
@ -14,22 +14,19 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use struct';
|
|
||||||
|
|
||||||
// Pull in the encryption lib so that we can decrypt attachments.
|
// Pull in the encryption lib so that we can decrypt attachments.
|
||||||
var encrypt = require("browser-encrypt-attachment");
|
import encrypt from 'browser-encrypt-attachment';
|
||||||
// Pull in a fetch polyfill so we can download encrypted attachments.
|
// Pull in a fetch polyfill so we can download encrypted attachments.
|
||||||
require("isomorphic-fetch");
|
import 'isomorphic-fetch';
|
||||||
// Grab the client so that we can turn mxc:// URLs into https:// URLS.
|
// Grab the client so that we can turn mxc:// URLs into https:// URLS.
|
||||||
var MatrixClientPeg = require('../MatrixClientPeg');
|
import MatrixClientPeg from '../MatrixClientPeg';
|
||||||
var q = require('q');
|
import q from 'q';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Read blob as a data:// URI.
|
* Read blob as a data:// URI.
|
||||||
* @return {Promise} A promise that resolves with the data:// URI.
|
* @return {Promise} A promise that resolves with the data:// URI.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function readBlobAsDataUri(file) {
|
function readBlobAsDataUri(file) {
|
||||||
var deferred = q.defer();
|
var deferred = q.defer();
|
||||||
var reader = new FileReader();
|
var reader = new FileReader();
|
||||||
|
@ -44,13 +41,21 @@ function readBlobAsDataUri(file) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Decrypt a file attached to a matrix event.
|
||||||
|
* @param file {Object} The json taken from the matrix event.
|
||||||
|
* This passed to [link]{@link https://github.com/matrix-org/browser-encrypt-attachments}
|
||||||
|
* as the encryption info object, so will also have the those keys in addition to
|
||||||
|
* the keys below.
|
||||||
|
* @param file.url {string} An mxc:// URL for the encrypted file.
|
||||||
|
* @param file.mimetype {string} The MIME-type of the plaintext file.
|
||||||
|
*/
|
||||||
export function decryptFile(file) {
|
export function decryptFile(file) {
|
||||||
var url = MatrixClientPeg.get().mxcUrlToHttp(file.url);
|
const url = MatrixClientPeg.get().mxcUrlToHttp(file.url);
|
||||||
var self = this;
|
|
||||||
// Download the encrypted file as an array buffer.
|
// Download the encrypted file as an array buffer.
|
||||||
return fetch(url).then(function (response) {
|
return fetch(url).then(function(response) {
|
||||||
return response.arrayBuffer();
|
return response.arrayBuffer();
|
||||||
}).then(function (responseData) {
|
}).then(function(responseData) {
|
||||||
// Decrypt the array buffer using the information taken from
|
// Decrypt the array buffer using the information taken from
|
||||||
// the event content.
|
// the event content.
|
||||||
return encrypt.decryptAttachment(responseData, file);
|
return encrypt.decryptAttachment(responseData, file);
|
||||||
|
|
Loading…
Reference in a new issue