feat(security): add authorization checks for package updates in Livewire components
This commit is contained in:
@@ -69,8 +69,9 @@ class Patches extends Component
|
|||||||
|
|
||||||
public function updateAllPackages()
|
public function updateAllPackages()
|
||||||
{
|
{
|
||||||
|
$this->authorize('update', $this->server);
|
||||||
if (! $this->packageManager || ! $this->osId) {
|
if (! $this->packageManager || ! $this->osId) {
|
||||||
$this->dispatch('error', message: 'Run “Check for updates” first.');
|
$this->dispatch('error', message: 'Run "Check for updates" first.');
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -91,6 +92,7 @@ class Patches extends Component
|
|||||||
public function updatePackage($package)
|
public function updatePackage($package)
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
$this->authorize('update', $this->server);
|
||||||
$activity = UpdatePackage::run(server: $this->server, packageManager: $this->packageManager, osId: $this->osId, package: $package);
|
$activity = UpdatePackage::run(server: $this->server, packageManager: $this->packageManager, osId: $this->osId, package: $package);
|
||||||
$this->dispatch('activityMonitor', $activity->id, ServerPackageUpdated::class);
|
$this->dispatch('activityMonitor', $activity->id, ServerPackageUpdated::class);
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user