123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- <?php
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License") + you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- /**
- * @package chamilo.plugin.openmeetings
- */
- /**
- * Init
- */
- require_once ('openmeetings_rest_service.php');
- /**
- * Class OpenMeetingsGateway
- */
- class OpenMeetingsGateway
- {
- public $sessionId = "";
- public $config;
- private $rest;
- private $_user;
- private $_pass;
- private $_url;
- public function __construct($host, $user, $pass)
- {
- $this->_user = urlencode($user);
- $this->_pass = urlencode($pass);
- $this->_url = $host;
- if (substr($this->_url, -1, 1) == '/') {
- $this->_url = substr($this->_url, 0, -1);
- }
- $this->rest = new OpenMeetingsRestService();
- $err = $this->rest->getError();
- if ($err) {
- error_log('Constructor error: '.$err);
- error_log('Debug: '.$this->rest->getDebug()); ;
- exit();
- }
- }
- /**
- * @param string $name
- * @return string
- */
- public function getRestUrl($name)
- {
- return $this->getUrl()."/services/".$name."/";
- }
- /**
- * @return string
- */
- public function getUrl()
- {
- return $this->_url;
- }
- /**
- * @param bool $in
- * @return string
- */
- public function var_to_str($in)
- {
- if (is_bool($in)) {
- return $in ? "true" : "false";
- } else {
- return $in;
- }
- }
- /**
- * TODO: Get Error Service and show detailed Error Message
- */
- public function loginUser()
- {
- $returnValue = 0;
- $response = $this->rest->call($this->getRestUrl("UserService")."getSession", "session_id");
- if ($this->rest->getError()) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($response, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- //error_log('getSession returned '.$response. ' - Storing as sessionId');
- $this->sessionId = $response;
- $url = $this->getRestUrl("UserService")
- . "loginUser?"
- . "SID=".$this->sessionId
- . "&username=".$this->_user
- . "&userpass=".$this->_pass;
- $result = $this->rest->call($url);
- if ($this->rest->getError()) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error '.$err);
- } else {
- $returnValue = $result;
- }
- }
- }
- }
- if ($returnValue > 0) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * @param Room $room
- * @return array|bool|int|null
- */
- public function updateRoomWithModeration($room)
- {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Constructor error: '.$err);
- error_log('Debug: '.$this->rest->getDebug());
- exit();
- }
- $isModeratedRoom = false;
- if ($room->isModeratedRoom == 1) {
- $isModeratedRoom = true;
- }
- $url = $this->getRestUrl($this->getRestUrl("RoomService")
- . "updateRoomWithModeration?SID=".$this->sessionId
- . "&room_id=".$room->room_id
- . "&name=".urlencode($room->name)
- . "&roomtypes_id=".$room->roomtypes_id
- . "&comment=".$room->comment
- . "&numberOfPartizipants=".$room->numberOfPartizipants
- . "&ispublic=false"
- . "&appointment=false"
- . "&isDemoRoom=false"
- . "&demoTime=0"
- . "&isModeratedRoom=".$this->var_to_str($isModeratedRoom));
- //error_log($url);
- $result = $this->rest->call($url);
- if ($result->fault) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- // echo '<h2>Result</h2><pre>'; print_r($result["return"]); echo '</pre>';
- //error_log('Room updated successfully '.print_r($result,1));
- return $result;
- }
- }
- return -1;
- }
- /**
- * @param $username
- * @param $firstname
- * @param $lastname
- * @param $userId
- * @param $systemType
- * @param $recording_id
- * @return array|bool|int|null
- */
- public function setUserObjectAndGenerateRecordingHashByURL($username, $firstname, $lastname, $userId, $systemType, $recording_id)
- {
- $result = $this->rest->call($this->getRestUrl("UserService")
- . 'setUserObjectAndGenerateRecordingHashByURL?'
- . 'SID='.$this->sessionId
- . '&username='.urlencode($username)
- . '&firstname='.urlencode($firstname)
- . '&lastname='.urlencode($lastname)
- . '&externalUserId='.$userId
- . '&externalUserType='.urlencode($systemType)
- . '&recording_id='.$recording_id, 'return');
- if ($result->fault) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- return $result;
- }
- }
- return -1;
- }
- /**
- * @param $username
- * @param $firstname
- * @param $lastname
- * @param $profilePictureUrl
- * @param $email
- * @param $userId
- * @param $systemType
- * @param $room_id
- * @param $becomeModerator
- * @param $allowRecording
- * @return array|bool|int|null
- */
- public function setUserObjectAndGenerateRoomHashByURLAndRecFlag($username, $firstname, $lastname, $profilePictureUrl, $email, $userId, $systemType, $room_id, $becomeModerator, $allowRecording)
- {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Constructor error: '.$err);
- error_log('Debug: '.$this->rest->getDebug()); ;
- exit();
- }
- $result = $this->rest->call($this->getRestUrl("UserService")
- . "setUserObjectAndGenerateRoomHashByURLAndRecFlag?"
- . "SID=".$this->sessionId
- . "&username=".urlencode($username)
- . "&firstname=".urlencode($firstname)
- . "&lastname=".urlencode($lastname)
- . "&profilePictureUrl=".urlencode($profilePictureUrl)
- . "&email=".urlencode($email)
- . "&externalUserId=".urlencode($userId)
- . "&externalUserType=".urlencode($systemType)
- . "&room_id=".urlencode($room_id)
- . "&becomeModeratorAsInt=".$becomeModerator
- . "&showAudioVideoTestAsInt=1"
- . "&allowRecording=".$this->var_to_str($allowRecording));
- if ($result->fault) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- // echo '<h2>Result</h2><pre>'; print_r($result["return"]); echo '</pre>';
- return $result;
- }
- }
- return -1;
- }
- /**
- * @param Room $openmeetings
- * @return array|bool|int|null
- */
- public function deleteRoom($openmeetings)
- {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Constructor error: '.$err);
- error_log('Debug: '.$this->rest->getDebug());
- exit();
- }
- $url = $this->getRestUrl("RoomService")."deleteRoom?SID=".$this->sessionId."&rooms_id=".$openmeetings->room_id;
- $result = $this->rest->call($url);
- if ($result->fault) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- // echo '<h2>Result</h2><pre>'; print_r($result["return"]); echo '</pre>';
- // return $result["return"];
- return $result;
- }
- }
- return -1;
- }
- /**
- * Generate a new room hash for entering a conference room
- */
- public function setUserObjectAndGenerateRoomHash($username, $firstname, $lastname, $profilePictureUrl, $email, $externalUserId, $externalUserType, $room_id, $becomeModeratorAsInt, $showAudioVideoTestAsInt)
- {
- $result = $this->rest->call($this->getRestUrl("UserService")
- . "setUserObjectAndGenerateRoomHash?"
- . "SID=".$this->sessionId
- . "&username=".urlencode($username)
- . "&firstname=".urlencode($firstname)
- . "&lastname=".urlencode($lastname)
- . "&profilePictureUrl=".urlencode($profilePictureUrl)
- . "&email=".urlencode($email)
- . "&externalUserId=".urlencode($externalUserId)
- . "&externalUserType=".urlencode($externalUserType)
- . "&room_id=".$room_id
- . "&becomeModeratorAsInt=".$becomeModeratorAsInt
- . "&showAudioVideoTestAsInt=".$showAudioVideoTestAsInt);
- if ($result->getError()) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- // echo '<h2>Result</h2><pre>'; print_r($result["return"]); echo '</pre>';
- return $result;
- }
- }
- return -1;
- }
- /**
- * Create a new conference room
- * @param Room The room object
- * @return The REST call's result
- */
- public function createRoomWithModAndType($room)
- {
- $service = 'addRoomWithModerationAndExternalType';
- if ($room->allowRecording) {
- $service = 'addRoomWithModerationAndRecordingFlags';
- } elseif ($room->isAudioOnly) {
- $service = 'addRoomWithModerationExternalTypeAndAudioType';
- }
- $url = $this->getRestUrl("RoomService")
- . $service.'?'
- . 'SID='.$room->SID
- . '&name='.$room->name
- . '&roomtypes_id='.$room->roomtypes_id
- . '&comment='.$room->comment
- . '&numberOfPartizipants='.$room->numberOfPartizipants
- . '&ispublic='.$this->var_to_str($room->ispublic)
- . '&appointment='.$this->var_to_str($room->appointment)
- . '&isDemoRoom='.$this->var_to_str($room->isDemoRoom)
- . '&demoTime='.$room->demoTime
- . '&isModeratedRoom='.$this->var_to_str($room->isModeratedRoom)
- . '&externalRoomType='.$room->externalRoomType;
- if ($room->allowRecording) {
- $url .= '&allowUserQuestions='.$this->var_to_str($room->allowUserQuestions)
- . '&isAudioOnly='.$this->var_to_str($room->isAudioOnly)
- . '&waitForRecording='.$this->var_to_str($room->waitForRecording)
- . '&allowRecording='.$this->var_to_str($room->allowRecording);
- } elseif ($room->isAudioOnly) {
- $url .= '&isAudioOnly='.$this->var_to_str($room->isAudioOnly);
- }
- $result = $this->rest->call($url);
- if ($this->rest->fault) {
- error_log('Fault (Expect - The request contains an invalid SOAP body) '.print_r($result, 1));
- } else {
- $err = $this->rest->getError();
- if ($err) {
- error_log('Error: '.$err);
- } else {
- //error_log('Creation of a new room succeeded: ID '.print_r($result,1));
- return $result;
- }
- }
- return -1;
- }
- /**
- * Gets the list of open rooms of type "Chamilo"
- * @param string $type The type of external system connecting to OpenMeetings
- * @return bool
- */
- public function getRoomsWithCurrentUsersByType($type = 'chamilolms')
- {
- //$this->loginUser();
- if (empty($this->sessionId)) {
- return false;
- }
- $url = $this->getRestUrl("RoomService")."getRoomsWithCurrentUsersByListAndType?SID=".$this->sessionId
- . "&start=1&max=1000&orderby=name&asc=true&externalRoomType=chamilolms";
- //$url = $this->getRestUrl("RoomService")
- // . "getRoomTypes?"
- // . "SID=" . $this->sessionId;
- //$url = $this->getRestUrl('JabberService') . 'getAvailableRooms?SID=' . $this->sessionId;
- //error_log(__FILE__.'+'.__LINE__.' Calling WS: '.$url);
- $result = $this->rest->call($url, "return");
- $rooms = array();
- foreach ($result as $room) {
- //error_log(__FILE__.'+'.__LINE__.': one room found on remote: '.print_r($room,1));
- if ($room['externalRoomType'] == $type && count($room['currentusers']) > 0) {
- $rooms[] = $room;
- }
- }
- return $result;
- }
- /**
- * Gets details of a remote room by room ID
- * @param int $roomId The ID of the room, as of plugin_openmeetings.room_id
- * @return mixed Room object
- */
- public function getRoomById($roomId = 0)
- {
- //$this->loginUser();
- if (empty($this->sessionId) or empty($roomId)) {
- return false;
- }
- $roomId = intval($roomId);
- $url = $this->getRestUrl("RoomService")
- . "getRoomById?"
- . "SID=".$this->sessionId
- . "&rooms_id=".$roomId;
- //error_log(__FILE__.'+'.__LINE__.' Calling WS: '.$url);
- $result = $this->rest->call($url, "return");
- return $result;
- }
- /**
- * Get list of available recordings made by this instance
- */
- public function getRecordingsByExternalRooms()
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByExternalRoomType?"
- . "SID=".$this->sessionId
- . "&externalRoomType=".urlencode($this->config["moduleKey"]);
- $result = $this->rest->call($url, "return");
- return $result;
- }
- /**
- * Get the recording from the room
- * @param int $id Room ID
- * @return array
- */
- public function getFlvRecordingByRoomId($id)
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByRoomId?"
- . "SID=".$this->sessionId
- . "&roomId=".urlencode($id);
- $result = $this->rest->call($url, "return");
- return $result;
- }
- /**
- * Get list of available recordings made by user
- */
- public function getRecordingsByExternalUser($id)
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByExternalUserId?"
- . "SID=".$this->sessionId
- . "&externalUserId=".$id;
- $result = $this->rest->call($url, "return");
- return $result;
- }
- }
|