2018-01-04 03:54:06 +08:00
|
|
|
import { check } from 'meteor/check';
|
2018-06-19 02:59:35 +08:00
|
|
|
import sharedWebcam from '../modifiers/sharedWebcam';
|
2019-11-23 05:08:27 +08:00
|
|
|
import { isValidStream } from '/imports/api/video-streams/server/helpers';
|
2018-01-04 03:54:06 +08:00
|
|
|
|
2023-03-20 20:23:39 +08:00
|
|
|
export default async function handleUserSharedHtml5Webcam({ header, body }, meetingId) {
|
2018-01-04 03:54:06 +08:00
|
|
|
const { userId, stream } = body;
|
2017-09-01 23:26:57 +08:00
|
|
|
|
2017-12-09 00:52:37 +08:00
|
|
|
check(header, Object);
|
2017-09-01 23:26:57 +08:00
|
|
|
check(meetingId, String);
|
2017-12-09 00:52:37 +08:00
|
|
|
check(userId, String);
|
2018-06-19 02:35:27 +08:00
|
|
|
check(stream, String);
|
|
|
|
|
|
|
|
if (!isValidStream(stream)) return false;
|
2023-03-20 20:23:39 +08:00
|
|
|
const result = await sharedWebcam(meetingId, userId, stream);
|
|
|
|
return result;
|
2017-09-01 23:26:57 +08:00
|
|
|
}
|