use Activity;
use BookStack\Book;
use BookStack\Chapter;
+use BookStack\Entity;
use BookStack\Exceptions\NotFoundException;
use Carbon\Carbon;
use DOMDocument;
{
protected $pageRevision;
+ protected $tagRepo;
/**
* PageRepo constructor.
* @param PageRevision $pageRevision
+ * @param TagRepo $tagRepo
*/
- public function __construct(PageRevision $pageRevision)
+ public function __construct(PageRevision $pageRevision, TagRepo $tagRepo)
{
$this->pageRevision = $pageRevision;
+ $this->tagRepo = $tagRepo;
parent::__construct();
}
*/
private function pageQuery($allowDrafts = false)
{
- $query = $this->restrictionService->enforcePageRestrictions($this->page, 'view');
+ $query = $this->permissionService->enforcePageRestrictions($this->page, 'view');
if (!$allowDrafts) {
$query = $query->where('draft', '=', false);
}
{
$revision = $this->pageRevision->where('slug', '=', $pageSlug)
->whereHas('page', function ($query) {
- $this->restrictionService->enforcePageRestrictions($query);
+ $this->permissionService->enforcePageRestrictions($query);
})
->where('type', '=', 'version')
->where('book_slug', '=', $bookSlug)->orderBy('created_at', 'desc')
{
$draftPage->fill($input);
+ // Save page tags if present
+ if(isset($input['tags'])) {
+ $this->tagRepo->saveTagsToEntity($draftPage, $input['tags']);
+ }
+
$draftPage->slug = $this->findSuitableSlug($draftPage->name, $draftPage->book->id);
$draftPage->html = $this->formatHtml($input['html']);
$draftPage->text = strip_tags($draftPage->html);
if ($chapter) $page->chapter_id = $chapter->id;
$book->pages()->save($page);
- $this->restrictionService->buildEntityPermissionsForEntity($page);
+ $this->permissionService->buildJointPermissionsForEntity($page);
return $page;
}
public function getBySearch($term, $whereTerms = [], $count = 20, $paginationAppends = [])
{
$terms = $this->prepareSearchTerms($term);
- $pages = $this->restrictionService->enforcePageRestrictions($this->page->fullTextSearchQuery(['name', 'text'], $terms, $whereTerms))
- ->paginate($count)->appends($paginationAppends);
+ $pageQuery = $this->permissionService->enforcePageRestrictions($this->page->fullTextSearchQuery(['name', 'text'], $terms, $whereTerms));
+ $pageQuery = $this->addAdvancedSearchQueries($pageQuery, $term);
+ $pages = $pageQuery->paginate($count)->appends($paginationAppends);
// Add highlights to page text.
$words = join('|', explode(' ', preg_quote(trim($term), '/')));
$page->slug = $this->findSuitableSlug($input['name'], $book_id, $page->id);
}
+ // Save page tags if present
+ if(isset($input['tags'])) {
+ $this->tagRepo->saveTagsToEntity($page, $input['tags']);
+ }
+
// Update with new details
$userId = auth()->user()->id;
$page->fill($input);
return $page;
}
+
+ /**
+ * Change the page's parent to the given entity.
+ * @param Page $page
+ * @param Entity $parent
+ */
+ public function changePageParent(Page $page, Entity $parent)
+ {
+ $book = $parent->isA('book') ? $parent : $parent->book;
+ $page->chapter_id = $parent->isA('chapter') ? $parent->id : 0;
+ $page->save();
+ $page = $this->changeBook($book->id, $page);
+ $page->load('book');
+ $this->permissionService->buildJointPermissionsForEntity($book);
+ }
+
/**
* Gets a suitable slug for the resource
* @param $name
* Destroy a given page along with its dependencies.
* @param $page
*/
- public function destroy($page)
+ public function destroy(Page $page)
{
Activity::removeEntity($page);
$page->views()->delete();
+ $page->tags()->delete();
$page->revisions()->delete();
- $page->restrictions()->delete();
- $this->restrictionService->deleteEntityPermissionsForEntity($page);
+ $page->permissions()->delete();
+ $this->permissionService->deleteJointPermissionsForEntity($page);
$page->delete();
}