/* Copyright 2015, 2016 OpenMarket Ltd 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. */ import React, {createRef} from 'react'; import PropTypes from 'prop-types'; import createReactClass from 'create-react-class'; import sdk from '../../../index'; import SettingsStore from "../../../settings/SettingsStore"; import {Mjolnir} from "../../../mjolnir/Mjolnir"; module.exports = createReactClass({ displayName: 'MessageEvent', propTypes: { /* the MatrixEvent to show */ mxEvent: PropTypes.object.isRequired, /* a list of words to highlight */ highlights: PropTypes.array, /* link URL for the highlights */ highlightLink: PropTypes.string, /* should show URL previews for this event */ showUrlPreview: PropTypes.bool, /* callback called when dynamic content in events are loaded */ onHeightChanged: PropTypes.func, /* the shape of the tile, used */ tileShape: PropTypes.string, /* the maximum image height to use, if the event is an image */ maxImageHeight: PropTypes.number, }, UNSAFE_componentWillMount: function() { this._body = createRef(); }, getEventTileOps: function() { return this._body.current && this._body.current.getEventTileOps ? this._body.current.getEventTileOps() : null; }, onTileUpdate: function() { this.forceUpdate(); }, render: function() { const UnknownBody = sdk.getComponent('messages.UnknownBody'); const bodyTypes = { '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'), 'm.audio': sdk.getComponent('messages.MAudioBody'), 'm.video': sdk.getComponent('messages.MVideoBody'), }; const evTypes = { 'm.sticker': sdk.getComponent('messages.MStickerBody'), }; const content = this.props.mxEvent.getContent(); const type = this.props.mxEvent.getType(); const msgtype = content.msgtype; let BodyType = UnknownBody; if (!this.props.mxEvent.isRedacted()) { // only resolve BodyType if event is not redacted if (type && evTypes[type]) { BodyType = evTypes[type]; } else if (msgtype && bodyTypes[msgtype]) { BodyType = bodyTypes[msgtype]; } else if (content.url) { // Fallback to MFileBody if there's a content URL BodyType = bodyTypes['m.file']; } } if (SettingsStore.isFeatureEnabled("feature_mjolnir")) { const key = `mx_mjolnir_render_${this.props.mxEvent.getRoomId()}__${this.props.mxEvent.getId()}`; const allowRender = localStorage.getItem(key) === "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'); } } } return ; }, });