| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Http\Controllers; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use BookStack\Entities\Repos\PageRepo; | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | use BookStack\Entities\Tools\PageContent; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | use BookStack\Exceptions\NotFoundException; | 
					
						
							| 
									
										
										
										
											2020-11-30 03:08:13 +08:00
										 |  |  | use Ssddanbrown\HtmlDiff\Diff; | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PageRevisionController extends Controller | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $pageRepo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * PageRevisionController constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct(PageRepo $pageRepo) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->pageRepo = $pageRepo; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Shows the last revisions for this page. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function index(string $bookSlug, string $pageSlug) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = $this->pageRepo->getBySlug($bookSlug, $pageSlug); | 
					
						
							|  |  |  |         $this->setPageTitle(trans('entities.pages_revisions_named', ['pageName'=>$page->getShortName()])); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return view('pages.revisions', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'page'    => $page, | 
					
						
							|  |  |  |             'current' => $page, | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Shows a preview of a single revision. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function show(string $bookSlug, string $pageSlug, int $revisionId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = $this->pageRepo->getBySlug($bookSlug, $pageSlug); | 
					
						
							|  |  |  |         $revision = $page->revisions()->where('id', '=', $revisionId)->first(); | 
					
						
							|  |  |  |         if ($revision === null) { | 
					
						
							|  |  |  |             throw new NotFoundException(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $page->fill($revision->toArray()); | 
					
						
							| 
									
										
										
										
											2020-05-23 19:28:14 +08:00
										 |  |  |         // TODO - Refactor PageContent so we don't need to juggle this
 | 
					
						
							|  |  |  |         $page->html = $revision->html; | 
					
						
							|  |  |  |         $page->html = (new PageContent($page))->render(); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $this->setPageTitle(trans('entities.pages_revision_named', ['pageName' => $page->getShortName()])); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return view('pages.revision', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'page'     => $page, | 
					
						
							|  |  |  |             'book'     => $page->book, | 
					
						
							|  |  |  |             'diff'     => null, | 
					
						
							|  |  |  |             'revision' => $revision, | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Shows the changes of a single revision. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function changes(string $bookSlug, string $pageSlug, int $revisionId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = $this->pageRepo->getBySlug($bookSlug, $pageSlug); | 
					
						
							|  |  |  |         $revision = $page->revisions()->where('id', '=', $revisionId)->first(); | 
					
						
							|  |  |  |         if ($revision === null) { | 
					
						
							|  |  |  |             throw new NotFoundException(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $prev = $revision->getPrevious(); | 
					
						
							|  |  |  |         $prevContent = $prev->html ?? ''; | 
					
						
							| 
									
										
										
										
											2020-11-30 03:08:13 +08:00
										 |  |  |         $diff = Diff::excecute($prevContent, $revision->html); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $page->fill($revision->toArray()); | 
					
						
							| 
									
										
										
										
											2020-05-23 19:28:14 +08:00
										 |  |  |         // TODO - Refactor PageContent so we don't need to juggle this
 | 
					
						
							|  |  |  |         $page->html = $revision->html; | 
					
						
							|  |  |  |         $page->html = (new PageContent($page))->render(); | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         $this->setPageTitle(trans('entities.pages_revision_named', ['pageName'=>$page->getShortName()])); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return view('pages.revision', [ | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |             'page'     => $page, | 
					
						
							|  |  |  |             'book'     => $page->book, | 
					
						
							|  |  |  |             'diff'     => $diff, | 
					
						
							|  |  |  |             'revision' => $revision, | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         ]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Restores a page using the content of the specified revision. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function restore(string $bookSlug, string $pageSlug, int $revisionId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = $this->pageRepo->getBySlug($bookSlug, $pageSlug); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('page-update', $page); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $page = $this->pageRepo->restoreRevision($page, $revisionId); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return redirect($page->getUrl()); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Deletes a revision using the id of the specified revision. | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |      * @throws NotFoundException | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function destroy(string $bookSlug, string $pageSlug, int $revId) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $page = $this->pageRepo->getBySlug($bookSlug, $pageSlug); | 
					
						
							|  |  |  |         $this->checkOwnablePermission('page-delete', $page); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $revision = $page->revisions()->where('id', '=', $revId)->first(); | 
					
						
							|  |  |  |         if ($revision === null) { | 
					
						
							|  |  |  |             throw new NotFoundException("Revision #{$revId} not found"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-27 00:44:34 +08:00
										 |  |  |         // Check if it's the latest revision, cannot delete the latest revision.
 | 
					
						
							|  |  |  |         if (intval($page->currentRevision->id ?? null) === intval($revId)) { | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             $this->showErrorNotification(trans('entities.revision_cannot_delete_latest')); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |             return redirect($page->getUrl('/revisions')); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $revision->delete(); | 
					
						
							|  |  |  |         $this->showSuccessNotification(trans('entities.revision_delete_success')); | 
					
						
							| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-05 19:55:01 +08:00
										 |  |  |         return redirect($page->getUrl('/revisions')); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |