This commit is contained in:
2024-05-20 15:37:46 +03:00
commit 00b7dbd0b7
10404 changed files with 3285853 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace Nextend\Framework\Browse\Block\BrowseManager;
use Nextend\Framework\Asset\Js\Js;
use Nextend\Framework\View\AbstractBlock;
use Nextend\SmartSlider3\Application\Admin\TraitAdminUrl;
class BlockBrowseManager extends AbstractBlock {
use TraitAdminUrl;
public function display() {
Js::addFirstCode("new _N2.NextendBrowse('" . $this->getAjaxUrlBrowse() . "', " . (defined('N2_IMAGE_UPLOAD_DISABLE') ? 0 : 1) . ");");
}
}

View File

@ -0,0 +1,20 @@
<?php
namespace Nextend\Framework\Browse;
use Nextend\Framework\Browse\Block\BrowseManager\BlockBrowseManager;
use Nextend\Framework\Pattern\VisualManagerTrait;
class BrowseManager {
use VisualManagerTrait;
public function display() {
$fontManagerBlock = new BlockBrowseManager($this->MVCHelper);
$fontManagerBlock->display();
}
}

View File

@ -0,0 +1,388 @@
<?php
namespace Nextend\Framework\Browse\BulletProof;
use Nextend\Framework\Filesystem\Filesystem;
use Nextend\Framework\Image\ImageEdit;
use Nextend\Framework\Request\Request;
/**
* BULLETPROOF,
*
* This is a one-file solution for a quick and safe way of
* uploading, watermarking, cropping and resizing images
* during and after uploads with PHP with best security.
*
* This class is heavily commented, to be as much friendly as possible.
* Please help out by posting out some bugs/flaws if you encounter any. Thanks!
*
* @category Image uploader
* @package BulletProof
* @version 1.4.0
* @author samayo
* @link https://github.com/samayo/BulletProof
* @license Luke 3:11 ( Free )
*/
class BulletProof {
/*
|--------------------------------------------------------------------------
| Image Upload Properties
\--------------------------------------------------------------------------*/
/**
* Set a group of default image types to upload.
*
* @var array
*/
protected $imageType = array(
"jpg",
"jpeg",
"png",
"gif",
"webp",
"svg"
);
/**
* Set a default file size to upload. Values are in bytes. Remember: 1kb ~ 1000 bytes.
*
* @var array
*/
protected $imageSize = array(
"min" => 1,
"max" => 20000000
);
/**
* Set a default min & maximum height & width for image to upload.
*
* @var array
*/
protected $imageDimension = array(
"height" => 10000,
"width" => 10000
);
/**
* Set a default folder to upload images, if it does not exist, it will be created.
*
* @var string
*/
protected $uploadDir = "uploads";
/**
* To get the real image/mime type. i.e gif, jpeg, png, ....
*
* @var string
*/
protected $getMimeType;
/*
|--------------------------------------------------------------------------
| Image Upload Methods
\--------------------------------------------------------------------------*/
/**
* Stores image types to upload
*
* @param array $fileTypes - ex: ['jpg', 'doc', 'txt'].
*
* @return $this
*/
public function fileTypes(array $fileTypes) {
$this->imageType = $fileTypes;
return $this;
}
/**
* Minimum and Maximum allowed image size for upload (in bytes),
*
* @param array $fileSize - ex: ['min'=>500, 'max'=>1000]
*
* @return $this
*/
public function limitSize(array $fileSize) {
$this->imageSize = $fileSize;
return $this;
}
/**
* Default & maximum allowed height and width image to download.
*
* @param array $dimensions
*
* @return $this
*/
public function limitDimension(array $dimensions) {
$this->imageDimension = $dimensions;
return $this;
}
/**
* Get the real image's Extension/mime type
*
* @param $imageName
*
* @return mixed
* @throws Exception
*/
protected function getMimeType($imageName) {
if (!file_exists($imageName)) {
throw new Exception("Image " . $imageName . " does not exist");
}
$listOfMimeTypes = array(
1 => "gif",
"jpeg",
"png",
"swf",
"psd",
"bmp",
"tiff",
"tiff",
"jpc",
"jp2",
"jpx",
"jb2",
"swc",
"iff",
"wbmp",
"xmb",
"ico",
"webp",
"svg"
);
$imageType = ImageEdit::exif_imagetype($imageName);
if (isset($listOfMimeTypes[$imageType])) {
return $listOfMimeTypes[$imageType];
}
return false;
}
/**
* Handy method for getting image dimensions (W & H) in pixels.
*
* @param $getImage - The image name
*
* @return array
*/
protected function getPixels($getImage) {
list($width, $height) = getImageSize($getImage);
return array(
"width" => $width,
"height" => $height
);
}
/**
* Rename file either from method or by generating a random one.
*
* @param $isNameProvided - A new name for the file.
*
* @return string
*/
protected function imageRename($isNameProvided) {
if ($isNameProvided) {
return $isNameProvided . "." . $this->getMimeType;
}
return uniqid(true) . "_" . str_shuffle(implode(range("E", "Q"))) . "." . $this->getMimeType;
}
/**
* Get the specified upload dir, if it does not exist, create a new one.
*
* @param $directoryName - directory name where you want your files to be uploaded
*
* @return $this
* @throws Exception
*/
public function uploadDir($directoryName) {
if (!file_exists($directoryName) && !is_dir($directoryName)) {
$createFolder = Filesystem::createFolder("" . $directoryName);
if (!$createFolder) {
throw new Exception("Folder " . $directoryName . " could not be created");
}
}
$this->uploadDir = $directoryName;
return $this;
}
/**
* For getting common error messages from FILES[] array during upload.
*
* @return array
*/
protected function commonUploadErrors($key) {
$uploadErrors = array(
UPLOAD_ERR_OK => "...",
UPLOAD_ERR_INI_SIZE => "File is larger than the specified amount set by the server",
UPLOAD_ERR_FORM_SIZE => "File is larger than the specified amount specified by browser",
UPLOAD_ERR_PARTIAL => "File could not be fully uploaded. Please try again later",
UPLOAD_ERR_NO_FILE => "File is not found",
UPLOAD_ERR_NO_TMP_DIR => "Can't write to disk, due to server configuration ( No tmp dir found )",
UPLOAD_ERR_CANT_WRITE => "Failed to write file to disk. Please check you file permissions",
UPLOAD_ERR_EXTENSION => "A PHP extension has halted this file upload process"
);
return $uploadErrors[$key];
}
/**
* Simple file check and delete wrapper.
*
* @param $fileToDelete
*
* @return bool
* @throws Exception
*/
public function deleteFile($fileToDelete) {
if (file_exists($fileToDelete) && !unlink($fileToDelete)) {
throw new Exception("File may have been deleted or does not exist");
}
return true;
}
/**
* Final image uploader method, to check for errors and upload
*
* @param $fileToUpload
* @param null $isNameProvided
*
* @return string
* @throws Exception
*/
public function upload($fileToUpload, $isNameProvided = null) {
$isMedia = false;
// Check if any errors are thrown by the FILES[] array
if ($fileToUpload["error"]) {
throw new Exception($this->commonUploadErrors($fileToUpload["error"]));
}
if (function_exists("mime_content_type")) {
$rawMime = mime_content_type($fileToUpload["tmp_name"]);
} else {
if (!empty($fileToUpload['name'])) {
$path_parts = pathinfo($fileToUpload['name']);
switch ($path_parts['extension']) {
case 'mp4':
$rawMime = 'video/mp4';
break;
case 'mp3':
$rawMime = 'audio/mpeg';
break;
default:
$rawMime = '';
break;
}
}
}
switch ($rawMime) {
case 'video/mp4':
$this->getMimeType = 'mp4';
$isMedia = true;
break;
case 'audio/mpeg':
$this->getMimeType = 'mp3';
$isMedia = true;
break;
}
if (!$isMedia) {
// First get the real file extension
$this->getMimeType = $this->getMimeType($fileToUpload["tmp_name"]);
$specialImage = false;
if ($this->getMimeType === false) {
if (isset($fileToUpload["type"]) && strpos($fileToUpload["type"], 'image/') !== false) {
$this->getMimeType = str_replace(array(
'image/',
'svg+xml'
), array(
'',
'svg'
), $fileToUpload["type"]);
$specialImage = true;
}
}
// Check if this file type is allowed for upload
if (!in_array($this->getMimeType, $this->imageType)) {
throw new Exception(" This is not allowed file type!
Please only upload ( " . implode(", ", $this->imageType) . " ) file types");
}
//Check if size (in bytes) of the image are above or below of defined in 'limitSize()'
if ($fileToUpload["size"] < $this->imageSize["min"] || $fileToUpload["size"] > $this->imageSize["max"]) {
throw new Exception("File sizes must be between " . implode(" to ", $this->imageSize) . " bytes");
}
// check if image is valid pixel-wise.
if (!$specialImage) {
$pixel = $this->getPixels($fileToUpload["tmp_name"]);
if ($pixel["width"] < 4 || $pixel["height"] < 4) {
throw new Exception("This file is either too small or corrupted to be an image");
}
if ($pixel["height"] > $this->imageDimension["height"] || $pixel["width"] > $this->imageDimension["width"]) {
throw new Exception("Image pixels/size must be below " . implode(", ", $this->imageDimension) . " pixels");
}
}
}
// create upload directory if it does not exist
$this->uploadDir($this->uploadDir);
$i = '';
$newFileName = $this->imageRename($isNameProvided);
while (file_exists($this->uploadDir . "/" . $newFileName)) {
// The file already uploaded, nothing to do here
if (self::isFilesIdentical($this->uploadDir . "/" . $newFileName, $fileToUpload["tmp_name"])) {
return $this->uploadDir . "/" . $newFileName;
}
$i++;
$newFileName = $this->imageRename($isNameProvided . $i);
}
// Upload the file
$moveUploadedFile = $this->moveUploadedFile($fileToUpload["tmp_name"], $this->uploadDir . "/" . $newFileName);
if ($moveUploadedFile) {
return $this->uploadDir . "/" . $newFileName;
} else {
throw new Exception(" File could not be uploaded. Unknown error occurred. ");
}
}
public function moveUploadedFile($uploaded_file, $new_file) {
if (!is_uploaded_file($uploaded_file)) {
return copy($uploaded_file, $new_file);
}
return move_uploaded_file($uploaded_file, $new_file);
}
private static function isFilesIdentical($fn1, $fn2) {
if (filetype($fn1) !== filetype($fn2)) return FALSE;
if (filesize($fn1) !== filesize($fn2)) return FALSE;
if (sha1_file($fn1) != sha1_file($fn2)) return false;
return true;
}
}

View File

@ -0,0 +1,9 @@
<?php
namespace Nextend\Framework\Browse\BulletProof;
class Exception extends \Exception {
}

View File

@ -0,0 +1,141 @@
<?php
namespace Nextend\Framework\Browse;
use Exception;
use Nextend\Framework\Browse\BulletProof\BulletProof;
use Nextend\Framework\Controller\Admin\AdminAjaxController;
use Nextend\Framework\Filesystem\Filesystem;
use Nextend\Framework\Image\Image;
use Nextend\Framework\Notification\Notification;
use Nextend\Framework\Request\Request;
use Nextend\Framework\ResourceTranslator\ResourceTranslator;
class ControllerAjaxBrowse extends AdminAjaxController {
public function actionIndex() {
$this->validateToken();
$root = Filesystem::convertToRealDirectorySeparator(Filesystem::getImagesFolder());
$path = Filesystem::realpath($root . '/' . ltrim(rtrim(Request::$REQUEST->getVar('path', ''), '/'), '/'));
if (strpos($path, $root) !== 0) {
$path = $root;
}
$_directories = glob($path . '/*', GLOB_ONLYDIR);
$directories = array();
for ($i = 0; $i < count($_directories); $i++) {
$directories[basename($_directories[$i])] = Filesystem::toLinux($this->relative($_directories[$i], $root));
}
$extensions = array(
'jpg',
'jpeg',
'png',
'gif',
'mp4',
'mp3',
'svg',
'webp'
);
$_files = scandir($path);
$files = array();
for ($i = 0; $i < count($_files); $i++) {
$_files[$i] = $path . DIRECTORY_SEPARATOR . $_files[$i];
$ext = strtolower(pathinfo($_files[$i], PATHINFO_EXTENSION));
if (self::check_utf8($_files[$i]) && in_array($ext, $extensions)) {
$files[basename($_files[$i])] = ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($_files[$i]));
}
}
$relativePath = Filesystem::toLinux($this->relative($path, $root));
if (!$relativePath) {
$relativePath = '';
}
$this->response->respond(array(
'fullPath' => $path,
'path' => $relativePath,
'directories' => (object)$directories,
'files' => (object)$files
));
}
private static function check_utf8($str) {
$len = strlen($str);
for ($i = 0; $i < $len; $i++) {
$c = ord($str[$i]);
if ($c > 128) {
if (($c > 247)) return false; elseif ($c > 239) $bytes = 4;
elseif ($c > 223) $bytes = 3;
elseif ($c > 191) $bytes = 2;
else return false;
if (($i + $bytes) > $len) return false;
while ($bytes > 1) {
$i++;
$b = ord($str[$i]);
if ($b < 128 || $b > 191) return false;
$bytes--;
}
}
}
return true;
}
public function actionUpload() {
if (defined('N2_IMAGE_UPLOAD_DISABLE')) {
Notification::error(n2_('You are not allowed to upload!'));
$this->response->error();
}
$this->validateToken();
$root = Filesystem::getImagesFolder();
$folder = ltrim(rtrim(Request::$REQUEST->getVar('path', ''), '/'), '/');
$path = Filesystem::realpath($root . '/' . $folder);
if ($path === false || $path == '') {
$folder = preg_replace("/[^A-Za-z0-9]/", '', $folder);
if (empty($folder)) {
Notification::error(n2_('Folder is missing!'));
$this->response->error();
} else {
Filesystem::createFolder($root . '/' . $folder);
$path = Filesystem::realpath($root . '/' . $folder);
}
}
$relativePath = Filesystem::toLinux($this->relative($path, $root));
if (!$relativePath) {
$relativePath = '';
}
$response = array(
'path' => $relativePath
);
try {
$image = Request::$FILES->getVar('image');
if ($image['name'] !== null) {
$info = pathinfo($image['name']);
$fileName = preg_replace('/[^a-zA-Z0-9_-]/', '', $info['filename']);
if (strlen($fileName) == 0) {
$fileName = '';
}
$upload = new BulletProof();
$file = $upload->uploadDir($path)
->upload($image, $fileName);
$response['name'] = basename($file);
$response['url'] = ResourceTranslator::urlToResource(Filesystem::pathToAbsoluteURL($file));
Image::onImageUploaded($file);
}
} catch (Exception $e) {
Notification::error($e->getMessage());
$this->response->error();
}
$this->response->respond($response);
}
private function relative($path, $root) {
return substr(Filesystem::convertToRealDirectorySeparator($path), strlen($root));
}
}