mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
31f5786e01
* Started mass-refactoring of the current entity repos * Rewrote book tree logic - Now does two simple queries instead of one really complex one. - Extracted logic into its own class. - Remove model-level akward union field listing. - Logic now more readable than being large separate query and compilation functions. * Extracted and split book sort logic * Finished up Book controller/repo organisation * Refactored bookshelves controllers and repo parts * Fixed issues found via phpunit * Refactored Chapter controller * Updated Chapter export controller * Started Page controller/repo refactor * Refactored another chunk of PageController * Completed initial pagecontroller refactor pass * Fixed tests and continued reduction of old repos * Removed old page remove and further reduced entity repo * Removed old entity repo, split out page controller * Ran phpcbf and split out some page content methods * Tidied up some EntityProvider elements * Fixed issued caused by viewservice change
119 lines
3.1 KiB
PHP
119 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Entities\Repos;
|
|
|
|
use BookStack\Actions\TagRepo;
|
|
use BookStack\Entities\Book;
|
|
use BookStack\Entities\Entity;
|
|
use BookStack\Entities\HasCoverImage;
|
|
use BookStack\Exceptions\ImageUploadException;
|
|
use BookStack\Uploads\ImageRepo;
|
|
use Illuminate\Http\UploadedFile;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class BaseRepo
|
|
{
|
|
|
|
protected $tagRepo;
|
|
protected $imageRepo;
|
|
|
|
|
|
/**
|
|
* BaseRepo constructor.
|
|
* @param $tagRepo
|
|
*/
|
|
public function __construct(TagRepo $tagRepo, ImageRepo $imageRepo)
|
|
{
|
|
$this->tagRepo = $tagRepo;
|
|
$this->imageRepo = $imageRepo;
|
|
}
|
|
|
|
/**
|
|
* Create a new entity in the system
|
|
*/
|
|
public function create(Entity $entity, array $input)
|
|
{
|
|
$entity->fill($input);
|
|
$entity->forceFill([
|
|
'created_by' => user()->id,
|
|
'updated_by' => user()->id,
|
|
]);
|
|
$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']);
|
|
}
|
|
|
|
$entity->rebuildPermissions();
|
|
$entity->indexForSearch();
|
|
}
|
|
|
|
/**
|
|
* Update the given items' cover image, or clear it.
|
|
* @throws ImageUploadException
|
|
* @throws \Exception
|
|
*/
|
|
public function updateCoverImage(HasCoverImage $entity, UploadedFile $coverImage = null, bool $removeImage = false)
|
|
{
|
|
if ($coverImage) {
|
|
$this->imageRepo->destroyImage($entity->cover);
|
|
$image = $this->imageRepo->saveNew($coverImage, 'cover_book', $entity->id, 512, 512, true);
|
|
$entity->cover()->associate($image);
|
|
}
|
|
|
|
if ($removeImage) {
|
|
$this->imageRepo->destroyImage($entity->cover);
|
|
$entity->image_id = 0;
|
|
$entity->save();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Update the permissions of an entity.
|
|
*/
|
|
public function updatePermissions(Entity $entity, bool $restricted, Collection $permissions = null)
|
|
{
|
|
$entity->restricted = $restricted;
|
|
$entity->permissions()->delete();
|
|
|
|
if (!is_null($permissions)) {
|
|
$entityPermissionData = $permissions->flatMap(function ($restrictions, $roleId) {
|
|
return collect($restrictions)->keys()->map(function ($action) use ($roleId) {
|
|
return [
|
|
'role_id' => $roleId,
|
|
'action' => strtolower($action),
|
|
] ;
|
|
});
|
|
});
|
|
|
|
$entity->permissions()->createMany($entityPermissionData);
|
|
}
|
|
|
|
$entity->save();
|
|
$entity->rebuildPermissions();
|
|
}
|
|
}
|