404labfr / 404labfr/laravel-impersonate

Using Laravel Fortify / Sanctum impersonate returns false

Offen
#183 5 Kommentare 0 Reaktionen 0 zugewiesene Personen Auf GitHub ansehen
next version
Vorherrschende Sprache
PHP
Sterne
2.3k
Forks
235
PR-Merge-Kennzahlen
Keine gemergten PRs in 30 T.

Beschreibung

Hi, I'm using Laravel 10 as a backend to a Nuxt JS front-end. I've installed the package, when I send a request to login to my endpoint's function attached, my `$impersonate` variable returns false, why aren't I being logged in?

```php
/**
* Log in as a user
*
* @return \Illuminate\Http\Response
*/
public function loginAsUser(User $user, Request $request)
{
$validator = Validator::make($request->all(), [
'id' => 'required|numeric|exists:users,id'
]);

if ($validator->fails()) {
return new ApiValidationErrorResponse($validator->messages());
}

$user = User::with('company')->find(Auth::id());

// must be on the default company
if (!isset($user->company) || (isset($user->company) && !$user->company->is_system_default)) {
return new ApiSuccessResponse(null, [
'message' => "You cannot log in as other users unless on the system default company.",
], 400);
}

// double check that this user is a super admin
if (!$user->hasRole('super_admin')) {
return new ApiSuccessResponse(null, [
'message' => "You are not allowed to log in as this user.",
], 400);
}

// get the user to login as
$newUser = User::find($request->input('id'));

$impersonate = $user->impersonate($newUser);

return new ApiSuccessResponse($impersonate, [
'newuser' => $newUser,
'newuser2' => Auth::user()
]);
}
```

Beitragsleitfaden

Für dieses Repository ist kein Beitragsleitfaden indexiert

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.