Files
OSJ/lib/pkp/controllers/grid/notifications/NotificationsGridCellProvider.php
T
CHIEFSOFT\ameye df3a033196 first commit
2024-06-08 17:09:23 -04:00

190 lines
7.5 KiB
PHP

<?php
/**
* @file controllers/grid/notifications/NotificationsGridCellProvider.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @class NotificationsGridCellProvider
*
* @ingroup controllers_grid_notifications
*
* @brief Class for a cell provider that can retrieve labels from notifications
*/
namespace PKP\controllers\grid\notifications;
use APP\core\Application;
use APP\facades\Repo;
use APP\notification\Notification;
use APP\notification\NotificationManager;
use APP\template\TemplateManager;
use PKP\controllers\grid\GridCellProvider;
use PKP\controllers\grid\GridColumn;
use PKP\controllers\grid\GridHandler;
use PKP\core\PKPString;
use PKP\db\DAORegistry;
use PKP\linkAction\LinkAction;
use PKP\linkAction\request\AjaxAction;
use PKP\payment\QueuedPaymentDAO;
use PKP\query\QueryDAO;
use PKP\submission\reviewAssignment\ReviewAssignmentDAO;
use PKP\submission\reviewRound\ReviewRoundDAO;
class NotificationsGridCellProvider extends GridCellProvider
{
/**
* Get cell actions associated with this row/column combination
*
* @param \PKP\controllers\grid\GridRow $row
* @param GridColumn $column
*
* @return array an array of LinkAction instances
*/
public function getCellActions($request, $row, $column, $position = GridHandler::GRID_ACTION_POSITION_DEFAULT)
{
assert($column->getId() == 'task');
$templateMgr = TemplateManager::getManager($request);
$notification = $row->getData();
$contextDao = Application::getContextDAO();
$context = $contextDao->getById($notification->getContextId());
$notificationMgr = new NotificationManager();
$router = $request->getRouter();
$templateMgr->assign([
'notificationMgr' => $notificationMgr,
'notification' => $notification,
'context' => $context,
'notificationObjectTitle' => $this->_getTitle($notification),
'message' => PKPString::stripUnsafeHtml($notificationMgr->getNotificationMessage($request, $notification)),
]);
// See if we're working in a multi-context environment
$user = $request->getUser();
$contextDao = Application::getContextDAO();
$contexts = $contextDao->getAvailable($user ? $user->getId() : null)->toArray();
$templateMgr->assign('isMultiContext', count($contexts) > 1);
return [new LinkAction(
'details',
new AjaxAction($router->url(
$request,
null,
null,
'markRead',
null,
['redirect' => 1, 'selectedElements' => [$notification->getId()]]
)),
$templateMgr->fetch('controllers/grid/tasks/task.tpl')
)];
}
//
// Template methods from GridCellProvider
//
/**
* Extracts variables for a given column from a data element
* so that they may be assigned to template before rendering.
*
* @param \PKP\controllers\grid\GridRow $row
* @param GridColumn $column
*
* @return array
*/
public function getTemplateVarsFromRowColumn($row, $column)
{
assert($column->getId() == 'task');
// The action has the label.
return ['label' => ''];
}
/**
* Get the title for a notification.
*
* @param Notification $notification
*
* @return string
*/
public function _getTitle($notification)
{
switch ($notification->getAssocType()) {
case Application::ASSOC_TYPE_QUEUED_PAYMENT:
$contextDao = Application::getContextDAO();
$paymentManager = Application::getPaymentManager($contextDao->getById($notification->getContextId()));
$queuedPaymentDao = DAORegistry::getDAO('QueuedPaymentDAO'); /** @var QueuedPaymentDAO $queuedPaymentDao */
$queuedPayment = $queuedPaymentDao->getById($notification->getAssocId());
if ($queuedPayment) {
switch ($queuedPayment->getType()) {
case \PKP\payment\PaymentManager::PAYMENT_TYPE_PUBLICATION: // FIXME: This is OJS-only; move out of pkp-lib
return Repo::submission()->get($queuedPayment->getAssocId())->getLocalizedTitle();
}
}
assert(false);
return '—';
case Application::ASSOC_TYPE_ANNOUNCEMENT:
$announcementId = $notification->getAssocId();
$announcement = Repo::announcement()->get($announcementId);
if ($announcement) {
return $announcement->getLocalizedTitle();
}
return null;
case Application::ASSOC_TYPE_SUBMISSION:
$submissionId = $notification->getAssocId();
break;
case Application::ASSOC_TYPE_SUBMISSION_FILE:
$fileId = $notification->getAssocId();
break;
case Application::ASSOC_TYPE_REVIEW_ASSIGNMENT:
$reviewAssignmentDao = DAORegistry::getDAO('ReviewAssignmentDAO'); /** @var ReviewAssignmentDAO $reviewAssignmentDao */
$reviewAssignment = $reviewAssignmentDao->getById($notification->getAssocId());
assert($reviewAssignment instanceof \PKP\submission\reviewAssignment\ReviewAssignment);
$submissionId = $reviewAssignment->getSubmissionId();
break;
case Application::ASSOC_TYPE_REVIEW_ROUND:
$reviewRoundDao = DAORegistry::getDAO('ReviewRoundDAO'); /** @var ReviewRoundDAO $reviewRoundDao */
$reviewRound = $reviewRoundDao->getById($notification->getAssocId());
assert($reviewRound instanceof \PKP\submission\reviewRound\ReviewRound);
$submissionId = $reviewRound->getSubmissionId();
break;
case Application::ASSOC_TYPE_QUERY:
$queryDao = DAORegistry::getDAO('QueryDAO'); /** @var QueryDAO $queryDao */
$query = $queryDao->getById($notification->getAssocId());
assert($query instanceof \PKP\query\Query);
switch ($query->getAssocType()) {
case Application::ASSOC_TYPE_SUBMISSION:
$submissionId = $query->getAssocId();
break;
case Application::ASSOC_TYPE_REPRESENTATION:
$representationDao = Application::getRepresentationDAO();
$representation = $representationDao->getById($query->getAssocId());
$publication = Repo::publication()->get($representation->getData('publicationId'));
$submissionId = $publication->getData('submissionId');
break;
default: assert(false);
}
break;
default:
return '—';
}
if (!isset($submissionId) && isset($fileId)) {
assert(is_numeric($fileId));
$submissionFile = Repo::submissionFile()->get($fileId);
assert($submissionFile instanceof \PKP\submissionFile\SubmissionFile);
$submissionId = $submissionFile->getData('submissionId');
}
assert(is_numeric($submissionId));
$submission = Repo::submission()->get($submissionId);
assert($submission instanceof \APP\submission\Submission);
return $submission->getLocalizedTitle();
}
}