123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474 |
- <?php
- require_once ('openmeetings_rest_service.php');
- 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();
- }
- }
-
- public function getRestUrl($name)
- {
- return $this->getUrl()."/services/".$name."/";
- }
-
- public function getUrl()
- {
- return $this->_url;
- }
-
- public function var_to_str($in)
- {
- if (is_bool($in)) {
- return $in ? "true" : "false";
- } else {
- return $in;
- }
- }
-
- 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 {
-
- $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;
- }
- }
-
- 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));
-
- $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 {
-
-
- return $result;
- }
- }
- return -1;
- }
-
- 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;
- }
-
- 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 {
-
- return $result;
- }
- }
- return -1;
- }
-
- 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 {
-
-
- return $result;
- }
- }
- return -1;
- }
-
- 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 {
-
- return $result;
- }
- }
- return -1;
- }
-
- 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 {
-
- return $result;
- }
- }
- return -1;
- }
-
- public function getRoomsWithCurrentUsersByType($type = 'chamilolms')
- {
-
- if (empty($this->sessionId)) {
- return false;
- }
- $url = $this->getRestUrl("RoomService")."getRoomsWithCurrentUsersByListAndType?SID=".$this->sessionId
- . "&start=1&max=1000&orderby=name&asc=true&externalRoomType=chamilolms";
-
-
-
-
-
- $result = $this->rest->call($url, "return");
- $rooms = array();
- foreach ($result as $room) {
-
- if ($room['externalRoomType'] == $type && count($room['currentusers']) > 0) {
- $rooms[] = $room;
- }
- }
- return $result;
- }
-
- public function getRoomById($roomId = 0)
- {
-
- if (empty($this->sessionId) or empty($roomId)) {
- return false;
- }
- $roomId = intval($roomId);
- $url = $this->getRestUrl("RoomService")
- . "getRoomById?"
- . "SID=".$this->sessionId
- . "&rooms_id=".$roomId;
-
- $result = $this->rest->call($url, "return");
- return $result;
- }
-
- public function getRecordingsByExternalRooms()
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByExternalRoomType?"
- . "SID=".$this->sessionId
- . "&externalRoomType=".urlencode($this->config["moduleKey"]);
- $result = $this->rest->call($url, "return");
- return $result;
- }
-
- public function getFlvRecordingByRoomId($id)
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByRoomId?"
- . "SID=".$this->sessionId
- . "&roomId=".urlencode($id);
- $result = $this->rest->call($url, "return");
- return $result;
- }
-
- public function getRecordingsByExternalUser($id)
- {
- $url = $this->getRestUrl("RoomService")
- . "getFlvRecordingByExternalUserId?"
- . "SID=".$this->sessionId
- . "&externalUserId=".$id;
- $result = $this->rest->call($url, "return");
- return $result;
- }
- }
|