2021-10-20 04:35:39 +08:00
|
|
|
import Users from '/imports/api/users';
|
2017-02-25 04:19:53 +08:00
|
|
|
import Auth from '/imports/ui/services/auth';
|
2017-03-21 02:00:04 +08:00
|
|
|
import Settings from '/imports/ui/services/settings';
|
2022-03-15 22:54:33 +08:00
|
|
|
import {notify} from '/imports/ui/services/notification';
|
2021-05-30 23:09:33 +08:00
|
|
|
import GuestService from '/imports/ui/components/waiting-users/service';
|
2022-09-29 00:48:27 +08:00
|
|
|
import Intl from '/imports/ui/services/locale';
|
2017-02-16 02:49:40 +08:00
|
|
|
|
2017-02-25 04:19:53 +08:00
|
|
|
const getUserRoles = () => {
|
|
|
|
const user = Users.findOne({
|
|
|
|
userId: Auth.userID,
|
2017-07-26 22:09:07 +08:00
|
|
|
});
|
2017-02-25 04:19:53 +08:00
|
|
|
|
|
|
|
return user.role;
|
|
|
|
};
|
|
|
|
|
2022-02-26 01:56:03 +08:00
|
|
|
const isPresenter = () => {
|
|
|
|
const user = Users.findOne({
|
|
|
|
userId: Auth.userID,
|
|
|
|
});
|
|
|
|
|
|
|
|
return user.presenter;
|
|
|
|
};
|
|
|
|
|
2021-05-30 23:09:33 +08:00
|
|
|
const showGuestNotification = () => {
|
|
|
|
const guestPolicy = GuestService.getGuestPolicy();
|
|
|
|
|
|
|
|
// Guest notification only makes sense when guest
|
|
|
|
// entrance is being controlled by moderators
|
|
|
|
return guestPolicy === 'ASK_MODERATOR';
|
|
|
|
};
|
|
|
|
|
2022-03-15 22:54:33 +08:00
|
|
|
const isKeepPushingLayoutEnabled = () => Meteor.settings.public.layout.showPushLayoutToggle;
|
2022-02-23 01:41:16 +08:00
|
|
|
|
2022-09-29 00:48:27 +08:00
|
|
|
const updateSettings = (obj, msgDescriptor) => {
|
2017-10-11 06:08:51 +08:00
|
|
|
Object.keys(obj).forEach(k => (Settings[k] = obj[k]));
|
2017-03-29 02:41:48 +08:00
|
|
|
Settings.save();
|
2019-05-23 02:54:30 +08:00
|
|
|
|
2022-09-29 00:48:27 +08:00
|
|
|
if (msgDescriptor) {
|
2019-05-23 02:54:30 +08:00
|
|
|
// prevents React state update on unmounted component
|
|
|
|
setTimeout(() => {
|
2022-09-29 00:48:27 +08:00
|
|
|
Intl.formatMessage(msgDescriptor).then((txt) => {
|
|
|
|
notify(
|
|
|
|
txt,
|
|
|
|
'info',
|
|
|
|
'settings',
|
|
|
|
);
|
|
|
|
});
|
2019-05-23 02:54:30 +08:00
|
|
|
}, 0);
|
|
|
|
}
|
2017-02-25 04:19:53 +08:00
|
|
|
};
|
|
|
|
|
2021-03-11 19:42:41 +08:00
|
|
|
const getAvailableLocales = () => fetch('./locale-list').then(locales => locales.json());
|
2017-04-06 20:36:59 +08:00
|
|
|
|
2017-02-16 02:49:40 +08:00
|
|
|
export {
|
2017-02-25 04:19:53 +08:00
|
|
|
getUserRoles,
|
2022-02-26 01:56:03 +08:00
|
|
|
isPresenter,
|
2021-05-30 23:09:33 +08:00
|
|
|
showGuestNotification,
|
2017-03-29 02:41:48 +08:00
|
|
|
updateSettings,
|
2022-02-23 01:41:16 +08:00
|
|
|
isKeepPushingLayoutEnabled,
|
2017-04-06 20:36:59 +08:00
|
|
|
getAvailableLocales,
|
2017-02-16 02:49:40 +08:00
|
|
|
};
|