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.
|
|
|
|
*
|
2023-02-22 16:45:50 +00:00
|
|
|
* Change Date: 2027-02-22
|
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\system\WCF;
|
2018-08-16 22:30:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default implementations for page handlers of
|
|
|
|
* pages that operate on a specific chat room.
|
|
|
|
*/
|
2022-03-04 17:10:24 +00:00
|
|
|
trait TRoomPageHandler
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2022-03-04 18:20:58 +00:00
|
|
|
public function isValid($objectID): bool
|
2022-03-04 17:10:24 +00:00
|
|
|
{
|
|
|
|
$room = RoomCache::getInstance()->getRoom($objectID);
|
|
|
|
|
|
|
|
return $room !== null;
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function lookup($searchString)
|
|
|
|
{
|
|
|
|
$sql = "(SELECT ('chat.room.room' || roomID || '.title') AS languageItem
|
|
|
|
FROM chat1_room
|
|
|
|
WHERE title LIKE ?
|
|
|
|
)
|
|
|
|
UNION
|
|
|
|
(SELECT languageItem
|
|
|
|
FROM wcf1_language_item
|
|
|
|
WHERE languageItemValue LIKE ?
|
|
|
|
AND languageItem LIKE ?
|
|
|
|
AND languageID = ?
|
|
|
|
)";
|
|
|
|
$statement = WCF::getDB()->prepare($sql);
|
|
|
|
$statement->execute([
|
|
|
|
'%' . $searchString . '%',
|
|
|
|
'%' . $searchString . '%',
|
|
|
|
'chat.room.room%.title',
|
|
|
|
WCF::getLanguage()->languageID,
|
|
|
|
]);
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
$results = [ ];
|
|
|
|
while (($row = $statement->fetchArray())) {
|
|
|
|
$roomID = \preg_replace('/chat\.room\.room(\d+)\.title/', '\1', $row['languageItem']);
|
|
|
|
$room = RoomCache::getInstance()->getRoom($roomID);
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
if (!$room) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
$results[] = [
|
|
|
|
'title' => $room->getTitle(),
|
|
|
|
'description' => $room->getTopic(),
|
|
|
|
'link' => $room->getLink(),
|
|
|
|
'objectID' => $room->roomID,
|
|
|
|
'image' => 'fa-comments-o',
|
|
|
|
];
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
|
2022-03-04 17:10:24 +00:00
|
|
|
return $results;
|
|
|
|
}
|
2018-08-16 22:30:59 +00:00
|
|
|
}
|