You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

236 lines
6.2 KiB

<?php
/**
* @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
*
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Joas Schilling <coding@schilljs.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\Spreed\Controller;
use OCA\Spreed\Exceptions\ParticipantNotFoundException;
use OCA\Spreed\Exceptions\RoomNotFoundException;
use OCA\Spreed\Manager;
use OCA\Spreed\TalkSession;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCSController;
use OCP\IRequest;
use OCP\IUserManager;
class CallController extends OCSController {
/** @var string */
private $userId;
/** @var TalkSession */
private $session;
/** @var Manager */
private $manager;
/**
* @param string $appName
* @param string $UserId
* @param IRequest $request
* @param IUserManager $userManager
* @param TalkSession $session
* @param Manager $manager
*/
public function __construct($appName,
$UserId,
IRequest $request,
IUserManager $userManager,
TalkSession $session,
Manager $manager) {
parent::__construct($appName, $request);
$this->userId = $UserId;
$this->session = $session;
$this->manager = $manager;
}
/**
* @PublicPage
*
* @param string $token
* @return DataResponse
*/
public function getPeersForCall($token) {
try {
$room = $this->manager->getRoomForSession($this->userId, $this->session->getSessionForRoom($token));
} catch (RoomNotFoundException $e) {
if ($this->userId === null) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
// For logged in users we search for rooms where they are real participants
try {
$room = $this->manager->getRoomForParticipantByToken($token, $this->userId);
$room->getParticipant($this->userId);
} catch (RoomNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
} catch (ParticipantNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
}
if ($room->getToken() !== $token) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
/** @var array[] $participants */
$participants = $room->getParticipants(time() - 30);
$result = [];
foreach ($participants['users'] as $participant => $data) {
if ($data['sessionId'] === '0' || !$data['inCall']) {
// User is not active in call
continue;
}
$result[] = [
'userId' => (string) $participant,
'token' => $token,
'lastPing' => $data['lastPing'],
'sessionId' => $data['sessionId'],
];
}
foreach ($participants['guests'] as $data) {
if (!$data['inCall']) {
// User is not active in call
continue;
}
$result[] = [
'userId' => '',
'token' => $token,
'lastPing' => $data['lastPing'],
'sessionId' => $data['sessionId'],
];
}
return new DataResponse($result);
}
/**
* @PublicPage
* @UseSession
*
* @param string $token
* @return DataResponse
*/
public function joinCall($token) {
try {
$room = $this->manager->getRoomForParticipantByToken($token, $this->userId);
} catch (RoomNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
if ($this->userId === null) {
if ($this->session->getSessionForRoom($token) === null) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
try {
$participant = $room->getParticipantBySession($this->session->getSessionForRoom($token));
} catch (ParticipantNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
} else {
try {
$participant = $room->getParticipant($this->userId);
} catch (ParticipantNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
}
$sessionId = $participant->getSessionId();
if ($sessionId === '0') {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
$room->changeInCall($sessionId, true);
return new DataResponse();
}
/**
* @PublicPage
*
* @param string $token
* @return DataResponse
*/
public function pingCall($token) {
if ($this->session->getSessionForRoom($token) === null) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
try {
$room = $this->manager->getRoomForParticipantByToken($token, $this->userId);
} catch (RoomNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
$sessionId = $this->session->getSessionForRoom($token);
$room->ping($this->userId, $sessionId, time());
return new DataResponse();
}
/**
* @PublicPage
* @UseSession
*
* @param string $token
* @return DataResponse
*/
public function leaveCall($token) {
try {
$room = $this->manager->getRoomForParticipantByToken($token, $this->userId);
} catch (RoomNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
if ($this->userId === null) {
if ($this->session->getSessionForRoom($token) === null) {
return new DataResponse();
}
try {
$participant = $room->getParticipantBySession($this->session->getSessionForRoom($token));
} catch (ParticipantNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
} else {
try {
$participant = $room->getParticipant($this->userId);
} catch (ParticipantNotFoundException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
}
$sessionId = $participant->getSessionId();
if ($sessionId === '0') {
return new DataResponse([], Http::STATUS_NOT_FOUND);
}
$room->changeInCall($sessionId, false);
return new DataResponse();
}
}