| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Entities\Repos; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-18 00:56:55 +08:00
										 |  |  | use BookStack\Activity\ActivityType; | 
					
						
							| 
									
										
										
										
											2020-11-22 08:17:45 +08:00
										 |  |  | use BookStack\Entities\Models\Book; | 
					
						
							|  |  |  | use BookStack\Entities\Models\Chapter; | 
					
						
							|  |  |  | use BookStack\Entities\Models\Entity; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | use BookStack\Entities\Models\Page; | 
					
						
							|  |  |  | use BookStack\Entities\Models\PageRevision; | 
					
						
							| 
									
										
										
										
											2020-11-22 07:20:54 +08:00
										 |  |  | use BookStack\Entities\Tools\BookContents; | 
					
						
							|  |  |  | use BookStack\Entities\Tools\PageContent; | 
					
						
							| 
									
										
										
										
											2022-04-24 06:20:46 +08:00
										 |  |  | use BookStack\Entities\Tools\PageEditorData; | 
					
						
							| 
									
										
										
										
											2020-11-22 07:20:54 +08:00
										 |  |  | use BookStack\Entities\Tools\TrashCan; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use BookStack\Exceptions\MoveOperationException; | 
					
						
							|  |  |  | use BookStack\Exceptions\NotFoundException; | 
					
						
							|  |  |  | use BookStack\Exceptions\PermissionsException; | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  | use BookStack\Facades\Activity; | 
					
						
							| 
									
										
										
										
											2022-08-20 19:07:38 +08:00
										 |  |  | use BookStack\References\ReferenceStore; | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  | use BookStack\References\ReferenceUpdater; | 
					
						
							| 
									
										
										
										
											2020-09-28 06:24:33 +08:00
										 |  |  | use Exception; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use Illuminate\Pagination\LengthAwarePaginator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PageRepo | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-08-18 00:37:27 +08:00
										 |  |  |     protected BaseRepo $baseRepo; | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |     protected RevisionRepo $revisionRepo; | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |     protected ReferenceStore $referenceStore; | 
					
						
							|  |  |  |     protected ReferenceUpdater $referenceUpdater; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * PageRepo constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |     public function __construct( | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  |         BaseRepo $baseRepo, | 
					
						
							|  |  |  |         RevisionRepo $revisionRepo, | 
					
						
							|  |  |  |         ReferenceStore $referenceStore, | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         ReferenceUpdater $referenceUpdater | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  |     ) { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $this->baseRepo = $baseRepo; | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $this->revisionRepo = $revisionRepo; | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         $this->referenceStore = $referenceStore; | 
					
						
							|  |  |  |         $this->referenceUpdater = $referenceUpdater; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a page by ID. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |     public function getById(int $id, array $relations = ['book']): Page | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         /** @var Page $page */ | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |         $page = Page::visible()->with($relations)->find($id); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!$page) { | 
					
						
							|  |  |  |             throw new NotFoundException(trans('errors.page_not_found')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $page; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Get a page its book and own slug. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function getBySlug(string $bookSlug, string $pageSlug): Page | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page = Page::visible()->whereSlugs($bookSlug, $pageSlug)->first(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$page) { | 
					
						
							|  |  |  |             throw new NotFoundException(trans('errors.page_not_found')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $page; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Get a page by its old slug but checking the revisions table | 
					
						
							|  |  |  |      * for the last revision that matched the given page and book slug. | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function getByOldSlug(string $bookSlug, string $pageSlug): ?Page | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $revision = $this->revisionRepo->getBySlugs($bookSlug, $pageSlug); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-23 07:33:55 +08:00
										 |  |  |         return $revision->page ?? null; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get pages that have been marked as a template. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getTemplates(int $count = 10, int $page = 1, string $search = ''): LengthAwarePaginator | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $query = Page::visible() | 
					
						
							|  |  |  |             ->where('template', '=', true) | 
					
						
							|  |  |  |             ->orderBy('name', 'asc') | 
					
						
							|  |  |  |             ->skip(($page - 1) * $count) | 
					
						
							|  |  |  |             ->take($count); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($search) { | 
					
						
							|  |  |  |             $query->where('name', 'like', '%' . $search . '%'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $paginator = $query->paginate($count, ['*'], 'page', $page); | 
					
						
							|  |  |  |         $paginator->withPath('/templates'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return $paginator; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a parent item via slugs. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getParentFromSlugs(string $bookSlug, string $chapterSlug = null): Entity | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($chapterSlug !== null) { | 
					
						
							| 
									
										
										
										
											2022-08-18 00:37:27 +08:00
										 |  |  |             return Chapter::visible()->whereSlugs($bookSlug, $chapterSlug)->firstOrFail(); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return Book::visible()->where('slug', '=', $bookSlug)->firstOrFail(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get the draft copy of the given page for the current user. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getUserDraft(Page $page): ?PageRevision | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         return $this->revisionRepo->getLatestDraftForCurrentUser($page); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a new draft page belonging to the given parent entity. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getNewDraftPage(Entity $parent) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = (new Page())->forceFill([ | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  |             'name'       => trans('entities.pages_initial_name'), | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             'created_by' => user()->id, | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  |             'owned_by'   => user()->id, | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             'updated_by' => user()->id, | 
					
						
							| 
									
										
										
										
											2022-08-30 00:46:41 +08:00
										 |  |  |             'draft'      => true, | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($parent instanceof Chapter) { | 
					
						
							|  |  |  |             $page->chapter_id = $parent->id; | 
					
						
							|  |  |  |             $page->book_id = $parent->book_id; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $page->book_id = $parent->id; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $page->save(); | 
					
						
							|  |  |  |         $page->refresh()->rebuildPermissions(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return $page; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Publish a draft page to make it a live, non-draft page. | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function publishDraft(Page $draft, array $input): Page | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |         $this->updateTemplateStatusAndContentFromInput($draft, $input); | 
					
						
							| 
									
										
										
										
											2021-11-12 21:47:23 +08:00
										 |  |  |         $this->baseRepo->update($draft, $input); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $draft->draft = false; | 
					
						
							|  |  |  |         $draft->revision_count = 1; | 
					
						
							|  |  |  |         $draft->priority = $this->getNewPriority($draft); | 
					
						
							|  |  |  |         $draft->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $this->revisionRepo->storeNewForPage($draft, trans('entities.pages_initial_revision')); | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         $this->referenceStore->updateForPage($draft); | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  |         $draft->refresh(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::PAGE_CREATE, $draft); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  |         return $draft; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Update a page in the system. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function update(Page $page, array $input): Page | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         // Hold the old details to compare later
 | 
					
						
							|  |  |  |         $oldHtml = $page->html; | 
					
						
							|  |  |  |         $oldName = $page->name; | 
					
						
							| 
									
										
										
										
											2021-02-06 21:51:05 +08:00
										 |  |  |         $oldMarkdown = $page->markdown; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |         $this->updateTemplateStatusAndContentFromInput($page, $input); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $this->baseRepo->update($page, $input); | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         $this->referenceStore->updateForPage($page); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         // Update with new details
 | 
					
						
							| 
									
										
										
										
											2019-09-20 07:18:28 +08:00
										 |  |  |         $page->revision_count++; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         $page->save(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Remove all update drafts for this user & page.
 | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $this->revisionRepo->deleteDraftsForCurrentUser($page); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Save a revision after updating
 | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |         $summary = trim($input['summary'] ?? ''); | 
					
						
							| 
									
										
										
										
											2021-02-06 21:51:05 +08:00
										 |  |  |         $htmlChanged = isset($input['html']) && $input['html'] !== $oldHtml; | 
					
						
							|  |  |  |         $nameChanged = isset($input['name']) && $input['name'] !== $oldName; | 
					
						
							|  |  |  |         $markdownChanged = isset($input['markdown']) && $input['markdown'] !== $oldMarkdown; | 
					
						
							| 
									
										
										
										
											2021-02-07 07:09:49 +08:00
										 |  |  |         if ($htmlChanged || $nameChanged || $markdownChanged || $summary) { | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |             $this->revisionRepo->storeNewForPage($page, $summary); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::PAGE_UPDATE, $page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         return $page; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |     protected function updateTemplateStatusAndContentFromInput(Page $page, array $input) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (isset($input['template']) && userCan('templates-manage')) { | 
					
						
							|  |  |  |             $page->template = ($input['template'] === 'true'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $pageContent = new PageContent($page); | 
					
						
							| 
									
										
										
										
											2022-04-24 06:20:46 +08:00
										 |  |  |         $currentEditor = $page->editor ?: PageEditorData::getSystemDefaultEditor(); | 
					
						
							|  |  |  |         $newEditor = $currentEditor; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $haveInput = isset($input['markdown']) || isset($input['html']); | 
					
						
							|  |  |  |         $inputEmpty = empty($input['markdown']) && empty($input['html']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($haveInput && $inputEmpty) { | 
					
						
							|  |  |  |             $pageContent->setNewHTML(''); | 
					
						
							|  |  |  |         } elseif (!empty($input['markdown']) && is_string($input['markdown'])) { | 
					
						
							|  |  |  |             $newEditor = 'markdown'; | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |             $pageContent->setNewMarkdown($input['markdown']); | 
					
						
							| 
									
										
										
										
											2021-08-25 04:23:55 +08:00
										 |  |  |         } elseif (isset($input['html'])) { | 
					
						
							| 
									
										
										
										
											2022-04-24 06:20:46 +08:00
										 |  |  |             $newEditor = 'wysiwyg'; | 
					
						
							| 
									
										
										
										
											2021-08-22 01:54:38 +08:00
										 |  |  |             $pageContent->setNewHTML($input['html']); | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-04-24 06:20:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if ($newEditor !== $currentEditor && userCan('editor-change')) { | 
					
						
							|  |  |  |             $page->editor = $newEditor; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Save a page update draft. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function updatePageDraft(Page $page, array $input) | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							|  |  |  |         // If the page itself is a draft simply update that
 | 
					
						
							|  |  |  |         if ($page->draft) { | 
					
						
							| 
									
										
										
										
											2021-11-14 20:17:22 +08:00
										 |  |  |             $this->updateTemplateStatusAndContentFromInput($page, $input); | 
					
						
							| 
									
										
										
										
											2020-11-22 22:56:19 +08:00
										 |  |  |             $page->fill($input); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |             $page->save(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |             return $page; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-19 00:39:28 +08:00
										 |  |  |         // Otherwise, save the data to a revision
 | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $draft = $this->revisionRepo->getNewDraftForCurrentUser($page); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $draft->fill($input); | 
					
						
							| 
									
										
										
										
											2022-04-19 00:39:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($input['markdown'])) { | 
					
						
							|  |  |  |             $draft->markdown = $input['markdown']; | 
					
						
							|  |  |  |             $draft->html = ''; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $draft->html = $input['html']; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |             $draft->markdown = ''; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $draft->save(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         return $draft; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Destroy a page from the system. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2020-09-28 06:24:33 +08:00
										 |  |  |      * @throws Exception | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function destroy(Page $page) | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $trashCan = new TrashCan(); | 
					
						
							| 
									
										
										
										
											2020-09-28 06:24:33 +08:00
										 |  |  |         $trashCan->softDestroyPage($page); | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::PAGE_DELETE, $page); | 
					
						
							| 
									
										
										
										
											2020-11-07 21:58:23 +08:00
										 |  |  |         $trashCan->autoClearOld(); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Restores a revision's content back into a page. | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     public function restoreRevision(Page $page, int $revisionId): Page | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         $oldUrl = $page->getUrl(); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page->revision_count++; | 
					
						
							| 
									
										
										
										
											2021-11-20 22:03:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /** @var PageRevision $revision */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $revision = $page->revisions()->where('id', '=', $revisionId)->first(); | 
					
						
							| 
									
										
										
										
											2020-11-04 09:46:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page->fill($revision->toArray()); | 
					
						
							|  |  |  |         $content = new PageContent($page); | 
					
						
							| 
									
										
										
										
											2021-02-06 22:14:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!empty($revision->markdown)) { | 
					
						
							|  |  |  |             $content->setNewMarkdown($revision->markdown); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $content->setNewHTML($revision->html); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page->updated_by = user()->id; | 
					
						
							|  |  |  |         $page->refreshSlug(); | 
					
						
							|  |  |  |         $page->save(); | 
					
						
							|  |  |  |         $page->indexForSearch(); | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         $this->referenceStore->updateForPage($page); | 
					
						
							| 
									
										
										
										
											2021-01-03 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $summary = trans('entities.pages_revision_restored_from', ['id' => strval($revisionId), 'summary' => $revision->summary]); | 
					
						
							| 
									
										
										
										
											2022-08-21 04:09:07 +08:00
										 |  |  |         $this->revisionRepo->storeNewForPage($page, $summary); | 
					
						
							| 
									
										
										
										
											2021-01-03 00:42:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-22 01:05:19 +08:00
										 |  |  |         if ($oldUrl !== $page->getUrl()) { | 
					
						
							|  |  |  |             $this->referenceUpdater->updateEntityPageReferences($page, $oldUrl); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::PAGE_RESTORE, $page); | 
					
						
							| 
									
										
										
										
											2022-08-09 20:25:18 +08:00
										 |  |  |         Activity::add(ActivityType::REVISION_RESTORE, $revision); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return $page; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * Move the given page into a new parent book or chapter. | 
					
						
							|  |  |  |      * The $parentIdentifier must be a string of the following format: | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * 'book:<id>' (book:5). | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws MoveOperationException | 
					
						
							|  |  |  |      * @throws PermissionsException | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  |     public function move(Page $page, string $parentIdentifier): Entity | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $parent = $this->findParentByIdentifier($parentIdentifier); | 
					
						
							| 
									
										
										
										
											2022-01-06 00:11:11 +08:00
										 |  |  |         if (is_null($parent)) { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             throw new MoveOperationException('Book or chapter to move page into not found'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!userCan('page-create', $parent)) { | 
					
						
							|  |  |  |             throw new PermissionsException('User does not have permission to create a page within the new parent'); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 06:33:09 +08:00
										 |  |  |         $page->chapter_id = ($parent instanceof Chapter) ? $parent->id : null; | 
					
						
							| 
									
										
										
										
											2021-11-20 22:03:56 +08:00
										 |  |  |         $newBookId = ($parent instanceof Chapter) ? $parent->book->id : $parent->id; | 
					
						
							|  |  |  |         $page->changeBook($newBookId); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $page->rebuildPermissions(); | 
					
						
							| 
									
										
										
										
											2019-10-28 23:53:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-12 01:29:33 +08:00
										 |  |  |         Activity::add(ActivityType::PAGE_MOVE, $page); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 06:37:27 +08:00
										 |  |  |         return $parent; | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-12-19 23:40:52 +08:00
										 |  |  |      * Find a page parent entity via an identifier string in the format: | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * {type}:{id} | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Example: (book:5). | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws MoveOperationException | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-19 20:56:27 +08:00
										 |  |  |     public function findParentByIdentifier(string $identifier): ?Entity | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $stringExploded = explode(':', $identifier); | 
					
						
							|  |  |  |         $entityType = $stringExploded[0]; | 
					
						
							|  |  |  |         $entityId = intval($stringExploded[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ($entityType !== 'book' && $entityType !== 'chapter') { | 
					
						
							|  |  |  |             throw new MoveOperationException('Pages can only be in books or chapters'); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $parentClass = $entityType === 'book' ? Book::class : Chapter::class; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return $parentClass::visible()->where('id', '=', $entityId)->first(); | 
					
						
							| 
									
										
										
										
											2018-10-13 18:27:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-12 03:04:43 +08:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * Get a new priority for a page. | 
					
						
							| 
									
										
										
										
											2019-08-12 03:04:43 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |     protected function getNewPriority(Page $page): int | 
					
						
							| 
									
										
										
										
											2019-08-12 03:04:43 +08:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2020-11-03 06:47:48 +08:00
										 |  |  |         $parent = $page->getParent(); | 
					
						
							|  |  |  |         if ($parent instanceof Chapter) { | 
					
						
							| 
									
										
										
										
											2021-11-20 22:03:56 +08:00
										 |  |  |             /** @var ?Page $lastPage */ | 
					
						
							| 
									
										
										
										
											2020-11-03 06:47:48 +08:00
										 |  |  |             $lastPage = $parent->pages('desc')->first(); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             return $lastPage ? $lastPage->priority + 1 : 0; | 
					
						
							| 
									
										
										
										
											2019-08-12 03:04:43 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return (new BookContents($page->book))->getLastPriority() + 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-27 18:29:23 +08:00
										 |  |  | } |