2014-01-07 68 views
5

我的目標是管理最大上傳文件異常,並顯示客戶端友好的消息,但我不知道哪裏是最好的地方來控制這一點。這是我的控制器方法:處理Laravel 4上傳大文件異常

public function upload_file() 
    { 
     if (!Input::hasFile('file')) 
      return; 

     $utils = App::make('utils'); 
     $file = Input::file('file'); 

     $name = Input::get('name'); 
     $size = $file->getSize(); 

     if ($size > FileModel::$max_file_size) 
      return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %smb.',FileModel::$max_file_size/1000000))); 

     $original_file_name = $file->getClientOriginalName(); 

     $destination_directory = ""; 

     $final_file_name = $utils->copy_file_to_location($file); 

     return json_encode(array('success'=>true, 'file'=>$original_file_name)); 
    } 

這是utils的copy_file_to_location方法:

public function copy_file_to_location($file, $destination_directory = "") 
    { 
     if (!isset($file)) 
      return; 
     $file_name = time()."_".$file->getClientOriginalName(); 

     $file->move(app_path().'/storage/files/'.$destination_directory, $file_name); 
     return $file_name; 
    } 

我不knwo哪裏處理上載有擦菜板大小不是文件時所引發的異常服務器最大上傳文件大小變量。我應該在哪裏以及如何處理這些信息以顯示用戶友好的消息,並且不要鎖定用戶界面。順便說一句,我在客戶端使用ExtJs 4。謝謝。


編輯


我發現了一個相關的question,幫助了很多(這是同樣的問題),但我需要知道在哪裏,裏面Laravel,我應該檢查這一點。

回答

9

有兩種情況:文件大小大於php變量upload_max_filesize,第二種情況是當它比post_max_size變量更大時。在第一個例外中,引發了一個例外,這是一個簡單的方法。在第二種情況下,並沒有例外,我使用this問題來解決它。

現在,在這裏檢查此代碼:在Laravel控制器中使用aciton方法。我認爲控制器行爲中的代碼從未被執行過,但我錯了。所以最後這是一個解決這個問題的方法:

public function upload_file() 
    { 
     $file_max = ini_get('upload_max_filesize'); 
     $file_max_str_leng = strlen($file_max); 
     $file_max_meassure_unit = substr($file_max,$file_max_str_leng - 1,1); 
     $file_max_meassure_unit = $file_max_meassure_unit == 'K' ? 'kb' : ($file_max_meassure_unit == 'M' ? 'mb' : ($file_max_meassure_unit == 'G' ? 'gb' : 'unidades')); 
     $file_max = substr($file_max,0,$file_max_str_leng - 1); 
     $file_max = intval($file_max); 

     //handle second case 
     if((empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) == 'post')) 
     { //catch file overload error... 
      //grab the size limits... 
      return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %s%s.',$file_max,$file_max_meassure_unit))); 
     } 

     try{ 

      if (!Input::hasFile('file')) 
       return; 

      $utils = App::make('utils'); 
      $file = Input::file('file'); 

      $name = Input::get('name'); 
      $size = $file->getSize(); 

      if ($size > $file_max) 
       return json_encode(array('success'=>false, 'message'=>sprintf('El tamaño del archivo debe ser menor que %smb.',$file_max))); 

      $original_file_name = $file->getClientOriginalName(); 

      $destination_directory = ""; 

      $final_file_name = $utils->copy_file_to_location($file);  

      return json_encode(array('success'=>true, 'file'=>$original_file_name)); 
     } 
     catch (Exception $e) 
     { 
      //handle first case 
      return json_encode(array('success'=>false, 'message'=>sprintf('The file size should be lower than %s%s.',$file_max,$file_max_meassure_unit))); 
     } 
    } 
1

您在相關問題中看到的設置「upload_max_filesize」和「post_max_size」未由Laravel處理,它是位於PHP安裝中的php.ini配置文件的一部分。

1

舊帖子,但仍然是一個相關的問題。 使用\照亮\基金會\ HTTP \中間件\ VerifyPostSize中間件 和處理錯誤內Handler.php渲染()方法 檢查中間件文檔https://laravel.com/docs/5.5/middleware#registering-middleware

這是我的內Handler.php方法:

public function render($request, \Exception $exception) 
     { 
     //thats the json your client will recieve as a response, can be anything you need 
      $response = [ 
       'code' => 500, 
       'status' => 'error', 
       'message' => 'Internal server error.', 
       'exception' => get_class($exception), 
       'exception_message' => $exception->getMessage(), 
       'url' => $request->decodedPath(), 
       'method' => $request->method(), 
      ]; 

      if (env('APP_ENV') === 'local') { 
       $response['trace'] = $exception->getTrace(); 
      } 

      if ($exception instanceof PostTooLargeException) { 
       $response['code'] = 413; //Payload too large 
       $response['message'] = $response['message'] .' The maximum request size is: ' .ini_get('post_max_size'); 
      } 

      return response()->json($response, $response['code']); 
     }