first commit
This commit is contained in:
91
front/document.send.php
Normal file
91
front/document.send.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
* ---------------------------------------------------------------------
|
||||
* GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2015-2020 Teclib' and contributors.
|
||||
*
|
||||
* http://glpi-project.org
|
||||
*
|
||||
* based on GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This file is part of GLPI.
|
||||
*
|
||||
* GLPI is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GLPI is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with GLPI. If not, see <http://www.gnu.org/licenses/>.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
ob_Start();
|
||||
include ('../inc/includes.php');
|
||||
|
||||
if (!$CFG_GLPI["use_public_faq"]) {
|
||||
Session::checkLoginUser();
|
||||
}
|
||||
|
||||
$doc = new Document();
|
||||
|
||||
if (isset($_GET['docid'])) { // docid for document
|
||||
if (!$doc->getFromDB($_GET['docid'])) {
|
||||
Html::displayErrorAndDie(__('Unknown file'), true);
|
||||
}
|
||||
|
||||
if (!file_exists(GLPI_DOC_DIR."/".$doc->fields['filepath'])) {
|
||||
Html::displayErrorAndDie(__('File not found'), true); // Not found
|
||||
|
||||
} else if ($doc->canViewFile($_GET)) {
|
||||
if ($doc->fields['sha1sum']
|
||||
&& $doc->fields['sha1sum'] != sha1_file(GLPI_DOC_DIR."/".$doc->fields['filepath'])) {
|
||||
|
||||
Html::displayErrorAndDie(__('File is altered (bad checksum)'), true); // Doc alterated
|
||||
} else {
|
||||
$context = isset($_GET['context']) ? $_GET['context'] : null;
|
||||
ob_end_clean();
|
||||
$doc->send($context);
|
||||
}
|
||||
} else {
|
||||
Html::displayErrorAndDie(__('Unauthorized access to this file'), true); // No right
|
||||
}
|
||||
|
||||
} else if (isset($_GET["file"])) { // for other file
|
||||
$splitter = explode("/", $_GET["file"], 2);
|
||||
if (count($splitter) == 2) {
|
||||
$expires_headers = false;
|
||||
$send = false;
|
||||
if (($splitter[0] == "_dumps")
|
||||
&& Session::haveRight("backup", CREATE)) {
|
||||
$send = GLPI_DUMP_DIR . '/' . $splitter[1];
|
||||
}
|
||||
|
||||
if ($splitter[0] == "_pictures") {
|
||||
if (Document::isImage(GLPI_PICTURE_DIR . '/' . $splitter[1])) {
|
||||
// Can use expires header as picture file path changes when picture changes.
|
||||
$expires_headers = true;
|
||||
$send = GLPI_PICTURE_DIR . '/' . $splitter[1];
|
||||
}
|
||||
}
|
||||
|
||||
if ($send && file_exists($send)) {
|
||||
ob_end_clean();
|
||||
Toolbox::sendFile($send, $splitter[1], null, $expires_headers);
|
||||
} else {
|
||||
Html::displayErrorAndDie(__('Unauthorized access to this file'), true);
|
||||
}
|
||||
} else {
|
||||
Html::displayErrorAndDie(__('Invalid filename'), true);
|
||||
}
|
||||
}
|
||||
ob_end_clean();
|
||||
Reference in New Issue
Block a user