| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Entities\Models; | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Builder; | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  | use Illuminate\Database\Eloquent\Relations\BelongsTo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |  * Class BookChild. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @property int  $book_id | 
					
						
							|  |  |  |  * @property int  $priority | 
					
						
							| 
									
										
										
										
											2021-08-22 02:58:19 +08:00
										 |  |  |  * @property string  $book_slug | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |  * @property Book $book | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |  * @method Builder whereSlugs(string $bookSlug, string $childSlug) | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-11-22 07:20:54 +08:00
										 |  |  | abstract class BookChild extends Entity | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-08-22 02:58:19 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     protected static function boot() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::boot(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Load book slugs onto these models by default during query-time
 | 
					
						
							|  |  |  |         static::addGlobalScope('book_slug', function(Builder $builder) { | 
					
						
							|  |  |  |             $builder->addSelect(['book_slug' => function($builder) { | 
					
						
							|  |  |  |                 $builder->select('slug') | 
					
						
							|  |  |  |                     ->from('books') | 
					
						
							|  |  |  |                     ->whereColumn('books.id', '=',  'book_id'); | 
					
						
							|  |  |  |             }]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-08-22 02:58:19 +08:00
										 |  |  |      * Scope a query to find items where the child has the given childSlug | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * where its parent has the bookSlug. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function scopeWhereSlugs(Builder $query, string $bookSlug, string $childSlug) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $query->with('book') | 
					
						
							|  |  |  |             ->whereHas('book', function (Builder $query) use ($bookSlug) { | 
					
						
							|  |  |  |                 $query->where('slug', '=', $bookSlug); | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  |             ->where('slug', '=', $childSlug); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Get the book this page sits in. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function book(): BelongsTo | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-01-04 06:29:58 +08:00
										 |  |  |         return $this->belongsTo(Book::class)->withTrashed(); | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Change the book that this entity belongs to. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function changeBook(int $newBookId): Entity | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->book_id = $newBookId; | 
					
						
							|  |  |  |         $this->refreshSlug(); | 
					
						
							|  |  |  |         $this->save(); | 
					
						
							|  |  |  |         $this->refresh(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Update all child pages if a chapter
 | 
					
						
							|  |  |  |         if ($this instanceof Chapter) { | 
					
						
							| 
									
										
										
										
											2021-03-13 23:18:37 +08:00
										 |  |  |             foreach ($this->pages()->withTrashed()->get() as $page) { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |                 $page->changeBook($newBookId); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $this; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |