init
This commit is contained in:
commit
db400e4a38
2750 changed files with 440400 additions and 0 deletions
34
help_FR/scp/image.php
Normal file
34
help_FR/scp/image.php
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/*********************************************************************
|
||||
image.php
|
||||
|
||||
Simply downloads the file...on hash validation as follows;
|
||||
|
||||
* Hash must be 64 chars long.
|
||||
* First 32 chars is the perm. file hash
|
||||
* Next 32 chars is md5(file_id.session_id().file_hash)
|
||||
|
||||
Peter Rotich <peter@osticket.com>
|
||||
Copyright (c) 2006-2013 osTicket
|
||||
http://www.osticket.com
|
||||
|
||||
Released under the GNU General Public License WITHOUT ANY WARRANTY.
|
||||
See LICENSE.TXT for details.
|
||||
|
||||
vim: expandtab sw=4 ts=4 sts=4:
|
||||
**********************************************************************/
|
||||
|
||||
require('staff.inc.php');
|
||||
require_once(INCLUDE_DIR.'class.file.php');
|
||||
$h=trim($_GET['h']);
|
||||
//basic checks
|
||||
if(!$h || strlen($h)!=64 //32*2
|
||||
|| !($file=AttachmentFile::lookup(substr($h,0,32))) //first 32 is the file hash.
|
||||
|| strcasecmp($h, $file->getDownloadHash())) //next 32 is file id + session hash.
|
||||
Http::response(404, __('Unknown or invalid file'));
|
||||
|
||||
if ($_GET['s'] && is_numeric($_GET['s']))
|
||||
$file->display($_GET['s']);
|
||||
else
|
||||
$file->display();
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue