bigbluebutton-Github/bigbluebutton-html5/imports/api/audio-captions/server/methods/updateTranscript.js
Pedro Beschorner Marin b52c67d7a7 feat(captions): first pass on recording
Add the main server-side adapter for using the legacy closed captions
recording process with the audio captions data.
2022-07-20 17:20:52 +00:00

40 lines
1.2 KiB
JavaScript

import { check } from 'meteor/check';
import RedisPubSub from '/imports/startup/server/redis';
import { extractCredentials } from '/imports/api/common/server/helpers';
import Logger from '/imports/startup/server/logger';
export default function updateTranscript(transcriptId, start, end, text, transcript, locale) {
try {
const REDIS_CONFIG = Meteor.settings.private.redis;
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
const EVENT_NAME = 'UpdateTranscriptPubMsg';
const { meetingId, requesterUserId } = extractCredentials(this.userId);
check(meetingId, String);
check(requesterUserId, String);
check(transcriptId, String);
check(start, Number);
check(end, Number);
check(text, String);
check(transcript, String);
check(locale, String);
// Ignore irrelevant updates
if (start !== -1 && end !== -1) {
const payload = {
transcriptId,
start,
end,
text,
transcript,
locale,
};
RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
}
} catch (err) {
Logger.error(`Exception while invoking method upadteTranscript ${err.stack}`);
}
}