2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Forms\Form;
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
|
|
|
|
class ImpersonationController extends Controller
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
2024-01-19 13:27:04 +00:00
|
|
|
$this->middleware('moderator');
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function impersonate($identifier) {
|
|
|
|
$user = null;
|
|
|
|
if (is_numeric($identifier)) {
|
|
|
|
$user = User::find($identifier);
|
|
|
|
} elseif (filter_var($identifier, FILTER_VALIDATE_EMAIL)) {
|
|
|
|
$user = User::whereEmail($identifier)->first();
|
|
|
|
} else {
|
|
|
|
// Find by form slug
|
|
|
|
$form = Form::whereSlug($identifier)->first();
|
|
|
|
if ($form) {
|
|
|
|
$user = $form->creator;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-19 13:27:04 +00:00
|
|
|
if (!$user) {
|
|
|
|
return $this->error([
|
|
|
|
'message'=> 'User not found.'
|
|
|
|
]);
|
|
|
|
} else if ($user->admin) {
|
|
|
|
return $this->error([
|
|
|
|
'message' => 'You cannot impersonate an admin.',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
\Log::warning('Impersonation started',[
|
|
|
|
'from_id' => auth()->id(),
|
|
|
|
'from_email' => auth()->user()->email,
|
|
|
|
'target_id' => $user->id,
|
|
|
|
'target_email' => $user->id,
|
2022-09-20 19:59:52 +00:00
|
|
|
]);
|
|
|
|
|
2024-01-24 16:45:29 +00:00
|
|
|
$token = auth()->claims(auth()->user()->admin ? [] : [
|
|
|
|
'impersonating' => true,
|
|
|
|
'impersonator_id' => auth()->id(),
|
|
|
|
])->login($user);
|
|
|
|
|
2022-09-20 19:59:52 +00:00
|
|
|
return $this->success([
|
|
|
|
'token' => $token
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|