2018-08-16 22:30:59 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2018 Tim Düsterhus.
|
|
|
|
*
|
|
|
|
* Use of this software is governed by the Business Source License
|
|
|
|
* included in the LICENSE file.
|
|
|
|
*
|
2018-11-27 19:53:30 +00:00
|
|
|
* Change Date: 2022-11-27
|
2018-08-16 22:30:59 +00:00
|
|
|
*
|
|
|
|
* On the date above, in accordance with the Business Source
|
|
|
|
* License, use of this software will be governed by version 2
|
|
|
|
* or later of the General Public License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace chat\system\page\handler;
|
|
|
|
|
|
|
|
use \chat\data\room\RoomCache;
|
|
|
|
use \wcf\system\WCF;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows to choose a room in the menu item management.
|
|
|
|
*/
|
|
|
|
class RoomPageHandler extends \wcf\system\page\handler\AbstractLookupPageHandler implements \wcf\system\page\handler\IOnlineLocationPageHandler {
|
|
|
|
use TRoomPageHandler;
|
|
|
|
use \wcf\system\page\handler\TOnlineLocationPageHandler;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getOutstandingItemCount($objectID = null) {
|
|
|
|
return count(RoomCache::getInstance()->getRoom($objectID)->getUsers());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getLink($objectID) {
|
|
|
|
$room = RoomCache::getInstance()->getRoom($objectID);
|
|
|
|
if ($room === null) throw new \InvalidArgumentException('Invalid room ID given');
|
|
|
|
|
|
|
|
return $room->getLink();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function isVisible($objectID = null) {
|
|
|
|
if (!WCF::getUser()->userID) return false;
|
|
|
|
|
|
|
|
if ($objectID === null) throw new \InvalidArgumentException('Invalid room ID given');
|
|
|
|
$room = RoomCache::getInstance()->getRoom($objectID);
|
|
|
|
if ($room === null) throw new \InvalidArgumentException('Invalid room ID given');
|
|
|
|
|
|
|
|
return $room->canSee();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getOnlineLocation(\wcf\data\page\Page $page, \wcf\data\user\online\UserOnline $user) {
|
|
|
|
if ($user->pageObjectID === null) return '';
|
|
|
|
$room = RoomCache::getInstance()->getRoom($user->pageObjectID);
|
|
|
|
if ($room === null) return '';
|
|
|
|
if (!$room->canSee()) return '';
|
|
|
|
|
|
|
|
return WCF::getLanguage()->getDynamicVariable('wcf.page.onlineLocation.'.$page->identifier, [ 'room' => $room ]);
|
|
|
|
}
|
|
|
|
}
|