mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-11 10:46:22 +00:00
95 lines
2.6 KiB
PHP
95 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @Todo:
|
|
* - Resizing
|
|
* - Filters
|
|
* - Conversion gif to mp4
|
|
* - Conversion jpg,png to webp
|
|
*/
|
|
|
|
class ImageController
|
|
{
|
|
//returns all extensions registered by this type of content
|
|
public function getRegisteredExtensions(){return array('png','bmp','gif','jpg','jpeg','x-png','ico','webp');}
|
|
|
|
public function handleUpload($tmpfile,$hash=false)
|
|
{
|
|
$type = exif_imagetype($tmpfile); //http://www.php.net/manual/en/function.exif-imagetype.php
|
|
switch($type)
|
|
{
|
|
case 1: $ext = 'gif';break; //gif
|
|
case 3: $ext = 'png';break; // png
|
|
case 6: $ext = 'bmp';break; // bmp
|
|
case 17: $ext = 'ico';break; // ico
|
|
case 18: $ext = 'webp';break; // webp
|
|
|
|
case 2: //we clean up exif data of JPGs so GPS and other data is removed
|
|
$res = imagecreatefromjpeg($tmpfile);
|
|
imagejpeg($res, $tmpfile, (defined('JPEG_COMPRESSION')?JPEG_COMPRESSION:90));
|
|
$ext = 'jpg';
|
|
break;
|
|
|
|
default:
|
|
return array('status'=>'err','reason'=>'Not a valid image');
|
|
}
|
|
|
|
if($hash===false)
|
|
{
|
|
$hash = getNewHash($ext,6);
|
|
}
|
|
|
|
mkdir(ROOT.DS.'data'.DS.$hash);
|
|
$file = ROOT.DS.'data'.DS.$hash.DS.$hash;
|
|
|
|
move_uploaded_file($tmpfile, $file);
|
|
|
|
if(defined('ALT_FOLDER') && ALT_FOLDER)
|
|
{
|
|
$altname=ALT_FOLDER.DS.$hash;
|
|
if(!file_exists($altname) && is_dir(ALT_FOLDER))
|
|
{
|
|
copy($file,$altname);
|
|
}
|
|
}
|
|
|
|
if(defined('LOG_UPLOADER') && LOG_UPLOADER)
|
|
{
|
|
$fh = fopen(ROOT.DS.'data'.DS.'uploads.txt', 'a');
|
|
fwrite($fh, time().';'.$url.';'.$hash.';'.getUserIP()."\n");
|
|
fclose($fh);
|
|
}
|
|
|
|
return array('status'=>'ok','hash'=>$hash,'url'=>URL.$hash);
|
|
}
|
|
|
|
public function handleHash($hash,$url)
|
|
{
|
|
$path = ROOT.DS.'data'.DS.$hash.DS.$hash;
|
|
|
|
$type = getExtensionOfFilename($hash);
|
|
switch($type)
|
|
{
|
|
case 'jpeg':
|
|
case 'jpg':
|
|
header ("Content-type: image/jpeg");
|
|
readfile($path);
|
|
break;
|
|
|
|
case 'png':
|
|
header ("Content-type: image/png");
|
|
readfile($path);
|
|
break;
|
|
|
|
case 'gif':
|
|
header ("Content-type: image/gif");
|
|
readfile($path);
|
|
break;
|
|
|
|
case 'webp':
|
|
header ("Content-type: image/webp");
|
|
readfile($path);
|
|
break;
|
|
}
|
|
}
|
|
} |