Tims-Chat/files/lib/system/page/handler/LogPageHandler.class.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

100 lines
2.4 KiB
PHP
Raw Normal View History

2018-08-16 22:30:59 +00:00
<?php
2022-03-04 17:10:24 +00:00
2018-08-16 22:30:59 +00:00
/*
2022-03-04 17:10:24 +00:00
* Copyright (c) 2010-2022 Tim Düsterhus.
2018-08-16 22:30:59 +00:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2022-03-04 17:10:24 +00:00
* Change Date: 2026-03-04
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;
2022-03-04 17:10:24 +00:00
use chat\data\room\RoomCache;
use wcf\data\page\Page;
use wcf\data\user\online\UserOnline;
use wcf\system\page\handler\AbstractLookupPageHandler;
use wcf\system\page\handler\IOnlineLocationPageHandler;
use wcf\system\page\handler\TOnlineLocationPageHandler;
use wcf\system\request\LinkHandler;
use wcf\system\WCF;
2018-08-16 22:30:59 +00:00
/**
* Allows to choose a room in the menu item management.
*/
2022-03-04 17:10:24 +00:00
class LogPageHandler extends AbstractLookupPageHandler implements IOnlineLocationPageHandler
{
use TRoomPageHandler;
use TOnlineLocationPageHandler;
/**
* @inheritDoc
*/
public function getLink($objectID)
{
$room = RoomCache::getInstance()->getRoom($objectID);
if ($room === null) {
throw new \InvalidArgumentException('Invalid room ID given');
}
return LinkHandler::getInstance()->getLink(
'Log',
[
'application' => 'chat',
'object' => $room,
]
);
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* @inheritDoc
*/
public function isVisible($objectID = null)
{
if (!WCF::getUser()->userID) {
return false;
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
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');
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
return $room->canSee() && $room->canSeeLog();
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
/**
* @inheritDoc
*/
public function getOnlineLocation(Page $page, UserOnline $user)
{
if ($user->pageObjectID === null) {
return '';
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
$room = RoomCache::getInstance()->getRoom($user->pageObjectID);
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
if ($room === null) {
return '';
}
if (!$room->canSeeLog()) {
return '';
}
2018-08-16 22:30:59 +00:00
2022-03-04 17:10:24 +00:00
return WCF::getLanguage()->getDynamicVariable(
'wcf.page.onlineLocation.' . $page->identifier,
[
'room' => $room,
]
);
}
2018-08-16 22:30:59 +00:00
}