47 lines
1.0 KiB
JavaScript
47 lines
1.0 KiB
JavaScript
import Captions from '/imports/api/captions';
|
|
import Logger from '/imports/startup/server/logger';
|
|
import { check } from 'meteor/check';
|
|
import addCaption from '../modifiers/addCaption';
|
|
|
|
export default function handleCaptionOwnerUpdate({ body }, meetingId) {
|
|
const { ownerId, locale } = body;
|
|
|
|
check(meetingId, String);
|
|
check(locale, String);
|
|
check(ownerId, String);
|
|
|
|
const selector = {
|
|
meetingId,
|
|
locale,
|
|
};
|
|
|
|
const modifier = {
|
|
$set: {
|
|
'captionHistory.ownerId': ownerId,
|
|
},
|
|
};
|
|
|
|
const Caption = Captions.findOne(selector);
|
|
|
|
if (!Caption) {
|
|
const captionHistory = {
|
|
ownerId,
|
|
captions: '',
|
|
index: 0,
|
|
next: null,
|
|
};
|
|
|
|
return addCaption(meetingId, locale, captionHistory);
|
|
}
|
|
|
|
const cb = (err) => {
|
|
if (err) {
|
|
return Logger.error(`Updating captions owner: ${err}`);
|
|
}
|
|
|
|
return Logger.verbose(`Update caption owner locale=${locale} meeting=${meetingId}`);
|
|
};
|
|
|
|
return Captions.update(selector, modifier, { multi: true }, cb);
|
|
}
|