X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=js_upload%2Fjs_upload.php;h=89f62ea4dac04ef38714fc4e8ab8bf374d2baba4;hb=db998b0bf1231c66c0ec1fbba8389ef91f98aa0c;hp=83fb275a2a21b12257a16acbe03ea52977377549;hpb=b303aedd668010f80457cc5b0080a39c8919a09c;p=friendica-addons.git diff --git a/js_upload/js_upload.php b/js_upload/js_upload.php index 83fb275a..89f62ea4 100644 --- a/js_upload/js_upload.php +++ b/js_upload/js_upload.php @@ -1,218 +1,120 @@ + * Maintainer: Hypolite Petovan */ -/** - * - * JavaScript Photo/Image Uploader - * - * Uses Valum 'qq' Uploader. - * Module Author: Chris Case - * - */ - -use Friendica\Core\Config; +use Friendica\App; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; - -function js_upload_install() { - Hook::register('photo_upload_form', 'addon/js_upload/js_upload.php', 'js_upload_form'); - Hook::register('photo_post_init', 'addon/js_upload/js_upload.php', 'js_upload_post_init'); - Hook::register('photo_post_file', 'addon/js_upload/js_upload.php', 'js_upload_post_file'); - Hook::register('photo_post_end', 'addon/js_upload/js_upload.php', 'js_upload_post_end'); +use Friendica\Core\Renderer; +use Friendica\DI; +use Friendica\Util\Strings; + +global $js_upload_jsonresponse; +global $js_upload_result; + +function js_upload_install() +{ + Hook::register('photo_upload_form', __FILE__, 'js_upload_form'); + Hook::register('photo_post_init', __FILE__, 'js_upload_post_init'); + Hook::register('photo_post_file', __FILE__, 'js_upload_post_file'); + Hook::register('photo_post_end', __FILE__, 'js_upload_post_end'); } - -function js_upload_uninstall() { - Hook::unregister('photo_upload_form', 'addon/js_upload/js_upload.php', 'js_upload_form'); - Hook::unregister('photo_post_init', 'addon/js_upload/js_upload.php', 'js_upload_post_init'); - Hook::unregister('photo_post_file', 'addon/js_upload/js_upload.php', 'js_upload_post_file'); - Hook::unregister('photo_post_end', 'addon/js_upload/js_upload.php', 'js_upload_post_end'); -} - - -function js_upload_form(&$a,&$b) { - +function js_upload_form(App $a, array &$b) +{ $b['default_upload'] = false; - $b['addon_text'] .= ''; - $b['addon_text'] .= ''; - - $upload_msg = L10n::t('Select files for upload'); - $drop_msg = L10n::t('Drop files here to upload'); - $cancel = L10n::t('Cancel'); - $failed = L10n::t('Failed'); - - $maximagesize = intval(Config::get('system','maximagesize')); - - $b['addon_text'] .= <<< EOT - -
- -
- - - -EOT; - - + DI::page()->registerStylesheet('addon/js_upload/file-uploader/client/fileuploader.css'); + DI::page()->registerFooterScript('addon/js_upload/file-uploader/client/fileuploader.js'); + + $tpl = Renderer::getMarkupTemplate('js_upload.tpl', 'addon/js_upload'); + $b['addon_text'] .= Renderer::replaceMacros($tpl, [ + '$upload_msg' => DI::l10n()->t('Select files for upload'), + '$drop_msg' => DI::l10n()->t('Drop files here to upload'), + '$cancel' => DI::l10n()->t('Cancel'), + '$failed' => DI::l10n()->t('Failed'), + '$post_url' => $b['post_url'], + '$maximagesize' => intval(DI::config()->get('system', 'maximagesize')), + ]); } -function js_upload_post_init(&$a,&$b) { +function js_upload_post_init(App $a, &$b) +{ + global $js_upload_result, $js_upload_jsonresponse; - // list of valid extensions, ex. array("jpeg", "xml", "bmp") - - $allowedExtensions = ["jpeg","gif","png","jpg"]; + // list of valid extensions + $allowedExtensions = ['jpeg', 'gif', 'png', 'jpg']; // max file size in bytes - - $sizeLimit = Config::get('system','maximagesize'); //6 * 1024 * 1024; + $sizeLimit = DI::config()->get('system', 'maximagesize'); $uploader = new qqFileUploader($allowedExtensions, $sizeLimit); $result = $uploader->handleUpload(); - // to pass data through iframe you will need to encode all html tags - $a->data['upload_jsonresponse'] = htmlspecialchars(json_encode($result), ENT_NOQUOTES); + $js_upload_jsonresponse = htmlspecialchars(json_encode($result), ENT_NOQUOTES); - if(isset($result['error'])) { - Logger::log('mod/photos.php: photos_post(): error uploading photo: ' . $result['error'] , Logger::DEBUG); + if (isset($result['error'])) { + Logger::log('mod/photos.php: photos_post(): error uploading photo: ' . $result['error'], Logger::DEBUG); echo json_encode($result); exit(); } - $a->data['upload_result'] = $result; - + $js_upload_result = $result; } -function js_upload_post_file(&$a,&$b) { +function js_upload_post_file(App $a, &$b) +{ + global $js_upload_result; - $result = $a->data['upload_result']; + $result = $js_upload_result; - $b['src'] = $result['path']; - $b['filename'] = $result['filename']; - $b['filesize'] = filesize($b['src']); + $b['src'] = $result['path']; + $b['filename'] = $result['filename']; + $b['filesize'] = filesize($b['src']); } +function js_upload_post_end(App $a, &$b) +{ + global $js_upload_jsonresponse; -function js_upload_post_end(&$a,&$b) { - -Logger::log('upload_post_end'); - if(!empty($a->data['upload_jsonresponse'])) { - echo $a->data['upload_jsonresponse']; + Logger::log('upload_post_end'); + if (!empty($js_upload_jsonresponse)) { + echo $js_upload_jsonresponse; exit(); } - } - /** * Handle file uploads via XMLHttpRequest */ -class qqUploadedFileXhr { - +class qqUploadedFileXhr +{ private $pathnm = ''; /** * Save the file in the temp dir. + * * @return boolean TRUE on success */ - function save() { - $input = fopen("php://input", "r"); + function save() + { + $input = fopen('php://input', 'r'); - $upload_dir = Config::get('system','tempdir'); - if(! $upload_dir) + $upload_dir = DI::config()->get('system', 'tempdir'); + if (!$upload_dir) $upload_dir = sys_get_temp_dir(); - $this->pathnm = tempnam($upload_dir,'frn'); + $this->pathnm = tempnam($upload_dir, 'frn'); - $temp = fopen($this->pathnm,"w"); + $temp = fopen($this->pathnm, 'w'); $realSize = stream_copy_to_stream($input, $temp); fclose($input); @@ -224,17 +126,20 @@ class qqUploadedFileXhr { return true; } - function getPath() { + function getPath() + { return $this->pathnm; } - function getName() { + function getName() + { return $_GET['qqfile']; } - function getSize() { - if (isset($_SERVER["CONTENT_LENGTH"])){ - return (int)$_SERVER["CONTENT_LENGTH"]; + function getSize() + { + if (isset($_SERVER['CONTENT_LENGTH'])) { + return (int)$_SERVER['CONTENT_LENGTH']; } else { throw new Exception('Getting content length is not supported.'); } @@ -244,39 +149,43 @@ class qqUploadedFileXhr { /** * Handle file uploads via regular form post (uses the $_FILES array) */ - -class qqUploadedFileForm { - - +class qqUploadedFileForm +{ /** * Save the file to the specified path + * * @return boolean TRUE on success */ - - - function save() { + function save() + { return true; } - function getPath() { + function getPath() + { return $_FILES['qqfile']['tmp_name']; } - function getName() { + function getName() + { return $_FILES['qqfile']['name']; } - function getSize() { + + function getSize() + { return $_FILES['qqfile']['size']; } } -class qqFileUploader { +class qqFileUploader +{ private $allowedExtensions = []; private $sizeLimit = 10485760; private $file; - function __construct(array $allowedExtensions = [], $sizeLimit = 10485760){ - $allowedExtensions = array_map("strtolower", $allowedExtensions); + function __construct(array $allowedExtensions = [], $sizeLimit = 10485760) + { + $allowedExtensions = array_map('strtolower', $allowedExtensions); $this->allowedExtensions = $allowedExtensions; $this->sizeLimit = $sizeLimit; @@ -291,14 +200,17 @@ class qqFileUploader { } - - private function toBytes($str){ + private function toBytes($str) + { $val = trim($str); - $last = strtolower($str[strlen($str)-1]); - switch($last) { - case 'g': $val *= 1024; - case 'm': $val *= 1024; - case 'k': $val *= 1024; + $last = strtolower($str[strlen($str) - 1]); + switch ($last) { + case 'g': + $val *= 1024; + case 'm': + $val *= 1024; + case 'k': + $val *= 1024; } return $val; } @@ -306,29 +218,28 @@ class qqFileUploader { /** * Returns array('success'=>true) or array('error'=>'error message') */ - function handleUpload(){ - + function handleUpload() + { if (!$this->file) { - return ['error' => L10n::t('No files were uploaded.')]; + return ['error' => DI::l10n()->t('No files were uploaded.')]; } $size = $this->file->getSize(); if ($size == 0) { - return ['error' => L10n::t('Uploaded file is empty')]; + return ['error' => DI::l10n()->t('Uploaded file is empty')]; } // if ($size > $this->sizeLimit) { -// return array('error' => L10n::t('Uploaded file is too large')); +// return array('error' => DI::l10n()->t('Uploaded file is too large')); // } - $maximagesize = Config::get('system','maximagesize'); - - if(($maximagesize) && ($size > $maximagesize)) { - return ['error' => L10n::t('Image exceeds size limit of ') . $maximagesize ]; + $maximagesize = DI::config()->get('system', 'maximagesize'); + if (($maximagesize) && ($size > $maximagesize)) { + return ['error' => DI::l10n()->t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize))]; } $pathinfo = pathinfo($this->file->getName()); @@ -337,26 +248,24 @@ class qqFileUploader { if (!isset($pathinfo['extension'])) { Logger::warning('extension isn\'t set.', ['filename' => $filename]); } - $ext = defaults($pathinfo, 'extension', ''); + $ext = $pathinfo['extension'] ?? ''; - if($this->allowedExtensions && !in_array(strtolower($ext), $this->allowedExtensions)){ - $these = implode(', ', $this->allowedExtensions); - return ['error' => L10n::t('File has an invalid extension, it should be one of ') . $these . '.']; + if ($this->allowedExtensions && !in_array(strtolower($ext), $this->allowedExtensions)) { + return ['error' => DI::l10n()->t('File has an invalid extension, it should be one of %s.', implode(', ', $this->allowedExtensions))]; } - if ($this->file->save()){ + if ($this->file->save()) { return [ - 'success' => true, - 'path' => $this->file->getPath(), + 'success' => true, + 'path' => $this->file->getPath(), 'filename' => $filename . '.' . $ext ]; } else { return [ - 'error' => L10n::t('Upload was cancelled, or server error encountered'), - 'path' => $this->file->getPath(), + 'error' => DI::l10n()->t('Upload was cancelled, or server error encountered'), + 'path' => $this->file->getPath(), 'filename' => $filename . '.' . $ext ]; } - } }