This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 827
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #447 from matrix-org/dbkr/refactor_matrixtools
Refactor MatrixTools to Rooms
- Loading branch information
Showing
7 changed files
with
85 additions
and
90 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
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. | ||
*/ | ||
|
||
|
||
/** | ||
* Given a room object, return the alias we should use for it, | ||
* if any. This could be the canonical alias if one exists, otherwise | ||
* an alias selected arbitrarily but deterministically from the list | ||
* of aliases. Otherwise return null; | ||
*/ | ||
export function getDisplayAliasForRoom(room) { | ||
return room.getCanonicalAlias() || room.getAliases()[0]; | ||
} | ||
|
||
/** | ||
* If the room contains only two members including the logged-in user, | ||
* return the other one. Otherwise, return null. | ||
*/ | ||
export function getOnlyOtherMember(room, me) { | ||
const joinedMembers = room.getJoinedMembers(); | ||
|
||
if (joinedMembers.length === 2) { | ||
return joinedMembers.filter(function(m) { | ||
return m.userId !== me.userId | ||
})[0]; | ||
} | ||
|
||
return null; | ||
} | ||
|
||
export function isConfCallRoom(room, me, conferenceHandler) { | ||
if (!conferenceHandler) return false; | ||
|
||
if (me.membership != "join") { | ||
return false; | ||
} | ||
|
||
const otherMember = getOnlyOtherMember(room, me); | ||
if (otherMember === null) { | ||
return false; | ||
} | ||
|
||
if (conferenceHandler.isConferenceUser(otherMember.userId)) { | ||
return true; | ||
} | ||
} | ||
|
||
export function looksLikeDirectMessageRoom(room, me) { | ||
if (me.membership == "join" || me.membership === "ban" || | ||
(me.membership === "leave" && me.events.member.getSender() !== me.events.member.getStateKey())) | ||
{ | ||
// Used to split rooms via tags | ||
const tagNames = Object.keys(room.tags); | ||
// Used for 1:1 direct chats | ||
const joinedMembers = room.getJoinedMembers(); | ||
|
||
// Show 1:1 chats in seperate "Direct Messages" section as long as they haven't | ||
// been moved to a different tag section | ||
if (joinedMembers.length === 2 && !tagNames.length) { | ||
return true; | ||
} | ||
} | ||
return false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters