2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Models;
|
2018-09-25 07:30:50 -04:00
|
|
|
|
|
|
|
use BookStack\Uploads\Image;
|
2023-09-30 07:09:29 -04:00
|
|
|
use Exception;
|
2021-10-30 16:29:59 -04:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2019-10-05 07:55:01 -04:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
2018-06-24 08:38:19 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
class Bookshelf extends Entity implements HasCoverImage
|
2018-06-24 08:38:19 -04:00
|
|
|
{
|
2021-10-30 16:29:59 -04:00
|
|
|
use HasFactory;
|
2023-12-17 10:02:15 -05:00
|
|
|
use HasHtmlDescription;
|
2021-10-30 16:29:59 -04:00
|
|
|
|
2018-06-24 08:38:19 -04:00
|
|
|
protected $table = 'bookshelves';
|
|
|
|
|
2023-12-18 11:23:40 -05:00
|
|
|
public float $searchFactor = 1.2;
|
2018-06-24 08:38:19 -04:00
|
|
|
|
|
|
|
protected $fillable = ['name', 'description', 'image_id'];
|
|
|
|
|
2022-10-10 11:58:26 -04:00
|
|
|
protected $hidden = ['image_id', 'deleted_at'];
|
2020-04-10 10:19:18 -04:00
|
|
|
|
2018-08-27 09:18:09 -04:00
|
|
|
/**
|
|
|
|
* Get the books in this shelf.
|
2018-09-16 14:34:09 -04:00
|
|
|
* Should not be used directly since does not take into account permissions.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2018-08-27 09:18:09 -04:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
|
|
|
public function books()
|
|
|
|
{
|
2019-04-15 15:43:25 -04:00
|
|
|
return $this->belongsToMany(Book::class, 'bookshelves_books', 'bookshelf_id', 'book_id')
|
|
|
|
->withPivot('order')
|
|
|
|
->orderBy('order', 'asc');
|
2018-08-27 09:18:09 -04:00
|
|
|
}
|
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
/**
|
|
|
|
* Related books that are visible to the current user.
|
|
|
|
*/
|
|
|
|
public function visibleBooks(): BelongsToMany
|
|
|
|
{
|
2021-11-22 18:33:55 -05:00
|
|
|
return $this->books()->scopes('visible');
|
2019-10-05 07:55:01 -04:00
|
|
|
}
|
|
|
|
|
2018-06-24 08:38:19 -04:00
|
|
|
/**
|
|
|
|
* Get the url for this bookshelf.
|
|
|
|
*/
|
2020-11-21 20:20:38 -05:00
|
|
|
public function getUrl(string $path = ''): string
|
2018-06-24 08:38:19 -04:00
|
|
|
{
|
2020-11-21 20:20:38 -05:00
|
|
|
return url('/shelves/' . implode('/', [urlencode($this->slug), trim($path, '/')]));
|
2018-06-24 08:38:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-09-30 07:09:29 -04:00
|
|
|
* Returns shelf cover image, if cover not exists return default cover image.
|
2018-06-24 08:38:19 -04:00
|
|
|
*/
|
2023-09-30 07:09:29 -04:00
|
|
|
public function getBookCover(int $width = 440, int $height = 250): string
|
2018-06-24 08:38:19 -04:00
|
|
|
{
|
2019-02-03 08:45:45 -05:00
|
|
|
// TODO - Make generic, focused on books right now, Perhaps set-up a better image
|
2019-02-16 12:13:01 -05:00
|
|
|
$default = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==';
|
2023-09-30 07:09:29 -04:00
|
|
|
if (!$this->image_id || !$this->cover) {
|
2018-06-24 08:38:19 -04:00
|
|
|
return $default;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2023-09-30 07:09:29 -04:00
|
|
|
return $this->cover->getThumb($width, $height, false) ?? $default;
|
|
|
|
} catch (Exception $err) {
|
|
|
|
return $default;
|
2018-06-24 08:38:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Get the cover image of the shelf.
|
2018-06-24 08:38:19 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function cover(): BelongsTo
|
2018-06-24 08:38:19 -04:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Image::class, 'image_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-10-05 07:55:01 -04:00
|
|
|
* Get the type of the image model that is used when storing a cover image.
|
2018-06-24 08:38:19 -04:00
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function coverImageTypeKey(): string
|
2018-06-24 08:38:19 -04:00
|
|
|
{
|
2022-09-02 07:54:54 -04:00
|
|
|
return 'cover_bookshelf';
|
2018-06-24 08:38:19 -04:00
|
|
|
}
|
|
|
|
|
2019-04-07 13:28:11 -04:00
|
|
|
/**
|
|
|
|
* Check if this shelf contains the given book.
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function contains(Book $book): bool
|
2019-04-07 13:28:11 -04:00
|
|
|
{
|
|
|
|
return $this->books()->where('id', '=', $book->id)->count() > 0;
|
|
|
|
}
|
2019-09-19 13:20:09 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a book to the end of this shelf.
|
|
|
|
*/
|
|
|
|
public function appendBook(Book $book)
|
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
if ($this->contains($book)) {
|
|
|
|
return;
|
|
|
|
}
|
2019-09-19 13:20:09 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
$maxOrder = $this->books()->max('order');
|
|
|
|
$this->books()->attach($book->id, ['order' => $maxOrder + 1]);
|
2019-09-19 13:20:09 -04:00
|
|
|
}
|
2022-10-09 11:36:03 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a visible shelf by its slug.
|
|
|
|
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
|
|
|
|
*/
|
|
|
|
public static function getBySlug(string $slug): self
|
|
|
|
{
|
|
|
|
return static::visible()->where('slug', '=', $slug)->firstOrFail();
|
|
|
|
}
|
2018-06-24 08:38:19 -04:00
|
|
|
}
|