- Added authorization checks in the Create and Show Livewire components to ensure only authorized users can create, update, and delete PrivateKey instances. - Introduced a new PrivateKeyPolicy to define access control rules for viewing, creating, updating, and deleting PrivateKey models based on user roles and team associations. - Updated AuthServiceProvider to register the new PrivateKeyPolicy, enhancing security and access control for PrivateKey functionalities.
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Livewire\Security\PrivateKey;
 | 
						|
 | 
						|
use App\Models\PrivateKey;
 | 
						|
use App\Support\ValidationPatterns;
 | 
						|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
 | 
						|
use Livewire\Component;
 | 
						|
 | 
						|
class Show extends Component
 | 
						|
{
 | 
						|
    use AuthorizesRequests;
 | 
						|
 | 
						|
    public PrivateKey $private_key;
 | 
						|
 | 
						|
    public $public_key = 'Loading...';
 | 
						|
 | 
						|
    protected function rules(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'private_key.name' => ValidationPatterns::nameRules(),
 | 
						|
            'private_key.description' => ValidationPatterns::descriptionRules(),
 | 
						|
            'private_key.private_key' => 'required|string',
 | 
						|
            'private_key.is_git_related' => 'nullable|boolean',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    protected function messages(): array
 | 
						|
    {
 | 
						|
        return array_merge(
 | 
						|
            ValidationPatterns::combinedMessages(),
 | 
						|
            [
 | 
						|
                'private_key.name.required' => 'The Name field is required.',
 | 
						|
                'private_key.name.regex' => 'The Name may only contain letters, numbers, spaces, dashes (-), underscores (_), dots (.), slashes (/), colons (:), and parentheses ().',
 | 
						|
                'private_key.description.regex' => 'The Description contains invalid characters. Only letters, numbers, spaces, and common punctuation (- _ . : / () \' " , ! ? @ # % & + = [] {} | ~ ` *) are allowed.',
 | 
						|
                'private_key.private_key.required' => 'The Private Key field is required.',
 | 
						|
                'private_key.private_key.string' => 'The Private Key must be a valid string.',
 | 
						|
            ]
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    protected $validationAttributes = [
 | 
						|
        'private_key.name' => 'name',
 | 
						|
        'private_key.description' => 'description',
 | 
						|
        'private_key.private_key' => 'private key',
 | 
						|
    ];
 | 
						|
 | 
						|
    public function mount()
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            $this->private_key = PrivateKey::ownedByCurrentTeam(['name', 'description', 'private_key', 'is_git_related'])->whereUuid(request()->private_key_uuid)->firstOrFail();
 | 
						|
        } catch (\Throwable) {
 | 
						|
            abort(404);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function loadPublicKey()
 | 
						|
    {
 | 
						|
        $this->public_key = $this->private_key->getPublicKey();
 | 
						|
        if ($this->public_key === 'Error loading private key') {
 | 
						|
            $this->dispatch('error', 'Failed to load public key. The private key may be invalid.');
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function delete()
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            $this->authorize('delete', $this->private_key);
 | 
						|
            $this->private_key->safeDelete();
 | 
						|
            currentTeam()->privateKeys = PrivateKey::where('team_id', currentTeam()->id)->get();
 | 
						|
 | 
						|
            return redirect()->route('security.private-key.index');
 | 
						|
        } catch (\Exception $e) {
 | 
						|
            $this->dispatch('error', $e->getMessage());
 | 
						|
        } catch (\Throwable $e) {
 | 
						|
            return handleError($e, $this);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function changePrivateKey()
 | 
						|
    {
 | 
						|
        try {
 | 
						|
            $this->authorize('update', $this->private_key);
 | 
						|
            $this->private_key->updatePrivateKey([
 | 
						|
                'private_key' => formatPrivateKey($this->private_key->private_key),
 | 
						|
            ]);
 | 
						|
            refresh_server_connection($this->private_key);
 | 
						|
            $this->dispatch('success', 'Private key updated.');
 | 
						|
        } catch (\Throwable $e) {
 | 
						|
            return handleError($e, $this);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |