From 4bac0804184f7a11eb76b420a2325ce170e24985 Mon Sep 17 00:00:00 2001 From: Eole Date: Sun, 8 May 2016 20:52:31 +0200 Subject: [PATCH] Debut Upload --- client/partials/image/edit.html | 2 +- server/core/Image.php | 25 ++++++++++++++++++++++--- 2 files changed, 23 insertions(+), 4 deletions(-) mode change 100644 => 100755 client/partials/image/edit.html diff --git a/client/partials/image/edit.html b/client/partials/image/edit.html old mode 100644 new mode 100755 index 734da7f..8c1575c --- a/client/partials/image/edit.html +++ b/client/partials/image/edit.html @@ -34,7 +34,7 @@ -
+ diff --git a/server/core/Image.php b/server/core/Image.php index 60f6d98..ac967d5 100755 --- a/server/core/Image.php +++ b/server/core/Image.php @@ -388,9 +388,28 @@ class image implements Core{ */ private function uploadImage(){ $id = $this->app->getPostParam("id"); - $file_name = $this->app->getPostParam("file_name"); $file = $this->app->getPostParam("file"); - error_log(print_r($file, true), 0); + $file_name = $_FILES['file']['name']; + $file_error = $_FILES['file']['error']; + $file_tmp = $_FILES['file']['tmp_name']; + + switch($file_error){ + case UPLOAD_ERR_INI_SIZE: + $this->app->setOutput("Error", "File Size exceeds Maximum"); + return; + case UPLOAD_ERR_FORM_SIZE: + case UPLOAD_ERR_PARTIAL: + $this->app->setOutput("Error", "Incorrect id parameter"); + return; + case UPLOAD_ERR_NO_FILE: + $this->app->setOutput("Error", "File Upload incomplete"); + return; + } + if( !is_uploaded_file($file_tmp) ) + { + $this->app->setOutput("Error", "File Upload Error"); + return; + } if(!isset($id)){ $this->app->setOutput("Error", "Incorrect id parameter"); @@ -405,7 +424,7 @@ class image implements Core{ if($image == null){ // if the image don't exists -> error $this->app->setOutput("Error", "Image doesn't exist"); } - $stream = \GuzzleHttp\Psr7\stream_for($file); + $stream = \GuzzleHttp\Psr7\stream_for(fopen($file_tmp, 'r')); $image->uploadData($stream); }catch(BadResponseError $e){ $this->app->getErrorInstance()->BadResponseHandler($e);