use BookStack\Role;
use BookStack\User;
use Exception;
+use BookStack\Services\ImageService;
class UserRepo
{
protected $user;
protected $role;
protected $entityRepo;
+ protected $imageService;
/**
* UserRepo constructor.
* @param Role $role
* @param EntityRepo $entityRepo
*/
- public function __construct(User $user, Role $role, EntityRepo $entityRepo)
+ public function __construct(User $user, Role $role, EntityRepo $entityRepo, ImageService $imageService)
{
$this->user = $user;
$this->role = $role;
$this->entityRepo = $entityRepo;
+ $this->imageService = $imageService;
}
/**
{
$user->socialAccounts()->delete();
$user->delete();
+
+ // Deleting User profile pics
+ $profilePic = $user->image_id ? $user->avatar->findOrFail($user->image_id) : FALSE;
+ if ($profilePic) {
+ $this->imageService->destroyImage($profilePic);
+ }
}
/**