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