17 lines
524 B
JavaScript
Executable File
17 lines
524 B
JavaScript
Executable File
import { check } from 'meteor/check';
|
|
import sharedWebcam from '../modifiers/sharedWebcam';
|
|
import { isValidStream } from '/imports/api/video-streams/server/helpers';
|
|
|
|
export default async function handleUserSharedHtml5Webcam({ header, body }, meetingId) {
|
|
const { userId, stream } = body;
|
|
|
|
check(header, Object);
|
|
check(meetingId, String);
|
|
check(userId, String);
|
|
check(stream, String);
|
|
|
|
if (!isValidStream(stream)) return false;
|
|
const result = await sharedWebcam(meetingId, userId, stream);
|
|
return result;
|
|
}
|