| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | <?php namespace BookStack\Entities\Models; | 
					
						
							| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Uploads\Image; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							|  |  |  |     protected $table = 'bookshelves'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $searchFactor = 3; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected $fillable = ['name', 'description', 'image_id']; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-28 23:21:54 +08:00
										 |  |  |     protected $hidden = ['restricted', '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. | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->books()->visible(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  |      * @param int $width - Width of the image | 
					
						
							|  |  |  |      * @param int $height - Height of the image | 
					
						
							|  |  |  |      * @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; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $cover; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-02-03 21:45:45 +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
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return 'cover_shelf'; | 
					
						
							| 
									
										
										
										
											2018-06-24 20:38:19 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-08 01:28:11 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Check if this shelf contains the given book. | 
					
						
							|  |  |  |      * @param Book $book | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  |      * @param Book $book | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     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
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-24 20:38:19 +08:00
										 |  |  | } |