2022-04-06 16:57:18 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Repos;
|
|
|
|
|
|
|
|
use BookStack\Actions\ActivityType;
|
|
|
|
use BookStack\Entities\Models\Deletion;
|
|
|
|
use BookStack\Entities\Tools\TrashCan;
|
|
|
|
use BookStack\Facades\Activity;
|
|
|
|
|
|
|
|
class DeletionRepo
|
|
|
|
{
|
|
|
|
private TrashCan $trashCan;
|
|
|
|
|
|
|
|
public function __construct(TrashCan $trashCan)
|
|
|
|
{
|
|
|
|
$this->trashCan = $trashCan;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function restore(int $id): int
|
|
|
|
{
|
|
|
|
/** @var Deletion $deletion */
|
|
|
|
$deletion = Deletion::query()->findOrFail($id);
|
|
|
|
Activity::add(ActivityType::RECYCLE_BIN_RESTORE, $deletion);
|
2022-04-20 16:58:16 -04:00
|
|
|
|
2022-04-06 16:57:18 -04:00
|
|
|
return $this->trashCan->restoreFromDeletion($deletion);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function destroy(int $id): int
|
|
|
|
{
|
|
|
|
/** @var Deletion $deletion */
|
|
|
|
$deletion = Deletion::query()->findOrFail($id);
|
|
|
|
Activity::add(ActivityType::RECYCLE_BIN_DESTROY, $deletion);
|
2022-04-20 16:58:16 -04:00
|
|
|
|
2022-04-06 16:57:18 -04:00
|
|
|
return $this->trashCan->destroyFromDeletion($deletion);
|
|
|
|
}
|
|
|
|
}
|