| Server IP : 10.10.92.66 / Your IP : 104.23.243.84 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/jurnal/public_html/lib/pkp/pages/libraryFiles/ |
Upload File : |
<?php
/**
* @file pages/libraryFiles/LibraryFileHandler.inc.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 LibraryFileHandler
* @ingroup pages_libraryFiles
*
* @brief Class defining a handler for library file access
*/
// Import the base handler.
import('classes.handler.Handler');
class LibraryFileHandler extends Handler {
/** @var Handler the Handler that calls the LibraryFileHandler functions */
var $_callingHandler = null;
/**
* Constructor.
* @param $callingHandler Handler
*/
function __construct($callingHandler) {
$this->_callingHandler = $callingHandler;
}
//
// Public handler methods
//
/**
* Download a library public file.
* @param $args array
* @param $request Request
*/
function downloadPublic($args, $request) {
import('classes.file.LibraryFileManager');
$context = $request->getContext();
$libraryFileManager = new LibraryFileManager($context->getId());
$libraryFileDao = DAORegistry::getDAO('LibraryFileDAO'); /* @var $libraryFileDao LibraryFileDAO */
$publicFileId = $args[0];
$libraryFile = $libraryFileDao->getById($publicFileId, $context->getId());
if ($libraryFile && $libraryFile->getPublicAccess()) {
$libraryFileManager->downloadByPath($libraryFile->getFilePath(), null, true);
} else {
header('HTTP/1.0 403 Forbidden');
echo '403 Forbidden<br>';
return;
}
}
/**
* Download a library file.
* @param $args array
* @param $request Request
*/
function downloadLibraryFile($args, $request) {
import('classes.file.LibraryFileManager');
$context = $request->getContext();
$libraryFileManager = new LibraryFileManager($context->getId());
$libraryFileDao = DAORegistry::getDAO('LibraryFileDAO'); /* @var $libraryFileDao LibraryFileDAO */
$libraryFile = $libraryFileDao->getById($request->getUserVar('libraryFileId'), $context->getId());
if ($libraryFile) {
// If this file has a submission ID, ensure that the current
// user has access to that submission.
if ($libraryFile->getSubmissionId()) {
$allowedAccess = false;
// Managers are always allowed access.
if ($this->_callingHandler) {
$userRoles = $this->_callingHandler->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES);
if (array_intersect($userRoles, array(ROLE_ID_MANAGER))) $allowedAccess = true;
}
// Check for specific assignments.
$user = $request->getUser();
$userStageAssignmentDao = DAORegistry::getDAO('UserStageAssignmentDAO'); /* @var $userStageAssignmentDao UserStageAssignmentDAO */
$assignedUsers = $userStageAssignmentDao->getUsersBySubmissionAndStageId($libraryFile->getSubmissionId(), WORKFLOW_STAGE_ID_SUBMISSION);
while ($assignedUser = $assignedUsers->next()) {
if ($assignedUser->getId() == $user->getId()) {
$allowedAccess = true;
break;
}
}
} else {
$allowedAccess = true; // this is a Context submission document, default to access policy.
}
if ($allowedAccess) {
$libraryFileManager->downloadByPath($libraryFile->getFilePath());
} else {
header('HTTP/1.0 403 Forbidden');
echo '403 Forbidden<br>';
return;
}
}
}
}