2017-07-22 02:38:01 +08:00
|
|
|
/*
|
|
|
|
Copyright 2017 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-10-29 15:43:52 +08:00
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
|
|
|
|
2017-08-05 00:22:01 +08:00
|
|
|
function memberEventDiff(ev) {
|
|
|
|
const diff = {
|
2017-08-10 22:22:53 +08:00
|
|
|
isMemberEvent: ev.getType() === 'm.room.member',
|
2017-08-05 00:22:01 +08:00
|
|
|
};
|
2017-07-22 02:38:01 +08:00
|
|
|
|
2017-08-10 22:22:53 +08:00
|
|
|
// If is not a Member Event then the other checks do not apply, so bail early.
|
2017-08-10 20:58:19 +08:00
|
|
|
if (!diff.isMemberEvent) return diff;
|
2017-07-22 02:38:01 +08:00
|
|
|
|
2017-08-05 00:22:01 +08:00
|
|
|
const content = ev.getContent();
|
|
|
|
const prevContent = ev.getPrevContent();
|
2017-07-26 18:51:41 +08:00
|
|
|
|
2018-02-28 08:49:14 +08:00
|
|
|
const isMembershipChanged = content.membership !== prevContent.membership;
|
|
|
|
diff.isJoin = isMembershipChanged && content.membership === 'join';
|
|
|
|
diff.isPart = isMembershipChanged && content.membership === 'leave' && ev.getStateKey() === ev.getSender();
|
2018-02-23 00:14:56 +08:00
|
|
|
|
2018-02-28 08:49:14 +08:00
|
|
|
const isJoinToJoin = !isMembershipChanged && content.membership === 'join';
|
2017-08-05 00:22:01 +08:00
|
|
|
diff.isDisplaynameChange = isJoinToJoin && content.displayname !== prevContent.displayname;
|
|
|
|
diff.isAvatarChange = isJoinToJoin && content.avatar_url !== prevContent.avatar_url;
|
|
|
|
return diff;
|
2017-07-22 02:38:01 +08:00
|
|
|
}
|
|
|
|
|
2017-10-29 15:43:52 +08:00
|
|
|
export default function shouldHideEvent(ev) {
|
2018-12-09 03:06:37 +08:00
|
|
|
// Wrap getValue() for readability. Calling the SettingsStore can be
|
|
|
|
// fairly resource heavy, so the checks below should avoid hitting it
|
|
|
|
// where possible.
|
2017-10-29 15:43:52 +08:00
|
|
|
const isEnabled = (name) => SettingsStore.getValue(name, ev.getRoomId());
|
|
|
|
|
2017-07-22 02:38:01 +08:00
|
|
|
// Hide redacted events
|
2019-01-25 11:57:40 +08:00
|
|
|
if (ev.isRedacted() && !isEnabled('showRedactions')) return true;
|
2019-05-15 18:49:43 +08:00
|
|
|
if (ev.isRelation("m.replace")) return true;
|
2017-08-05 00:22:01 +08:00
|
|
|
|
|
|
|
const eventDiff = memberEventDiff(ev);
|
|
|
|
|
2017-08-10 20:58:19 +08:00
|
|
|
if (eventDiff.isMemberEvent) {
|
2019-01-25 11:57:40 +08:00
|
|
|
if ((eventDiff.isJoin || eventDiff.isPart) && !isEnabled('showJoinLeaves')) return true;
|
|
|
|
if (eventDiff.isAvatarChange && !isEnabled('showAvatarChanges')) return true;
|
|
|
|
if (eventDiff.isDisplaynameChange && !isEnabled('showDisplaynameChanges')) return true;
|
2017-08-05 00:22:01 +08:00
|
|
|
}
|
|
|
|
|
2017-07-22 02:38:01 +08:00
|
|
|
return false;
|
|
|
|
}
|