| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | use Illuminate\Database\Eloquent\Relations\HasMany; | 
					
						
							|  |  |  | use Illuminate\Support\Collection; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-20 01:03:17 +08:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |  * Class Book. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-09-19 04:21:44 +08:00
										 |  |  |  * @property string                                   $description | 
					
						
							|  |  |  |  * @property int                                      $image_id | 
					
						
							|  |  |  |  * @property Image|null                               $cover | 
					
						
							| 
									
										
										
										
											2021-09-14 05:54:21 +08:00
										 |  |  |  * @property \Illuminate\Database\Eloquent\Collection $chapters | 
					
						
							|  |  |  |  * @property \Illuminate\Database\Eloquent\Collection $pages | 
					
						
							|  |  |  |  * @property \Illuminate\Database\Eloquent\Collection $directPages | 
					
						
							| 
									
										
										
										
											2022-09-28 21:14:51 +08:00
										 |  |  |  * @property \Illuminate\Database\Eloquent\Collection $shelves | 
					
						
							| 
									
										
										
										
											2019-09-20 01:03:17 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | class Book extends Entity implements HasCoverImage | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  |     use HasFactory; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-13 01:06:01 +08:00
										 |  |  |     public $searchFactor = 1.2; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-12 22:45:54 +08:00
										 |  |  |     protected $fillable = ['name', 'description']; | 
					
						
							| 
									
										
										
										
											2022-10-10 23:58:26 +08:00
										 |  |  |     protected $hidden = ['pivot', 'image_id', 'deleted_at']; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the url for this book. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-22 09:20:38 +08:00
										 |  |  |     public function getUrl(string $path = ''): string | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-22 09:20:38 +08:00
										 |  |  |         return url('/books/' . implode('/', [urlencode($this->slug), trim($path, '/')])); | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-12-07 01:32:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Returns book cover image, if book cover not exists return default cover image. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @param int $width  - Width of the image | 
					
						
							| 
									
										
										
										
											2017-12-07 01:32:29 +08:00
										 |  |  |      * @param int $height - Height of the image | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2017-12-07 00:34:26 +08:00
										 |  |  |      * @return string | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-12-07 01:32:29 +08:00
										 |  |  |     public function getBookCover($width = 440, $height = 250) | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-17 01:13:01 +08:00
										 |  |  |         $default = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='; | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |         if (!$this->image_id) { | 
					
						
							|  |  |  |             return $default; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-07 00:34:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2019-08-04 21:26:39 +08:00
										 |  |  |             $cover = $this->cover ? url($this->cover->getThumb($width, $height, false)) : $default; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         } catch (Exception $err) { | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |             $cover = $default; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |         return $cover; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-12-07 01:32:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Get the cover image of the book. | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function cover(): BelongsTo | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-09-04 22:57:52 +08:00
										 |  |  |         return $this->belongsTo(Image::class, 'image_id'); | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the type of the image model that is used when storing a cover image. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function coverImageTypeKey(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return 'cover_book'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get all pages within this book. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |     public function pages(): HasMany | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |         return $this->hasMany(Page::class); | 
					
						
							| 
									
										
										
										
											2015-07-13 04:31:15 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-24 23:57:35 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the direct child pages of this book. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |     public function directPages(): HasMany | 
					
						
							| 
									
										
										
										
											2019-02-24 23:57:35 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->pages()->where('chapter_id', '=', '0'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get all chapters within this book. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |     public function chapters(): HasMany | 
					
						
							| 
									
										
										
										
											2015-07-28 03:17:08 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |         return $this->hasMany(Chapter::class); | 
					
						
							| 
									
										
										
										
											2015-07-28 03:17:08 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the shelves this book is contained within. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |     public function shelves(): BelongsToMany | 
					
						
							| 
									
										
										
										
											2018-09-20 22:27:30 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->belongsToMany(Bookshelf::class, 'bookshelves_books', 'book_id', 'bookshelf_id'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Get the direct child items within this book. | 
					
						
							| 
									
										
										
										
											2016-05-02 04:20:50 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function getDirectChildren(): Collection | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |         $pages = $this->directPages()->scopes('visible')->get(); | 
					
						
							|  |  |  |         $chapters = $this->chapters()->scopes('visible')->get(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-16 03:09:33 +08:00
										 |  |  |         return $pages->concat($chapters)->sortBy('priority')->sortByDesc('draft'); | 
					
						
							| 
									
										
										
										
											2015-09-01 03:11:44 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-10-09 23:36:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a visible book by its slug. | 
					
						
							|  |  |  |      * @throws \Illuminate\Database\Eloquent\ModelNotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function getBySlug(string $slug): self | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return static::visible()->where('slug', '=', $slug)->firstOrFail(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | } |