CKFinder Authentication issue with laravel 5

3.8k views Asked by At

I'm using Laravel 5. I have folder that references ckfinder in /public/plugins/ckfinder directory.

CheckAuthentication function in config.php is I need to use but session value and Auth Class is null.

I have tried

function CheckAuthentication(){
    return Auth::check();
}

or

 //Ckfinder Config.php
function CheckAuthentication(){
        if($_SESSION['ckfinder_enabled'] == 'enabled') {
            return true;
        } else {
            return false;
        }
    }

 

        //App\Http\Middleware\Authenticate.php
    public function handle($request, Closure $next)
            {
                if ($this->auth->guest()){
                        if ($request->ajax()){
                            return response('Unauthorized.', 401);
                        }else{
                            return redirect()->guest('auth/login');
                        }
                    }

                if($this->auth->check()) {
                     $_SESSION['ckfinder_enabled'] = 'enabled';
                    return $next($request);
                }
            }
3

There are 3 answers

0
Ecehan Ece On BEST ANSWER

I had the same issue too. Your code is useful for laravel 4.2 but for laravel 5 you need to do this in ckfinder folder's config.php:

require _DIR_.'/../../../bootstrap/autoload.php';
$app = require_once _DIR_.'/../../../bootstrap/app.php';

$app->make('Illuminate\Contracts\Http\Kernel')
  ->handle(Illuminate\Http\Request::capture());

Then you are ready to go with this code:

function CheckAuthentication(){
    return Auth::check();
}

This should work.

2
Alan Martin Revillagigedo Tula On

Laravel 5.7+:

require  $_SERVER['DOCUMENT_ROOT'] . '/../vendor/autoload.php';
$app = require_once  $_SERVER['DOCUMENT_ROOT']. '/../bootstrap/app.php';
$response = $app->make('Illuminate\Contracts\Http\Kernel')->handle(Illuminate\Http\Request::capture());
$cookie = $_COOKIE[$app['config']['session']['cookie']] ?? false;
if ($cookie) {
    $id = $app['encrypter']->decrypt($cookie, false);
    $session = $app['session']->driver();
    $session->setId($id);
    $session->start();
}

if (!$app['auth']->check()){
    header('HTTP/1.0 403 Forbidden'); exit();
}
0
Alexander Shatalov On

CKFinder 3 for PHP

Laravel v7.30.4

works for me

use Illuminate\Support\Facades\Auth;

$config['authentication'] = function () {
  require $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php';
  $app = require_once  $_SERVER['DOCUMENT_ROOT']. '/bootstrap/app.php';
  $request = Illuminate\Http\Request::capture();
  $request->setMethod('GET');
  $app->make('Illuminate\Contracts\Http\Kernel')->handle($request);
  if (Auth::check() && Auth::user()->is_admin ) {
    return true;
  } else {
    header('HTTP/1.0 403 Forbidden');
    exit();
  }
};