Merge pull request #246 from kkigomi/feature/cheditor-hook-get_editor_upload_url

CHEditor에서 이미지 업로드시 get_editor_upload_url Hook에 파일의 정보 추가
This commit is contained in:
thisgun
2023-07-17 11:47:37 +09:00
committed by GitHub

View File

@ -1,13 +1,13 @@
<?php <?php
require_once("config.php"); require_once("config.php");
if(!function_exists('ft_nonce_is_valid')){ if (!function_exists('ft_nonce_is_valid')) {
include_once('../editor.lib.php'); include_once('../editor.lib.php');
} }
if( !function_exists('che_reprocessImage') ){ if (!function_exists('che_reprocessImage')) {
function che_reprocessImage($file_path, $callback){ function che_reprocessImage($file_path, $callback)
{
$MIME_TYPES_PROCESSORS = array( $MIME_TYPES_PROCESSORS = array(
"image/gif" => array("imagecreatefromgif", "imagegif"), "image/gif" => array("imagecreatefromgif", "imagegif"),
"image/jpg" => array("imagecreatefromjpeg", "imagejpeg"), "image/jpg" => array("imagecreatefromjpeg", "imagejpeg"),
@ -60,13 +60,13 @@ if( !function_exists('che_reprocessImage') ){
$is_editor_upload = false; $is_editor_upload = false;
$get_nonce = get_session('nonce_'.FT_NONCE_SESSION_KEY); $get_nonce = get_session('nonce_' . FT_NONCE_SESSION_KEY);
if( $get_nonce && ft_nonce_is_valid( $get_nonce, 'cheditor' ) ){ if ($get_nonce && ft_nonce_is_valid($get_nonce, 'cheditor')) {
$is_editor_upload = true; $is_editor_upload = true;
} }
if( !$is_editor_upload ){ if (!$is_editor_upload) {
exit; exit;
} }
@ -78,7 +78,7 @@ run_event('cheditor_photo_upload', $data_dir, $data_url);
$tempfile = $_FILES['file']['tmp_name']; $tempfile = $_FILES['file']['tmp_name'];
$filename = $_FILES['file']['name']; $filename = $_FILES['file']['name'];
$filename_len = strrpos($filename, "."); $filename_len = strrpos($filename, ".");
$type = substr($filename, strrpos($filename, ".")+1); $type = substr($filename, strrpos($filename, ".") + 1);
$found = false; $found = false;
switch ($type) { switch ($type) {
case "jpg": case "jpg":
@ -108,29 +108,48 @@ if (!$imgsize) {
$filesize = 0; $filesize = 0;
$random_name = '-ERR'; $random_name = '-ERR';
unlink($savefile); unlink($savefile);
}; }
if ( CHE_UPLOAD_IMG_CHECK && ! che_reprocessImage($savefile, null) ){ if (CHE_UPLOAD_IMG_CHECK && !che_reprocessImage($savefile, null)) {
$filesize = 0; $filesize = 0;
$random_name = '-ERR'; $random_name = '-ERR';
unlink($savefile); unlink($savefile);
} }
try { try {
if(defined('G5_FILE_PERMISSION')) chmod($savefile, G5_FILE_PERMISSION); if (defined('G5_FILE_PERMISSION')) {
chmod($savefile, G5_FILE_PERMISSION);
}
} catch (Exception $e) { } catch (Exception $e) {
} }
$file_url = SAVE_URL.'/'.$filename; $file_url = SAVE_URL . '/' . $filename;
if( function_exists('run_replace') ){ if (function_exists('run_replace')) {
$file_url = run_replace('get_editor_upload_url', $file_url, $savefile, array()); $fileInfo = new \stdClass();
$fileInfo->name = (string) $filename;
$fileInfo->size = (int) $filesize;
$fileInfo->url = (string) $file_url;
if (isset($_POST['origname'])) {
$fileInfo->oriname = (string) $_POST['origname'];
}
if ($imgsize) {
$fileInfo->width = (int) $imgsize[0];
$fileInfo->height = (int) $imgsize[1];
$fileInfo->type = (string) $imgsize['mime'];
}
$file_url = run_replace('get_editor_upload_url', $file_url, $savefile, $fileInfo);
} }
$rdata = sprintf('{"fileUrl": "%s", "filePath": "%s", "fileName": "%s", "fileSize": "%d" }', $rdata = sprintf(
'{"fileUrl": "%s", "filePath": "%s", "fileName": "%s", "fileSize": "%d" }',
$file_url, $file_url,
$savefile, $savefile,
$filename, $filename,
$filesize ); $filesize
);
echo $rdata; echo $rdata;