mirror of
https://github.com/snipe/snipe-it.git
synced 2026-08-18 11:15:42 +00:00
67 lines
1.6 KiB
PHP
67 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Livewire\Component;
|
|
|
|
class PersonalAccessTokens extends Component
|
|
{
|
|
public $name;
|
|
|
|
public $newTokenString;
|
|
|
|
protected $listeners = ['openModal' => 'autoFocusModalEvent'];
|
|
|
|
/**
|
|
* Route-level middleware on /account/api requires the self.api gate,
|
|
* but snapshot replay to POST /livewire/update bypasses that. Re-check
|
|
* the same gate here so a user without self.api cannot mint a PAT by
|
|
* replaying a valid snapshot obtained elsewhere.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
if (! auth()->user()?->can('self.api')) {
|
|
abort(403);
|
|
}
|
|
}
|
|
|
|
// this is just an annoying thing to make the modal input autofocus
|
|
public function autoFocusModalEvent(): void
|
|
{
|
|
$this->dispatch('autoFocusModal');
|
|
}
|
|
|
|
public function render()
|
|
{
|
|
return view('livewire.personal-access-tokens', [
|
|
'tokens' => auth()->user()->tokens,
|
|
]);
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required|string|max:255',
|
|
];
|
|
}
|
|
|
|
public function createToken(): void
|
|
{
|
|
$this->validate();
|
|
|
|
$newToken = auth()->user()->createToken($this->name);
|
|
|
|
$this->newTokenString = $newToken->accessToken;
|
|
|
|
$this->dispatch('tokenCreated', token: $newToken->accessToken);
|
|
}
|
|
|
|
public function deleteToken($tokenId): void
|
|
{
|
|
// this needs safety (though the scope of auth::user might kind of do it...)
|
|
// seems like it does, test more
|
|
auth()->user()->tokens()->find($tokenId)?->delete();
|
|
}
|
|
}
|