25 lines
604 B
JavaScript
25 lines
604 B
JavaScript
import RocketChat from '../lib/rocketchat';
|
|
|
|
const canPost = async({ rid }) => {
|
|
try {
|
|
const permission = await RocketChat.hasPermission(['post-readonly'], rid);
|
|
return permission && permission['post-readonly'];
|
|
} catch {
|
|
// do nothing
|
|
}
|
|
return false;
|
|
};
|
|
|
|
const isMuted = (room, user) => room && room.muted && room.muted.find && !!room.muted.find(m => m === user.username);
|
|
|
|
export const isReadOnly = async(room, user) => {
|
|
if (room.archived) {
|
|
return true;
|
|
}
|
|
const allowPost = await canPost(room);
|
|
if (allowPost) {
|
|
return false;
|
|
}
|
|
return (room && room.ro) || isMuted(room, user);
|
|
};
|