2018-09-05 00:56:10 +08:00
|
|
|
import RedisPubSub from '/imports/startup/server/redis';
|
|
|
|
import { check } from 'meteor/check';
|
2020-02-07 04:47:28 +08:00
|
|
|
import { extractCredentials } from '/imports/api/common/server/helpers';
|
2018-09-05 00:56:10 +08:00
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
export default function requestPresentationUploadToken(podId, filename) {
|
2018-09-05 00:56:10 +08:00
|
|
|
const REDIS_CONFIG = Meteor.settings.private.redis;
|
|
|
|
const CHANNEL = REDIS_CONFIG.channels.toAkkaApps;
|
|
|
|
const EVENT_NAME = 'PresentationUploadTokenReqMsg';
|
|
|
|
|
2020-02-07 04:47:28 +08:00
|
|
|
const { meetingId, requesterUserId } = extractCredentials(this.userId);
|
2018-09-05 00:56:10 +08:00
|
|
|
check(podId, String);
|
|
|
|
check(filename, String);
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
podId,
|
|
|
|
filename,
|
|
|
|
};
|
|
|
|
|
|
|
|
return RedisPubSub.publishUserMessage(CHANNEL, EVENT_NAME, meetingId, requesterUserId, payload);
|
|
|
|
}
|