2018-12-13 04:10:27 +08:00
|
|
|
import Users from '/imports/api/users';
|
2019-03-30 02:22:52 +08:00
|
|
|
import Meetings from '/imports/api/meetings';
|
2019-03-29 02:47:11 +08:00
|
|
|
import Note from '/imports/api/note';
|
2018-12-13 04:10:27 +08:00
|
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
import Settings from '/imports/ui/services/settings';
|
2019-06-01 04:02:33 +08:00
|
|
|
import { Session } from 'meteor/session';
|
2018-12-13 04:10:27 +08:00
|
|
|
|
|
|
|
const NOTE_CONFIG = Meteor.settings.public.note;
|
2019-08-31 02:43:48 +08:00
|
|
|
const ROLE_MODERATOR = Meteor.settings.public.user.role_moderator;
|
2018-12-13 04:10:27 +08:00
|
|
|
|
2019-03-29 02:47:11 +08:00
|
|
|
const getNoteId = () => {
|
2019-08-22 20:05:06 +08:00
|
|
|
const note = Note.findOne({ meetingId: Auth.meetingID }, { fields: { noteId: 1 } });
|
2019-05-09 04:34:19 +08:00
|
|
|
return note ? note.noteId : '';
|
2018-12-13 04:10:27 +08:00
|
|
|
};
|
|
|
|
|
2019-03-29 02:47:11 +08:00
|
|
|
const getReadOnlyNoteId = () => {
|
2019-08-22 20:05:06 +08:00
|
|
|
const note = Note.findOne({ meetingId: Auth.meetingID }, { fields: { readOnlyNoteId: 1 } });
|
2019-05-09 04:34:19 +08:00
|
|
|
return note ? note.readOnlyNoteId : '';
|
2019-03-29 02:47:11 +08:00
|
|
|
};
|
|
|
|
|
2018-12-13 04:10:27 +08:00
|
|
|
const getLang = () => {
|
2019-05-09 04:34:19 +08:00
|
|
|
const { locale } = Settings.application;
|
|
|
|
return locale ? locale.toLowerCase() : '';
|
2018-12-13 04:10:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const getNoteParams = () => {
|
2019-05-09 04:34:19 +08:00
|
|
|
const { config } = NOTE_CONFIG;
|
2019-08-22 20:05:06 +08:00
|
|
|
const User = Users.findOne({ userId: Auth.userID }, { fields: { name: 1, color: 1 } });
|
2019-01-10 02:09:05 +08:00
|
|
|
config.userName = User.name;
|
|
|
|
config.userColor = User.color;
|
2018-12-13 04:10:27 +08:00
|
|
|
config.lang = getLang();
|
|
|
|
|
2019-05-09 04:34:19 +08:00
|
|
|
const params = [];
|
|
|
|
for (const key in config) {
|
2018-12-13 04:10:27 +08:00
|
|
|
if (config.hasOwnProperty(key)) {
|
2019-08-22 20:05:06 +08:00
|
|
|
params.push(`${key}=${encodeURIComponent(config[key])}`);
|
2018-12-13 04:10:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return params.join('&');
|
2019-03-29 02:47:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const isLocked = () => {
|
2019-08-22 20:05:06 +08:00
|
|
|
const meeting = Meetings.findOne({ meetingId: Auth.meetingID }, { fields: { 'lockSettingsProps.disableNote': 1 } });
|
|
|
|
const user = Users.findOne({ userId: Auth.userID }, { fields: { locked: 1, role: 1 } });
|
2019-03-30 02:22:52 +08:00
|
|
|
|
2019-08-22 20:05:06 +08:00
|
|
|
if (meeting.lockSettingsProps && user.locked && user.role !== ROLE_MODERATOR) {
|
2019-03-30 02:22:52 +08:00
|
|
|
return meeting.lockSettingsProps.disableNote;
|
|
|
|
}
|
2019-03-29 02:47:11 +08:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
const getReadOnlyURL = () => {
|
|
|
|
const readOnlyNoteId = getReadOnlyNoteId();
|
2019-08-22 20:05:06 +08:00
|
|
|
const url = Auth.authenticateURL(`${NOTE_CONFIG.url}/p/${readOnlyNoteId}`);
|
2019-03-29 02:47:11 +08:00
|
|
|
return url;
|
|
|
|
};
|
2018-12-13 04:10:27 +08:00
|
|
|
|
|
|
|
const getNoteURL = () => {
|
2019-03-29 02:47:11 +08:00
|
|
|
const noteId = getNoteId();
|
2018-12-13 04:10:27 +08:00
|
|
|
const params = getNoteParams();
|
2019-08-22 20:05:06 +08:00
|
|
|
const url = Auth.authenticateURL(`${NOTE_CONFIG.url}/p/${noteId}?${params}`);
|
2018-12-13 04:10:27 +08:00
|
|
|
return url;
|
|
|
|
};
|
|
|
|
|
2019-06-01 04:02:33 +08:00
|
|
|
const getRevs = () => {
|
2019-08-22 20:05:06 +08:00
|
|
|
const note = Note.findOne({ meetingId: Auth.meetingID }, { fields: { revs: 1 } });
|
2019-06-01 04:02:33 +08:00
|
|
|
return note ? note.revs : 0;
|
|
|
|
};
|
|
|
|
|
2019-03-30 02:22:52 +08:00
|
|
|
const isEnabled = () => {
|
|
|
|
const note = Note.findOne({ meetingId: Auth.meetingID });
|
|
|
|
return NOTE_CONFIG.enabled && note;
|
|
|
|
};
|
|
|
|
|
2019-08-22 20:05:06 +08:00
|
|
|
const isPanelOpened = () => Session.get('openPanel') === 'note';
|
2019-06-01 04:02:33 +08:00
|
|
|
|
2018-12-13 04:10:27 +08:00
|
|
|
export default {
|
|
|
|
getNoteURL,
|
2019-03-29 02:47:11 +08:00
|
|
|
getReadOnlyURL,
|
|
|
|
isLocked,
|
2019-03-30 02:22:52 +08:00
|
|
|
isEnabled,
|
2019-06-01 04:02:33 +08:00
|
|
|
isPanelOpened,
|
|
|
|
getRevs,
|
2018-12-13 04:10:27 +08:00
|
|
|
};
|