2020-04-13 13:56:30 +00:00
|
|
|
import RocketChat from '../lib/rocketchat';
|
2022-02-09 21:16:20 +00:00
|
|
|
import { store as reduxStore } from '../lib/auxStore';
|
2022-01-12 12:54:04 +00:00
|
|
|
import { ISubscription } from '../definitions/ISubscription';
|
2020-04-13 13:56:30 +00:00
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const canPostReadOnly = async ({ rid }: { rid: string }) => {
|
2021-02-25 16:41:44 +00:00
|
|
|
// TODO: this is not reactive. If this permission changes, the component won't be updated
|
|
|
|
const postReadOnlyPermission = reduxStore.getState().permissions['post-readonly'];
|
|
|
|
const permission = await RocketChat.hasPermission([postReadOnlyPermission], rid);
|
|
|
|
return permission[0];
|
2020-04-13 13:56:30 +00:00
|
|
|
};
|
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
const isMuted = (room: ISubscription, user: { username: string }) =>
|
|
|
|
room && room.muted && room.muted.find && !!room.muted.find(m => m === user.username);
|
2020-04-13 13:56:30 +00:00
|
|
|
|
2022-01-12 12:54:04 +00:00
|
|
|
export const isReadOnly = async (
|
|
|
|
room: ISubscription,
|
|
|
|
user: { id?: string; username: string; token?: string }
|
|
|
|
): Promise<boolean> => {
|
2020-04-13 13:56:30 +00:00
|
|
|
if (room.archived) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
if (isMuted(room, user)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (room?.ro) {
|
2021-02-25 16:41:44 +00:00
|
|
|
const allowPost = await canPostReadOnly(room);
|
2020-06-26 20:22:56 +00:00
|
|
|
if (allowPost) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2020-04-13 13:56:30 +00:00
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
return false;
|
2020-04-13 13:56:30 +00:00
|
|
|
};
|