File tree 2 files changed +35
-1
lines changed
2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Backpack \FileManager ;
4
+
5
+ use Illuminate \Support \Facades \Crypt ;
6
+ use Illuminate \Support \Facades \Log ;
7
+
8
+ class BackpackElfinderController extends \Barryvdh \Elfinder \ElfinderController
9
+ {
10
+ public function showPopup ($ input_id )
11
+ {
12
+ $ mimes = request ('mimes ' );
13
+
14
+ try {
15
+ $ mimes = Crypt::decrypt (urldecode (request ('mimes ' )));
16
+ } catch (\Illuminate \Contracts \Encryption \DecryptException $ e ) {
17
+ Log::error ('Someone attempted to tamper with mime types in elfinder popup. The attempt was blocked. ' );
18
+ abort (403 , 'Unauthorized action. ' );
19
+ }
20
+
21
+ request ()->merge (['mimes ' => urlencode (serialize ($ mimes ))]);
22
+
23
+ return $ this ->app ['view ' ]
24
+ ->make ($ this ->package .'::standalonepopup ' )
25
+ ->with ($ this ->getViewVars ())
26
+ ->with (compact ('input_id ' ));
27
+ }
28
+ }
Original file line number Diff line number Diff line change 3
3
namespace Backpack \FileManager ;
4
4
5
5
use Backpack \Basset \Facades \Basset ;
6
+ use Barryvdh \Elfinder \ElfinderController ;
6
7
use Illuminate \Support \Facades \Config ;
7
8
use Illuminate \Support \ServiceProvider ;
8
9
9
10
class FileManagerServiceProvider extends ServiceProvider
10
11
{
11
12
protected $ commands = [
12
- \ Backpack \ FileManager \ Console \Commands \Install::class,
13
+ Console \Commands \Install::class,
13
14
];
14
15
15
16
/**
@@ -25,6 +26,11 @@ public function boot()
25
26
}
26
27
}
27
28
29
+ public function register ()
30
+ {
31
+ $ this ->app ->bind (ElfinderController::class, BackpackElfinderController::class);
32
+ }
33
+
28
34
/**
29
35
* Console-specific booting.
30
36
*
You can’t perform that action at this time.
0 commit comments