2022-08-19 19:48:37 +08:00
|
|
|
<?php
|
|
|
|
|
|
2023-04-25 20:11:49 +08:00
|
|
|
namespace Webman\Captcha;
|
2022-08-19 19:48:37 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles actions related to captcha image files including saving and garbage collection
|
|
|
|
|
*
|
|
|
|
|
* @author Gregwar <g.passault@gmail.com>
|
|
|
|
|
* @author Jeremy Livingston <jeremy@quizzle.com>
|
|
|
|
|
*/
|
|
|
|
|
class ImageFileHandler
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Name of folder for captcha images
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $imageFolder;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Absolute path to public web folder
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $webPath;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Frequency of garbage collection in fractions of 1
|
|
|
|
|
* @var int
|
|
|
|
|
*/
|
|
|
|
|
protected $gcFreq;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maximum age of images in minutes
|
|
|
|
|
* @var int
|
|
|
|
|
*/
|
|
|
|
|
protected $expiration;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $imageFolder
|
|
|
|
|
* @param $webPath
|
|
|
|
|
* @param $gcFreq
|
|
|
|
|
* @param $expiration
|
|
|
|
|
*/
|
|
|
|
|
public function __construct($imageFolder, $webPath, $gcFreq, $expiration)
|
|
|
|
|
{
|
|
|
|
|
$this->imageFolder = $imageFolder;
|
|
|
|
|
$this->webPath = $webPath;
|
|
|
|
|
$this->gcFreq = $gcFreq;
|
|
|
|
|
$this->expiration = $expiration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Saves the provided image content as a file
|
|
|
|
|
*
|
|
|
|
|
* @param string $contents
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function saveAsFile($contents)
|
|
|
|
|
{
|
|
|
|
|
$this->createFolderIfMissing();
|
|
|
|
|
|
|
|
|
|
$filename = md5(uniqid()) . '.jpg';
|
|
|
|
|
$filePath = $this->webPath . '/' . $this->imageFolder . '/' . $filename;
|
|
|
|
|
imagejpeg($contents, $filePath, 15);
|
|
|
|
|
|
|
|
|
|
return '/' . $this->imageFolder . '/' . $filename;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates the folder if it doesn't exist
|
|
|
|
|
*/
|
|
|
|
|
protected function createFolderIfMissing()
|
|
|
|
|
{
|
|
|
|
|
if (!file_exists($this->webPath . '/' . $this->imageFolder)) {
|
|
|
|
|
mkdir($this->webPath . '/' . $this->imageFolder, 0755);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|