2019-10-05 07:55:01 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Repos;
|
|
|
|
|
|
|
|
use BookStack\Actions\TagRepo;
|
2020-11-21 19:17:45 -05:00
|
|
|
use BookStack\Entities\Models\Entity;
|
|
|
|
use BookStack\Entities\Models\HasCoverImage;
|
2019-10-05 07:55:01 -04:00
|
|
|
use BookStack\Exceptions\ImageUploadException;
|
|
|
|
use BookStack\Uploads\ImageRepo;
|
|
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
|
|
|
|
class BaseRepo
|
|
|
|
{
|
2022-04-04 12:24:05 -04:00
|
|
|
protected TagRepo $tagRepo;
|
|
|
|
protected ImageRepo $imageRepo;
|
2019-10-05 07:55:01 -04:00
|
|
|
|
|
|
|
public function __construct(TagRepo $tagRepo, ImageRepo $imageRepo)
|
|
|
|
{
|
|
|
|
$this->tagRepo = $tagRepo;
|
|
|
|
$this->imageRepo = $imageRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Create a new entity in the system.
|
2019-10-05 07:55:01 -04:00
|
|
|
*/
|
|
|
|
public function create(Entity $entity, array $input)
|
|
|
|
{
|
|
|
|
$entity->fill($input);
|
|
|
|
$entity->forceFill([
|
|
|
|
'created_by' => user()->id,
|
|
|
|
'updated_by' => user()->id,
|
2021-06-26 11:23:15 -04:00
|
|
|
'owned_by' => user()->id,
|
2019-10-05 07:55:01 -04:00
|
|
|
]);
|
|
|
|
$entity->refreshSlug();
|
|
|
|
$entity->save();
|
|
|
|
|
|
|
|
if (isset($input['tags'])) {
|
|
|
|
$this->tagRepo->saveTagsToEntity($entity, $input['tags']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$entity->rebuildPermissions();
|
|
|
|
$entity->indexForSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the given entity.
|
|
|
|
*/
|
|
|
|
public function update(Entity $entity, array $input)
|
|
|
|
{
|
|
|
|
$entity->fill($input);
|
|
|
|
$entity->updated_by = user()->id;
|
|
|
|
|
|
|
|
if ($entity->isDirty('name')) {
|
|
|
|
$entity->refreshSlug();
|
|
|
|
}
|
|
|
|
|
|
|
|
$entity->save();
|
|
|
|
|
|
|
|
if (isset($input['tags'])) {
|
|
|
|
$this->tagRepo->saveTagsToEntity($entity, $input['tags']);
|
2022-04-04 12:24:05 -04:00
|
|
|
$entity->touch();
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$entity->rebuildPermissions();
|
|
|
|
$entity->indexForSearch();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the given items' cover image, or clear it.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-11-20 09:03:56 -05:00
|
|
|
* @param Entity&HasCoverImage $entity
|
|
|
|
*
|
2019-10-05 07:55:01 -04:00
|
|
|
* @throws ImageUploadException
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2021-11-20 09:03:56 -05:00
|
|
|
public function updateCoverImage($entity, ?UploadedFile $coverImage, bool $removeImage = false)
|
2019-10-05 07:55:01 -04:00
|
|
|
{
|
|
|
|
if ($coverImage) {
|
|
|
|
$this->imageRepo->destroyImage($entity->cover);
|
|
|
|
$image = $this->imageRepo->saveNew($coverImage, 'cover_book', $entity->id, 512, 512, true);
|
|
|
|
$entity->cover()->associate($image);
|
2019-10-22 05:18:08 -04:00
|
|
|
$entity->save();
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($removeImage) {
|
|
|
|
$this->imageRepo->destroyImage($entity->cover);
|
|
|
|
$entity->image_id = 0;
|
|
|
|
$entity->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|