| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Entities\Models; | 
					
						
							| 
									
										
										
										
											2018-09-25 19:30:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-05 22:33:46 +08:00
										 |  |  | use BookStack\Sorting\SortSet; | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2023-12-12 20:14:00 +08:00
										 |  |  |  * @property ?int                                     $default_template_id | 
					
						
							| 
									
										
										
										
											2025-02-05 22:33:46 +08:00
										 |  |  |  * @property ?int                                     $sort_set_id | 
					
						
							| 
									
										
										
										
											2021-09-19 04:21:44 +08:00
										 |  |  |  * @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 | 
					
						
							| 
									
										
										
										
											2023-12-11 20:33:20 +08:00
										 |  |  |  * @property ?Page                                    $defaultTemplate | 
					
						
							| 
									
										
										
										
											2025-02-05 22:33:46 +08:00
										 |  |  |  * @property ?SortSet                                 $sortSet | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2023-12-17 23:02:15 +08:00
										 |  |  |     use HasHtmlDescription; | 
					
						
							| 
									
										
										
										
											2021-10-31 04:29:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-19 00:23:40 +08:00
										 |  |  |     public float $searchFactor = 1.2; | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-12-17 23:02:15 +08:00
										 |  |  |     protected $fillable = ['name']; | 
					
						
							| 
									
										
										
										
											2023-12-21 21:23:52 +08:00
										 |  |  |     protected $hidden = ['pivot', 'image_id', 'deleted_at', 'description_html']; | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-09-30 19:09:29 +08:00
										 |  |  |     public function getBookCover(int $width = 440, int $height = 250): string | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-02-17 01:13:01 +08:00
										 |  |  |         $default = 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='; | 
					
						
							| 
									
										
										
										
											2023-09-30 19:09:29 +08:00
										 |  |  |         if (!$this->image_id || !$this->cover) { | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  |             return $default; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-12-07 00:34:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |         try { | 
					
						
							| 
									
										
										
										
											2023-09-30 19:09:29 +08:00
										 |  |  |             return $this->cover->getThumb($width, $height, false) ?? $default; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         } catch (Exception $err) { | 
					
						
							| 
									
										
										
										
											2023-09-30 19:09:29 +08:00
										 |  |  |             return $default; | 
					
						
							| 
									
										
										
										
											2017-07-07 18:59:38 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											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'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-03 01:41:59 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the Page that is used as default template for newly created pages within this Book. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function defaultTemplate(): BelongsTo | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-12-12 20:14:00 +08:00
										 |  |  |         return $this->belongsTo(Page::class, 'default_template_id'); | 
					
						
							| 
									
										
										
										
											2022-12-03 01:41:59 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-05 22:33:46 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the sort set assigned to this book, if existing. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function sortSet(): BelongsTo | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->belongsTo(SortSet::class); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2024-02-08 00:37:36 +08:00
										 |  |  |     public function getDirectVisibleChildren(): 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
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-07-13 03:01:42 +08:00
										 |  |  | } |