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.
|
|
|
|
*/
|
|
|
|
|
2019-09-06 20:37:43 +03:00
|
|
|
import React from 'react';
|
2017-12-26 04:03:18 +03:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-06 20:37:43 +03:00
|
|
|
import createReactClass from 'create-react-class';
|
|
|
|
import sdk from '../../../index';
|
2019-11-01 01:19:42 +03:00
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
|
|
import {Mjolnir} from "../../../mjolnir/Mjolnir";
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2019-09-06 20:37:43 +03:00
|
|
|
module.exports = createReactClass({
|
2015-11-30 18:19:43 +03:00
|
|
|
displayName: 'MessageEvent',
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2016-02-17 22:50:04 +03:00
|
|
|
propTypes: {
|
|
|
|
/* the MatrixEvent to show */
|
2017-12-26 04:03:18 +03:00
|
|
|
mxEvent: PropTypes.object.isRequired,
|
2016-02-17 22:50:04 +03:00
|
|
|
|
|
|
|
/* a list of words to highlight */
|
2017-12-26 04:03:18 +03:00
|
|
|
highlights: PropTypes.array,
|
2016-02-17 22:50:04 +03:00
|
|
|
|
|
|
|
/* link URL for the highlights */
|
2017-12-26 04:03:18 +03:00
|
|
|
highlightLink: PropTypes.string,
|
2016-02-22 20:19:04 +03:00
|
|
|
|
2016-07-18 03:35:42 +03:00
|
|
|
/* should show URL previews for this event */
|
2017-12-26 04:03:18 +03:00
|
|
|
showUrlPreview: PropTypes.bool,
|
2016-07-18 03:35:42 +03:00
|
|
|
|
2016-04-07 20:58:50 +03:00
|
|
|
/* callback called when dynamic content in events are loaded */
|
2019-03-06 14:27:16 +03:00
|
|
|
onHeightChanged: PropTypes.func,
|
2016-09-11 04:14:27 +03:00
|
|
|
|
2018-05-27 03:40:48 +03:00
|
|
|
/* the shape of the tile, used */
|
2017-12-26 04:03:18 +03:00
|
|
|
tileShape: PropTypes.string,
|
2018-05-27 03:40:48 +03:00
|
|
|
|
|
|
|
/* the maximum image height to use, if the event is an image */
|
|
|
|
maxImageHeight: PropTypes.number,
|
2016-02-17 22:50:04 +03:00
|
|
|
},
|
|
|
|
|
2016-04-08 23:42:29 +03:00
|
|
|
getEventTileOps: function() {
|
2016-04-12 20:32:46 +03:00
|
|
|
return this.refs.body && this.refs.body.getEventTileOps ? this.refs.body.getEventTileOps() : null;
|
2016-04-08 23:42:29 +03:00
|
|
|
},
|
2016-02-17 22:50:04 +03:00
|
|
|
|
2019-11-01 01:19:42 +03:00
|
|
|
onTileUpdate: function() {
|
|
|
|
this.forceUpdate();
|
|
|
|
},
|
|
|
|
|
2015-11-27 18:02:32 +03:00
|
|
|
render: function() {
|
2017-10-11 19:56:17 +03:00
|
|
|
const UnknownBody = sdk.getComponent('messages.UnknownBody');
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const bodyTypes = {
|
2015-11-30 18:19:43 +03:00
|
|
|
'm.text': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.notice': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.emote': sdk.getComponent('messages.TextualBody'),
|
|
|
|
'm.image': sdk.getComponent('messages.MImageBody'),
|
|
|
|
'm.file': sdk.getComponent('messages.MFileBody'),
|
2016-04-13 02:00:24 +03:00
|
|
|
'm.audio': sdk.getComponent('messages.MAudioBody'),
|
2017-10-11 19:56:17 +03:00
|
|
|
'm.video': sdk.getComponent('messages.MVideoBody'),
|
2015-11-27 18:02:32 +03:00
|
|
|
};
|
2018-06-13 11:32:21 +03:00
|
|
|
const evTypes = {
|
|
|
|
'm.sticker': sdk.getComponent('messages.MStickerBody'),
|
|
|
|
};
|
2015-11-27 18:02:32 +03:00
|
|
|
|
2017-10-11 19:56:17 +03:00
|
|
|
const content = this.props.mxEvent.getContent();
|
2018-06-13 11:32:21 +03:00
|
|
|
const type = this.props.mxEvent.getType();
|
2017-10-11 19:56:17 +03:00
|
|
|
const msgtype = content.msgtype;
|
|
|
|
let BodyType = UnknownBody;
|
2018-06-13 11:32:21 +03:00
|
|
|
if (!this.props.mxEvent.isRedacted()) {
|
|
|
|
// only resolve BodyType if event is not redacted
|
2018-06-14 14:00:53 +03:00
|
|
|
if (type && evTypes[type]) {
|
2018-06-13 11:32:21 +03:00
|
|
|
BodyType = evTypes[type];
|
2018-06-14 14:00:53 +03:00
|
|
|
} else if (msgtype && bodyTypes[msgtype]) {
|
|
|
|
BodyType = bodyTypes[msgtype];
|
2018-06-13 11:32:21 +03:00
|
|
|
} else if (content.url) {
|
|
|
|
// Fallback to MFileBody if there's a content URL
|
|
|
|
BodyType = bodyTypes['m.file'];
|
|
|
|
}
|
2015-11-27 18:02:32 +03:00
|
|
|
}
|
|
|
|
|
2019-11-01 01:19:42 +03:00
|
|
|
if (SettingsStore.isFeatureEnabled("feature_mjolnir")) {
|
|
|
|
const allowRender = localStorage.getItem(`mx_mjolnir_render_${this.props.mxEvent.getRoomId()}__${this.props.mxEvent.getId()}`) === "true";
|
|
|
|
|
|
|
|
if (!allowRender) {
|
|
|
|
const userDomain = this.props.mxEvent.getSender().split(':').slice(1).join(':');
|
|
|
|
const userBanned = Mjolnir.sharedInstance().isUserBanned(this.props.mxEvent.getSender());
|
|
|
|
const serverBanned = Mjolnir.sharedInstance().isServerBanned(userDomain);
|
|
|
|
|
|
|
|
if (userBanned || serverBanned) {
|
|
|
|
BodyType = sdk.getComponent('messages.MjolnirBody');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-05 01:21:38 +03:00
|
|
|
return <BodyType
|
|
|
|
ref="body" mxEvent={this.props.mxEvent}
|
|
|
|
highlights={this.props.highlights}
|
|
|
|
highlightLink={this.props.highlightLink}
|
|
|
|
showUrlPreview={this.props.showUrlPreview}
|
|
|
|
tileShape={this.props.tileShape}
|
2018-05-27 03:40:48 +03:00
|
|
|
maxImageHeight={this.props.maxImageHeight}
|
2019-05-15 13:49:43 +03:00
|
|
|
replacingEventId={this.props.replacingEventId}
|
2019-06-12 19:52:34 +03:00
|
|
|
editState={this.props.editState}
|
2019-11-01 01:19:42 +03:00
|
|
|
onHeightChanged={this.props.onHeightChanged}
|
|
|
|
onTileUpdate={this.onTileUpdate}
|
|
|
|
/>;
|
2015-11-27 18:02:32 +03:00
|
|
|
},
|
|
|
|
});
|