bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/service.js

191 lines
4.8 KiB
JavaScript
Raw Normal View History

import PresentationPods from '/imports/api/presentation-pods';
import Presentations from '/imports/api/presentations';
import { Slides, SlidePositions } from '/imports/api/slides';
2016-11-12 03:02:46 +08:00
import Auth from '/imports/ui/services/auth';
import PollService from '/imports/ui/components/poll/service';
2016-11-12 03:02:46 +08:00
const POLL_SETTINGS = Meteor.settings.public.poll;
const MAX_CUSTOM_FIELDS = POLL_SETTINGS.maxCustom;
const getCurrentPresentation = podId => Presentations.findOne({
podId,
2017-07-25 02:46:53 +08:00
current: true,
2016-11-12 03:02:46 +08:00
});
const downloadPresentationUri = (podId) => {
const currentPresentation = getCurrentPresentation(podId);
if (!currentPresentation) {
return null;
}
const presentationFileName = `${currentPresentation.id}.${currentPresentation.name.split('.').pop()}`;
const uri = `https://${window.document.location.hostname}/bigbluebutton/presentation/download/`
+ `${currentPresentation.meetingId}/${currentPresentation.id}`
+ `?presFilename=${encodeURIComponent(presentationFileName)}`;
return uri;
};
const isPresentationDownloadable = (podId) => {
const currentPresentation = getCurrentPresentation(podId);
if (!currentPresentation) {
return null;
}
return currentPresentation.downloadable;
};
const getCurrentSlide = (podId) => {
const currentPresentation = getCurrentPresentation(podId);
2016-11-12 03:02:46 +08:00
if (!currentPresentation) {
return null;
}
2019-03-12 00:21:12 +08:00
return Slides.findOne({
podId,
presentationId: currentPresentation.id,
current: true,
}, {
fields: {
meetingId: 0,
thumbUri: 0,
swfUri: 0,
txtUri: 0,
},
2019-03-12 00:21:12 +08:00
});
2016-11-12 03:02:46 +08:00
};
2016-07-16 04:45:54 +08:00
const getSlidePosition = (podId, presentationId, slideId) => SlidePositions.findOne({
podId,
presentationId,
id: slideId,
});
2019-02-22 05:01:39 +08:00
const currentSlidHasContent = () => {
const currentSlide = getCurrentSlide('DEFAULT_PRESENTATION_POD');
if (!currentSlide) return false;
2019-03-12 00:21:12 +08:00
const {
content,
} = currentSlide;
2019-02-22 05:01:39 +08:00
return !!content.length;
};
const parseCurrentSlideContent = (yesValue, noValue, abstentionValue, trueValue, falseValue) => {
const pollTypes = PollService.pollTypes;
2019-02-22 05:01:39 +08:00
const currentSlide = getCurrentSlide('DEFAULT_PRESENTATION_POD');
const quickPollOptions = [];
if (!currentSlide) return quickPollOptions;
2021-03-05 02:00:21 +08:00
let {
2019-03-12 00:21:12 +08:00
content,
} = currentSlide;
2019-02-22 05:01:39 +08:00
const pollRegex = /[1-9A-Ia-i][.)].*/g;
2019-10-25 02:46:19 +08:00
let optionsPoll = content.match(pollRegex) || [];
if (optionsPoll) optionsPoll = optionsPoll.map(opt => `\r${opt[0]}.`);
2019-10-25 02:46:19 +08:00
2019-02-22 05:01:39 +08:00
optionsPoll.reduce((acc, currentValue) => {
const lastElement = acc[acc.length - 1];
if (!lastElement) {
acc.push({
options: [currentValue],
});
return acc;
}
2019-03-12 00:21:12 +08:00
const {
options,
} = lastElement;
2019-02-22 05:01:39 +08:00
const lastOption = options[options.length - 1];
const isLastOptionInteger = !!parseInt(lastOption.charAt(1), 10);
const isCurrentValueInteger = !!parseInt(currentValue.charAt(1), 10);
if (isLastOptionInteger === isCurrentValueInteger) {
if (currentValue.toLowerCase().charCodeAt(1) > lastOption.toLowerCase().charCodeAt(1)) {
options.push(currentValue);
} else {
acc.push({
options: [currentValue],
});
}
} else {
acc.push({
options: [currentValue],
});
}
return acc;
2019-03-12 00:21:12 +08:00
}, []).filter(({
options,
}) => options.length > 1 && options.length < 10).forEach(poll => {
if (poll.options.length <= 5 || MAX_CUSTOM_FIELDS <= 5) {
const maxAnswer = poll.options.length > MAX_CUSTOM_FIELDS
? MAX_CUSTOM_FIELDS
: poll.options.length
quickPollOptions.push({
type: `${pollTypes.Letter}${maxAnswer}`,
poll,
})
} else {
quickPollOptions.push({
type: pollTypes.Custom,
poll,
})
}
});
2019-03-12 00:21:12 +08:00
2021-03-05 02:00:21 +08:00
if (quickPollOptions.length > 0) {
content = content.replace(new RegExp(pollRegex), '');
}
const ynPoll = PollService.matchYesNoPoll(yesValue, noValue, content);
const ynaPoll = PollService.matchYesNoAbstentionPoll(yesValue, noValue, abstentionValue, content);
const tfPoll = PollService.matchTrueFalsePoll(trueValue, falseValue, content);
2021-03-05 02:00:21 +08:00
2019-03-12 00:21:12 +08:00
ynPoll.forEach(poll => quickPollOptions.push({
type: pollTypes.YesNo,
2019-03-12 00:21:12 +08:00
poll,
}));
ynaPoll.forEach(poll => quickPollOptions.push({
type: pollTypes.YesNoAbstention,
poll,
}));
2019-03-12 00:21:12 +08:00
tfPoll.forEach(poll => quickPollOptions.push({
type: pollTypes.TrueFalse,
2019-03-12 00:21:12 +08:00
poll,
}));
return {
slideId: currentSlide.id,
quickPollOptions,
};
2019-02-22 05:01:39 +08:00
};
const isPresenter = (podId) => {
2021-06-14 20:55:18 +08:00
const selector = {
meetingId: Auth.meetingID,
podId,
};
const pod = PresentationPods.findOne(selector);
return pod?.currentPresenterId === Auth.userID;
2016-11-22 23:46:08 +08:00
};
2016-11-12 03:02:46 +08:00
export default {
2016-11-12 03:02:46 +08:00
getCurrentSlide,
getSlidePosition,
2016-11-12 03:02:46 +08:00
isPresenter,
isPresentationDownloadable,
downloadPresentationUri,
2019-02-22 05:01:39 +08:00
currentSlidHasContent,
parseCurrentSlideContent,
getCurrentPresentation,
};