12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * This script initiates a video conference session, calling the BigBlueButton API
- * @package chamilo.plugin.bigbluebutton
- */
- require __DIR__.'/../../vendor/autoload.php';
- $course_plugin = 'bbb'; //needed in order to load the plugin lang variables
- require_once __DIR__.'/config.php';
- $tool_name = get_lang('Videoconference');
- $tpl = new Template($tool_name);
- $vmIsEnabled = false;
- $host = '';
- $salt = '';
- $isGlobal = isset($_GET['global']) ? true : false;
- $isGlobalPerUser = isset($_GET['user_id']) ? (int) $_GET['user_id'] : false;
- $bbb = new bbb('', '', $isGlobal, $isGlobalPerUser);
- if ($bbb->pluginEnabled) {
- if ($bbb->isServerRunning()) {
- if (isset($_GET['launch']) && $_GET['launch'] == 1) {
- if (file_exists(__DIR__.'/config.vm.php')) {
- $config = require __DIR__.'/config.vm.php';
- $vmIsEnabled = true;
- $host = '';
- $salt = '';
- require __DIR__.'/lib/vm/AbstractVM.php';
- require __DIR__.'/lib/vm/VMInterface.php';
- require __DIR__.'/lib/vm/DigitalOceanVM.php';
- require __DIR__.'/lib/VM.php';
- $vm = new VM($config);
- if ($vm->isEnabled()) {
- try {
- $vm->resizeToMaxLimit();
- } catch (\Exception $e) {
- echo $e->getMessage();
- exit;
- }
- }
- }
- $meetingParams = array();
- $meetingParams['meeting_name'] = $bbb->getCurrentVideoConferenceName();
- if ($bbb->meetingExists($meetingParams['meeting_name'])) {
- $url = $bbb->joinMeeting($meetingParams['meeting_name']) ?: $bbb->createMeeting($meetingParams);
- } else {
- $url = $bbb->isConferenceManager() ? $bbb->createMeeting($meetingParams) : $bbb->getListingUrl();
- }
- $meetingInfo = $bbb->findMeetingByName($meetingParams['meeting_name']);
- $bbb->saveParticipant($meetingInfo['id'], api_get_user_id());
- $bbb->redirectToBBB($url);
- } else {
- $url = $bbb->getListingUrl();
- header('Location: '.$url);
- exit;
- }
- } else {
- $message = Display::return_message(get_lang('ServerIsNotRunning'), 'warning');
- }
- } else {
- $message = Display::return_message(get_lang('ServerIsNotConfigured'), 'warning');
- }
- $tpl->assign('message', $message);
- $tpl->display_one_col_template();
|