31 lines
896 B
JavaScript
31 lines
896 B
JavaScript
import { check } from 'meteor/check';
|
|
import Presentations from '/imports/api/presentations';
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
export default function setPresentationExporting(meetingId, presentationId, exportation) {
|
|
check(meetingId, String);
|
|
check(presentationId, String);
|
|
check(exportation, Object);
|
|
|
|
const selector = {
|
|
meetingId,
|
|
id: presentationId,
|
|
};
|
|
|
|
const modifier = {
|
|
$set: {
|
|
exportation,
|
|
},
|
|
};
|
|
|
|
try {
|
|
const { numberAffected } = Presentations.upsert(selector, modifier);
|
|
|
|
if (numberAffected && ['RUNNING', 'EXPORTED'].includes(exportation?.status)) {
|
|
Logger.info(`Set exporting status on presentation ${presentationId} in meeting ${meetingId} status=${exportation.status}`);
|
|
}
|
|
} catch (err) {
|
|
Logger.error(`Could not set exporting status on pres ${presentationId} in meeting ${meetingId} ${err}`);
|
|
}
|
|
}
|