handler to download images from $files_dir/anon-images/ without login

This commit is contained in:
Ralf Becker 2017-04-28 12:07:25 +02:00
parent cd72062f00
commit 47df7828ce

41
api/anon_images.php Normal file
View File

@ -0,0 +1,41 @@
<?php
/**
* EGroupware - Anonymous images for login page
*
* Images are store in EGroupware files-directory in subdirectory "anon-images"
*
* @link http://www.egroupware.org
* @author Ralf Becker <rb-at-egroupware.org>
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
* @package api
* @subpackage login
*/
use EGroupware\Api;
$GLOBALS['egw_info'] = array('flags' => array(
'disable_Template_class' => True,
'login' => True,
'currentapp' => 'login',
));
require('../header.inc.php');
$path = $GLOBALS['egw_info']['server']['files_dir'].'/anon-images';
if (!file_exists($path) || empty($_GET['src']) ||
basename($_GET['src']) !== $_GET['src'] || // make sure no directory traversal
!preg_match('/^[a-z0-9._-]+\.(jpe?g|png|gif|svg)$/i', $_GET['src']) || // only allow images, not eg. Javascript!
!file_exists($path .= '/'.$_GET['src']) ||
!($fp = fopen($path, 'r')))
{
error_log(__FILE__.": _GET[src]='$_GET[src]', path=$path returning HTTP status 404 Not Found");
http_response_code(404);
}
else
{
header('Content-Type: '.Api\MimeMagic::filename2mime($_GET['src']));
header('Content-Length: '.filesize($path));
fpassthru($fp);
fclose($fp);
}