Introduce a dedicated `uploadBackup` ability on Application, Database,
Service, and ServiceDatabase policies (admin/owner only) and call
`$this->authorize('uploadBackup', $resource)` in `UploadController::upload`
so the backup-upload endpoint goes through the same policy layer as the
rest of the authorization refactor. Adds Pest coverage for each policy
variant plus HTTP-level checks.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
141 lines
3.6 KiB
PHP
141 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Policies;
|
|
|
|
use App\Models\Application;
|
|
use App\Models\User;
|
|
use Illuminate\Auth\Access\Response;
|
|
|
|
class ApplicationPolicy
|
|
{
|
|
/**
|
|
* Determine whether the user can view any models.
|
|
*/
|
|
public function viewAny(User $user): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can view the model.
|
|
*/
|
|
public function view(User $user, Application $application): bool
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
return $teamId !== null && $user->teams->contains('id', $teamId);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can create models.
|
|
*/
|
|
public function create(User $user): bool
|
|
{
|
|
return $user->isAdmin();
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can update the model.
|
|
*/
|
|
public function update(User $user, Application $application): Response
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
if ($teamId === null) {
|
|
return Response::deny('Application team not found.');
|
|
}
|
|
|
|
if ($user->isAdminOfTeam($teamId)) {
|
|
return Response::allow();
|
|
}
|
|
|
|
return Response::deny('You need at least admin or owner permissions to update this application.');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can delete the model.
|
|
*/
|
|
public function delete(User $user, Application $application): bool
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
return $teamId !== null && $user->isAdminOfTeam($teamId);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can restore the model.
|
|
*/
|
|
public function restore(User $user, Application $application): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can permanently delete the model.
|
|
*/
|
|
public function forceDelete(User $user, Application $application): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can upload a backup archive for this application.
|
|
*/
|
|
public function uploadBackup(User $user, Application $application): Response
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
if ($teamId === null) {
|
|
return Response::deny('Application team not found.');
|
|
}
|
|
|
|
if ($user->isAdminOfTeam($teamId)) {
|
|
return Response::allow();
|
|
}
|
|
|
|
return Response::deny('You need at least admin or owner permissions to upload backups for this application.');
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can deploy the application.
|
|
*/
|
|
public function deploy(User $user, Application $application): bool
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
return $teamId !== null && $user->isAdminOfTeam($teamId);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can manage deployments.
|
|
*/
|
|
public function manageDeployments(User $user, Application $application): bool
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
return $teamId !== null && $user->isAdminOfTeam($teamId);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can manage environment variables.
|
|
*/
|
|
public function manageEnvironment(User $user, Application $application): bool
|
|
{
|
|
$teamId = $this->getTeamId($application);
|
|
|
|
return $teamId !== null && $user->isAdminOfTeam($teamId);
|
|
}
|
|
|
|
/**
|
|
* Determine whether the user can cleanup deployment queue.
|
|
*/
|
|
public function cleanupDeploymentQueue(User $user): bool
|
|
{
|
|
return $user->isAdmin();
|
|
}
|
|
|
|
private function getTeamId(Application $application): ?int
|
|
{
|
|
return $application->team()?->id;
|
|
}
|
|
}
|