2021-10-16 03:07:13 +08:00
|
|
|
import { check } from 'meteor/check';
|
|
|
|
import Captions from '/imports/api/captions';
|
|
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
|
2023-03-09 22:05:50 +08:00
|
|
|
export default async function setTranscript(meetingId, locale, transcript) {
|
2021-10-16 03:07:13 +08:00
|
|
|
try {
|
|
|
|
check(meetingId, String);
|
|
|
|
check(locale, String);
|
|
|
|
check(transcript, String);
|
|
|
|
|
|
|
|
const selector = {
|
|
|
|
meetingId,
|
|
|
|
locale,
|
|
|
|
};
|
|
|
|
|
|
|
|
const modifier = {
|
|
|
|
$set: {
|
|
|
|
transcript,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2023-03-09 22:05:50 +08:00
|
|
|
const numberAffected = await Captions.upsertAsync(selector, modifier);
|
2021-10-16 03:07:13 +08:00
|
|
|
|
|
|
|
if (numberAffected) {
|
|
|
|
Logger.debug(`Set captions=${locale} transcript=${transcript} meeting=${meetingId}`);
|
|
|
|
} else {
|
|
|
|
Logger.debug(`Upserted captions=${locale} transcript=${transcript} meeting=${meetingId}`);
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
Logger.error(`Setting captions transcript to the collection: ${err}`);
|
|
|
|
}
|
|
|
|
}
|