-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CSRF check to the Delete all files link in Manage App Logs
- Loading branch information
1 parent
a96b31f
commit 275454d
Showing
3 changed files
with
157 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
155 changes: 155 additions & 0 deletions
155
...s/rap2hpoutre/laravel-log-viewer/src/Rap2hpoutre/LaravelLogViewer/LogViewerController.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
<?php | ||
|
||
namespace Rap2hpoutre\LaravelLogViewer; | ||
|
||
use Illuminate\Support\Facades\Crypt; | ||
|
||
if (class_exists("\\Illuminate\\Routing\\Controller")) { | ||
class BaseController extends \Illuminate\Routing\Controller {} | ||
} elseif (class_exists("Laravel\\Lumen\\Routing\\Controller")) { | ||
class BaseController extends \Laravel\Lumen\Routing\Controller {} | ||
} | ||
|
||
/** | ||
* Class LogViewerController | ||
* @package Rap2hpoutre\LaravelLogViewer | ||
*/ | ||
class LogViewerController extends BaseController | ||
{ | ||
/** | ||
* @var \Illuminate\Http\Request | ||
*/ | ||
protected $request; | ||
|
||
/** | ||
* @var LaravelLogViewer | ||
*/ | ||
private $log_viewer; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
protected $view_log = 'laravel-log-viewer::log'; | ||
|
||
/** | ||
* LogViewerController constructor. | ||
*/ | ||
public function __construct() | ||
{ | ||
$this->log_viewer = new LaravelLogViewer(); | ||
$this->request = app('request'); | ||
} | ||
|
||
/** | ||
* @return array|mixed | ||
* @throws \Exception | ||
*/ | ||
public function index() | ||
{ | ||
$folderFiles = []; | ||
if ($this->request->input('f')) { | ||
$this->log_viewer->setFolder(Crypt::decrypt($this->request->input('f'))); | ||
$folderFiles = $this->log_viewer->getFolderFiles(true); | ||
} | ||
if ($this->request->input('l')) { | ||
$this->log_viewer->setFile(Crypt::decrypt($this->request->input('l'))); | ||
} | ||
|
||
if ($early_return = $this->earlyReturn()) { | ||
return $early_return; | ||
} | ||
|
||
$data = [ | ||
'logs' => $this->log_viewer->all(), | ||
'folders' => $this->log_viewer->getFolders(), | ||
'current_folder' => $this->log_viewer->getFolderName(), | ||
'folder_files' => $folderFiles, | ||
'files' => $this->log_viewer->getFiles(true), | ||
'current_file' => $this->log_viewer->getFileName(), | ||
'standardFormat' => true, | ||
'structure' => $this->log_viewer->foldersAndFiles(), | ||
'storage_path' => $this->log_viewer->getStoragePath(), | ||
|
||
]; | ||
|
||
if ($this->request->wantsJson()) { | ||
return $data; | ||
} | ||
|
||
if (is_array($data['logs']) && count($data['logs']) > 0) { | ||
$firstLog = reset($data['logs']); | ||
if (!$firstLog['context'] && !$firstLog['level']) { | ||
$data['standardFormat'] = false; | ||
} | ||
} | ||
|
||
return app('view')->make($this->view_log, $data); | ||
} | ||
|
||
/** | ||
* @return bool|mixed | ||
* @throws \Exception | ||
*/ | ||
private function earlyReturn() | ||
{ | ||
if ($this->request->input('f')) { | ||
$this->log_viewer->setFolder(Crypt::decrypt($this->request->input('f'))); | ||
} | ||
|
||
if ($this->request->input('dl')) { | ||
return $this->download($this->pathFromInput('dl')); | ||
} elseif ($this->request->has('clean')) { | ||
app('files')->put($this->pathFromInput('clean'), ''); | ||
return $this->redirect(url()->previous()); | ||
} elseif ($this->request->has('del')) { | ||
app('files')->delete($this->pathFromInput('del')); | ||
return $this->redirect($this->request->url()); | ||
} elseif ($this->request->has('delall') && \Session::token() == $this->request->get('_token')) { | ||
$files = ($this->log_viewer->getFolderName()) | ||
? $this->log_viewer->getFolderFiles(true) | ||
: $this->log_viewer->getFiles(true); | ||
foreach ($files as $file) { | ||
app('files')->delete($this->log_viewer->pathToLogFile($file)); | ||
} | ||
return $this->redirect($this->request->url()); | ||
} | ||
return false; | ||
} | ||
|
||
/** | ||
* @param string $input_string | ||
* @return string | ||
* @throws \Exception | ||
*/ | ||
private function pathFromInput($input_string) | ||
{ | ||
return $this->log_viewer->pathToLogFile(Crypt::decrypt($this->request->input($input_string))); | ||
} | ||
|
||
/** | ||
* @param $to | ||
* @return mixed | ||
*/ | ||
private function redirect($to) | ||
{ | ||
if (function_exists('redirect')) { | ||
return redirect($to); | ||
} | ||
|
||
return app('redirect')->to($to); | ||
} | ||
|
||
/** | ||
* @param string $data | ||
* @return mixed | ||
*/ | ||
private function download($data) | ||
{ | ||
if (function_exists('response')) { | ||
return response()->download($data); | ||
} | ||
|
||
// For laravel 4.2 | ||
return app('\Illuminate\Support\Facades\Response')->download($data); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters