moodle/user/pix.php

46 lines
1.3 KiB
PHP
Raw Normal View History

2001-11-22 06:23:56 +00:00
<?PHP // $Id$
// This function fetches user pictures from the data directory
// Syntax: pix.php/userid/f1.jpg or pix.php/userid/f2.jpg
// OR: ?file=userid/f1.jpg or ?file=userid/f2.jpg
2001-11-22 06:23:56 +00:00
require_once("../config.php");
2001-11-22 06:23:56 +00:00
$lifetime = 86400;
if (isset($file)) { // workaround for situations where / syntax doesn't work
$pathinfo = $file;
} else {
$pathinfo = get_slash_arguments("pix.php");
2001-11-22 06:23:56 +00:00
}
if (! $args = parse_slash_arguments($pathinfo)) {
error("No valid arguments supplied");
}
2001-11-22 06:23:56 +00:00
$numargs = count($args);
if ($numargs == 2) {
$userid = (integer)$args[0];
$image = $args[1];
$pathname = "$CFG->dataroot/users/$userid/$image";
2001-11-22 06:23:56 +00:00
} else {
$pathname = "$CFG->dirroot/user/default/f1.jpg";
2001-11-22 06:23:56 +00:00
}
$lastmodified = filemtime($pathname);
if (file_exists($pathname)) {
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $lastmodified) . " GMT");
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $lifetime) . " GMT");
header("Cache-control: max_age = $lifetime"); // a day
header("Pragma: ");
header("Content-disposition: inline; filename=$image");
header("Content-length: ".filesize($pathname));
header("Content-type: image/jpeg");
readfile("$pathname");
}
2001-11-22 06:23:56 +00:00
exit;
?>