Description
Issue:
On page load the auth user is null and causes the auth callback to be false.
Specs:
PHP: v8.3.3
Composer:
"require": {
"php": "^8.2",
"inertiajs/inertia-laravel": "^1.0",
"laravel/framework": "^11.0",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"opcodesio/log-viewer": "^3.0",
"tightenco/ziggy": "^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"laravel/telescope": "^5.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.4",
"barryvdh/laravel-debugbar": "^3.13",
"itsgoingd/clockwork": "^5.2"
},
Problem Solving:
In Laravel 11 the providers has moved and I'm not sure if it's causing this to behave this way. Inside my AppServiceProvider
I added something like the following:
LogViewer::auth(function ($request)
{
$roles = config('log-viewer.roles');
$hasAccess = (new RolePermissionHelper)->userHasRole($request->user(), $roles);
return $hasAccess;
});
If I dump the $request->user()
on the page load it is Null
, but if I dd
the user, it shows the user with all of it's data. Also if I dump($hasAccess)
the result is false
, and if I dd($hasAccess)
the result is true
, but still comes back Unauthorized
. If I return true;
it does work (expected since it's straight logic).
I thought that maybe the api
or web
middleware was blocking it somehow, so I added the following inside of bootstrap/app.php
which is new in Laravel 11 to append/prepend (I tried both append/prepend) to the middleware:
$middleware->web(append: [
\App\Http\Middleware\HandleInertiaRequests::class,
\Illuminate\Http\Middleware\AddLinkHeadersForPreloadedAssets::class,
\Opcodes\LogViewer\Http\Middleware\AuthorizeLogViewer::class,
]);
$middleware->api(append: [
\Opcodes\LogViewer\Http\Middleware\AuthorizeLogViewer::class,
]);
This has the same result of Unauthorized
.
I also tried adding it to every other Provider I have to see if it would make a difference (it didn't).
Additional Info:
This problem did not occur for me in Laravel ^10. Unfortunately this is a private repo/company site so I can't share the full code. I also looked at this Issue 264 since it seemed similar, but it didn't quite apply in this situation.
I'm running out of ideas of things to try, so any help would be appreciated. Thank you!
Activity