Files
MYSOPHAL/front/pluginimage.send.php
2025-08-07 13:15:31 +01:00

79 lines
2.6 KiB
PHP

<?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/>.
* ---------------------------------------------------------------------
*/
/**
* Send image generated by a plugin to browser
*
* Arguments :
* - plugin : name of the plugin, also the subdir in files/_plugins
* - name : of the image in the files/_plugins/xxxx dir
* - clean : delete the image after send it
*/
use Glpi\Event;
include ('../inc/includes.php');
if (!isset($_GET["name"]) || !isset($_GET["plugin"]) || !Plugin::isPluginActive($_GET["plugin"])) {
Event::log("-1", "system", 2, "security",
//TRANS: %s is user name
sprintf(__('%s makes a bad usage.'), $_SESSION["glpiname"]));
die("security");
}
$dir = GLPI_PLUGIN_DOC_DIR."/".$_GET["plugin"]."/";
$filepath = $dir.$_GET["name"];
if ((basename($_GET["name"]) != $_GET["name"])
|| (basename($_GET["plugin"]) != $_GET["plugin"])
|| !Toolbox::startsWith(realpath($filepath), realpath(GLPI_PLUGIN_DOC_DIR))
|| !Document::isImage($filepath)) {
Event::log("-1", "system", 1, "security",
sprintf(__('%s tries to use a non standard path.'), $_SESSION["glpiname"]));
die("security");
}
// Now send the file with header() magic
header("Expires: Sun, 30 Jan 1966 06:30:00 GMT");
header('Pragma: private'); /// IE BUG + SSL
header('Cache-control: private, must-revalidate'); /// IE BUG + SSL
header('Content-disposition: filename="' . $_GET["name"] . '"');
if (file_exists($filepath)) {
header("Content-type: " . Toolbox::getMime($filepath));
readfile($filepath);
} else {
header("Content-type: image/png");
readfile($CFG_GLPI['root_doc'] . "/pics/warning.png");
}