]> git.mxchange.org Git - friendica-addons.git/blobdiff - js_upload/js_upload.php
Fix wrong intends in js_upload
[friendica-addons.git] / js_upload / js_upload.php
index 705d47d98feadedbb0f7ff8409d73c486c1aa5de..83fb275a2a21b12257a16acbe03ea52977377549 100644 (file)
  * Module Author: Chris Case
  *
  */
-use Friendica\Core\Addon;
+
 use Friendica\Core\Config;
+use Friendica\Core\Hook;
 use Friendica\Core\L10n;
 use Friendica\Core\Logger;
 
 function js_upload_install() {
-       Addon::registerHook('photo_upload_form', 'addon/js_upload/js_upload.php', 'js_upload_form');
-       Addon::registerHook('photo_post_init',   'addon/js_upload/js_upload.php', 'js_upload_post_init');
-       Addon::registerHook('photo_post_file',   'addon/js_upload/js_upload.php', 'js_upload_post_file');
-       Addon::registerHook('photo_post_end',    'addon/js_upload/js_upload.php', 'js_upload_post_end');
+       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');
 }
 
 
 function js_upload_uninstall() {
-       Addon::unregisterHook('photo_upload_form', 'addon/js_upload/js_upload.php', 'js_upload_form');
-       Addon::unregisterHook('photo_post_init',   'addon/js_upload/js_upload.php', 'js_upload_post_init');
-       Addon::unregisterHook('photo_post_file',   'addon/js_upload/js_upload.php', 'js_upload_post_file');
-       Addon::unregisterHook('photo_post_end',    'addon/js_upload/js_upload.php', 'js_upload_post_end');
+       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');
 }
 
 
@@ -61,38 +62,38 @@ function js_upload_form(&$a,&$b) {
 <script type="text/javascript">
 var uploader = null;
 function getSelected(opt) {
-            var selected = new Array();
-            var index = 0;
-            for (var intLoop = 0; intLoop < opt.length; intLoop++) {
-               if ((opt[intLoop].selected) ||
-                   (opt[intLoop].checked)) {
-                  index = selected.length;
-                  //selected[index] = new Object;
-                  selected[index] = opt[intLoop].value;
-                  //selected[index] = intLoop;
-               }
-            }
-            return selected;
-         }
+                       var selected = new Array();
+                       var index = 0;
+                       for (var intLoop = 0; intLoop < opt.length; intLoop++) {
+                               if ((opt[intLoop].selected) ||
+                                       (opt[intLoop].checked)) {
+                                       index = selected.length;
+                                       //selected[index] = new Object;
+                                       selected[index] = opt[intLoop].value;
+                                       //selected[index] = intLoop;
+                               }
+                       }
+                       return selected;
+                }
 function createUploader() {
        uploader = new qq.FileUploader({
                element: document.getElementById('file-uploader-demo1'),
                action: '{$b['post_url']}',
 
-        template: '<div class="qq-uploader">' +
-                '<div class="qq-upload-drop-area"><span>$drop_msg</span></div>' +
-                '<div class="qq-upload-button">$upload_msg</div>' +
-                '<ul class="qq-upload-list"></ul>' +
-             '</div>',
-
-        // template for one item in file list
-        fileTemplate: '<li>' +
-                '<span class="qq-upload-file"></span>' +
-                '<span class="qq-upload-spinner"></span>' +
-                '<span class="qq-upload-size"></span>' +
-                '<a class="qq-upload-cancel" href="#">$cancel</a>' +
-                '<span class="qq-upload-failed-text">$failed</span>' +
-            '</li>',
+               template: '<div class="qq-uploader">' +
+                               '<div class="qq-upload-drop-area"><span>$drop_msg</span></div>' +
+                               '<div class="qq-upload-button">$upload_msg</div>' +
+                               '<ul class="qq-upload-list"></ul>' +
+                        '</div>',
+
+               // template for one item in file list
+               fileTemplate: '<li>' +
+                               '<span class="qq-upload-file"></span>' +
+                               '<span class="qq-upload-spinner"></span>' +
+                               '<span class="qq-upload-size"></span>' +
+                               '<a class="qq-upload-cancel" href="#">$cancel</a>' +
+                               '<span class="qq-upload-failed-text">$failed</span>' +
+                       '</li>',
 
                debug: true,
                sizeLimit: $maximagesize,
@@ -173,9 +174,9 @@ function js_upload_post_file(&$a,&$b) {
 
        $result = $a->data['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']);
 
 }
 
@@ -198,46 +199,46 @@ class qqUploadedFileXhr {
 
        private $pathnm = '';
 
-    /**
-     * Save the file in the temp dir.
-     * @return boolean TRUE on success
-     */
-    function save() {
-        $input = fopen("php://input", "r");
+       /**
+        * Save the file in the temp dir.
+        * @return boolean TRUE on success
+        */
+       function save() {
+               $input = fopen("php://input", "r");
 
                $upload_dir = 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");
-        $realSize = stream_copy_to_stream($input, $temp);
+               $realSize = stream_copy_to_stream($input, $temp);
 
-        fclose($input);
+               fclose($input);
                fclose($temp);
 
-        if ($realSize != $this->getSize()){
-            return false;
-        }
-        return true;
-    }
+               if ($realSize != $this->getSize()) {
+                       return false;
+               }
+               return true;
+       }
 
        function getPath() {
                return $this->pathnm;
        }
 
-    function getName() {
-        return $_GET['qqfile'];
-    }
-
-    function getSize() {
-        if (isset($_SERVER["CONTENT_LENGTH"])){
-            return (int)$_SERVER["CONTENT_LENGTH"];
-        } else {
-            throw new Exception('Getting content length is not supported.');
-        }
-    }
+       function getName() {
+               return $_GET['qqfile'];
+       }
+
+       function getSize() {
+               if (isset($_SERVER["CONTENT_LENGTH"])){
+                       return (int)$_SERVER["CONTENT_LENGTH"];
+               } else {
+                       throw new Exception('Getting content length is not supported.');
+               }
+       }
 }
 
 /**
@@ -247,80 +248,80 @@ class qqUploadedFileXhr {
 class qqUploadedFileForm {
 
 
-    /**
-     * Save the file to the specified path
-     * @return boolean TRUE on success
-     */
+       /**
+        * Save the file to the specified path
+        * @return boolean TRUE on success
+        */
 
 
-    function save() {
-        return true;
-    }
+       function save() {
+               return true;
+       }
 
        function getPath() {
                return $_FILES['qqfile']['tmp_name'];
        }
 
-    function getName() {
-        return $_FILES['qqfile']['name'];
-    }
-    function getSize() {
-        return $_FILES['qqfile']['size'];
-    }
+       function getName() {
+               return $_FILES['qqfile']['name'];
+       }
+       function getSize() {
+               return $_FILES['qqfile']['size'];
+       }
 }
 
 class qqFileUploader {
-    private $allowedExtensions = [];
-    private $sizeLimit = 10485760;
-    private $file;
-
-    function __construct(array $allowedExtensions = [], $sizeLimit = 10485760){
-        $allowedExtensions = array_map("strtolower", $allowedExtensions);
-
-        $this->allowedExtensions = $allowedExtensions;
-        $this->sizeLimit = $sizeLimit;
-
-        if (isset($_GET['qqfile'])) {
-            $this->file = new qqUploadedFileXhr();
-        } elseif (isset($_FILES['qqfile'])) {
-            $this->file = new qqUploadedFileForm();
-        } else {
-            $this->file = false;
-        }
+       private $allowedExtensions = [];
+       private $sizeLimit = 10485760;
+       private $file;
+
+       function __construct(array $allowedExtensions = [], $sizeLimit = 10485760){
+               $allowedExtensions = array_map("strtolower", $allowedExtensions);
+
+               $this->allowedExtensions = $allowedExtensions;
+               $this->sizeLimit = $sizeLimit;
+
+               if (isset($_GET['qqfile'])) {
+                       $this->file = new qqUploadedFileXhr();
+               } elseif (isset($_FILES['qqfile'])) {
+                       $this->file = new qqUploadedFileForm();
+               } else {
+                       $this->file = false;
+               }
 
-    }
+       }
 
 
-    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;
-        }
-        return $val;
-    }
+       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;
+               }
+               return $val;
+       }
 
-    /**
-     * Returns array('success'=>true) or array('error'=>'error message')
-     */
-    function handleUpload(){
+       /**
+        * Returns array('success'=>true) or array('error'=>'error message')
+        */
+       function handleUpload(){
 
-        if (!$this->file){
-            return ['error' => L10n::t('No files were uploaded.')];
-        }
+               if (!$this->file) {
+                       return ['error' => L10n::t('No files were uploaded.')];
+               }
 
-        $size = $this->file->getSize();
+               $size = $this->file->getSize();
 
-        if ($size == 0) {
-            return ['error' => L10n::t('Uploaded file is empty')];
-        }
+               if ($size == 0) {
+                       return ['error' => L10n::t('Uploaded file is empty')];
+               }
 
-//        if ($size > $this->sizeLimit) {
+//             if ($size > $this->sizeLimit) {
 
-//            return array('error' => L10n::t('Uploaded file is too large'));
-//        }
+//                     return array('error' => L10n::t('Uploaded file is too large'));
+//             }
 
 
                $maximagesize = Config::get('system','maximagesize');
@@ -330,29 +331,32 @@ class qqFileUploader {
 
                }
 
-        $pathinfo = pathinfo($this->file->getName());
-        $filename = $pathinfo['filename'];
+               $pathinfo = pathinfo($this->file->getName());
+               $filename = $pathinfo['filename'];
 
-        $ext = $pathinfo['extension'];
+               if (!isset($pathinfo['extension'])) {
+                       Logger::warning('extension isn\'t set.', ['filename' => $filename]);
+               }
+               $ext = defaults($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)){
+                       $these = implode(', ', $this->allowedExtensions);
+                       return ['error' => L10n::t('File has an invalid extension, it should be one of ') . $these . '.'];
+               }
 
-        if ($this->file->save()){
-            return [
-                               'success'=>true,
-                               'path' => $this->file->getPath(),
+               if ($this->file->save()){
+                       return [
+                               '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(),
+               } else {
+                       return [
+                               'error'    => L10n::t('Upload was cancelled, or server error encountered'),
+                               'path'     => $this->file->getPath(),
                                'filename' => $filename . '.' . $ext
                        ];
-        }
+               }
 
-    }
+       }
 }