2015-09-10 14:31:09 -04:00
|
|
|
<?php namespace BookStack\Repos;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
use Activity;
|
2016-04-24 11:54:20 -04:00
|
|
|
use BookStack\Book;
|
2016-03-05 13:09:21 -05:00
|
|
|
use BookStack\Exceptions\NotFoundException;
|
2015-07-27 15:17:08 -04:00
|
|
|
use Illuminate\Support\Str;
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Chapter;
|
2015-07-27 15:17:08 -04:00
|
|
|
|
2016-03-05 14:00:26 -05:00
|
|
|
class ChapterRepo extends EntityRepo
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2016-06-25 10:31:38 -04:00
|
|
|
protected $pageRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ChapterRepo constructor.
|
|
|
|
* @param $pageRepo
|
|
|
|
*/
|
|
|
|
public function __construct(PageRepo $pageRepo)
|
|
|
|
{
|
|
|
|
$this->pageRepo = $pageRepo;
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2016-02-28 14:03:04 -05:00
|
|
|
/**
|
2016-05-01 16:20:50 -04:00
|
|
|
* Base query for getting chapters, Takes permissions into account.
|
2016-02-28 14:03:04 -05:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
private function chapterQuery()
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->permissionService->enforceChapterRestrictions($this->chapter, 'view');
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Check if an id exists.
|
|
|
|
* @param $id
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function idExists($id)
|
|
|
|
{
|
2016-02-28 14:03:04 -05:00
|
|
|
return $this->chapterQuery()->where('id', '=', $id)->count() > 0;
|
2015-07-30 17:27:35 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Get a chapter by a specific id.
|
|
|
|
* @param $id
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-07-27 15:17:08 -04:00
|
|
|
public function getById($id)
|
|
|
|
{
|
2016-02-28 14:03:04 -05:00
|
|
|
return $this->chapterQuery()->findOrFail($id);
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Get all chapters.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Collection|static[]
|
|
|
|
*/
|
2015-07-27 15:17:08 -04:00
|
|
|
public function getAll()
|
|
|
|
{
|
2016-02-28 14:03:04 -05:00
|
|
|
return $this->chapterQuery()->all();
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Get a chapter that has the given slug within the given book.
|
|
|
|
* @param $slug
|
|
|
|
* @param $bookId
|
|
|
|
* @return mixed
|
2016-03-05 13:09:21 -05:00
|
|
|
* @throws NotFoundException
|
2015-11-21 13:05:03 -05:00
|
|
|
*/
|
2015-07-27 15:17:08 -04:00
|
|
|
public function getBySlug($slug, $bookId)
|
|
|
|
{
|
2016-02-28 14:03:04 -05:00
|
|
|
$chapter = $this->chapterQuery()->where('slug', '=', $slug)->where('book_id', '=', $bookId)->first();
|
2016-03-05 13:09:21 -05:00
|
|
|
if ($chapter === null) throw new NotFoundException('Chapter not found');
|
2015-12-28 12:19:23 -05:00
|
|
|
return $chapter;
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2016-03-05 13:09:21 -05:00
|
|
|
/**
|
|
|
|
* Get the child items for a chapter
|
|
|
|
* @param Chapter $chapter
|
|
|
|
*/
|
|
|
|
public function getChildren(Chapter $chapter)
|
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
$pages = $this->permissionService->enforcePageRestrictions($chapter->pages())->get();
|
2016-03-13 08:04:08 -04:00
|
|
|
// Sort items with drafts first then by priority.
|
2016-08-13 08:53:04 -04:00
|
|
|
return $pages->sortBy(function ($child, $key) {
|
2016-03-13 08:04:08 -04:00
|
|
|
$score = $child->priority;
|
|
|
|
if ($child->draft) $score -= 100;
|
|
|
|
return $score;
|
|
|
|
});
|
2016-03-05 13:09:21 -05:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Create a new chapter from request input.
|
|
|
|
* @param $input
|
2016-04-24 11:54:20 -04:00
|
|
|
* @param Book $book
|
|
|
|
* @return Chapter
|
2015-11-21 13:05:03 -05:00
|
|
|
*/
|
2016-04-24 11:54:20 -04:00
|
|
|
public function createFromInput($input, Book $book)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2016-04-24 11:54:20 -04:00
|
|
|
$chapter = $this->chapter->newInstance($input);
|
|
|
|
$chapter->slug = $this->findSuitableSlug($chapter->name, $book->id);
|
2016-09-29 07:43:46 -04:00
|
|
|
$chapter->created_by = user()->id;
|
|
|
|
$chapter->updated_by = user()->id;
|
2016-04-24 11:54:20 -04:00
|
|
|
$chapter = $book->chapters()->save($chapter);
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->permissionService->buildJointPermissionsForEntity($chapter);
|
2016-04-24 11:54:20 -04:00
|
|
|
return $chapter;
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Destroy a chapter and its relations by providing its slug.
|
|
|
|
* @param Chapter $chapter
|
|
|
|
*/
|
|
|
|
public function destroy(Chapter $chapter)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
2015-11-21 13:05:03 -05:00
|
|
|
if (count($chapter->pages) > 0) {
|
|
|
|
foreach ($chapter->pages as $page) {
|
|
|
|
$page->chapter_id = 0;
|
|
|
|
$page->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Activity::removeEntity($chapter);
|
|
|
|
$chapter->views()->delete();
|
2016-05-01 16:20:50 -04:00
|
|
|
$chapter->permissions()->delete();
|
|
|
|
$this->permissionService->deleteJointPermissionsForEntity($chapter);
|
2015-11-21 13:05:03 -05:00
|
|
|
$chapter->delete();
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Check if a chapter's slug exists.
|
|
|
|
* @param $slug
|
|
|
|
* @param $bookId
|
|
|
|
* @param bool|false $currentId
|
|
|
|
* @return bool
|
|
|
|
*/
|
2015-07-27 15:17:08 -04:00
|
|
|
public function doesSlugExist($slug, $bookId, $currentId = false)
|
|
|
|
{
|
|
|
|
$query = $this->chapter->where('slug', '=', $slug)->where('book_id', '=', $bookId);
|
2015-11-21 13:11:46 -05:00
|
|
|
if ($currentId) {
|
2015-07-27 15:17:08 -04:00
|
|
|
$query = $query->where('id', '!=', $currentId);
|
|
|
|
}
|
|
|
|
return $query->count() > 0;
|
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Finds a suitable slug for the provided name.
|
|
|
|
* Checks database to prevent duplicate slugs.
|
|
|
|
* @param $name
|
|
|
|
* @param $bookId
|
|
|
|
* @param bool|false $currentId
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function findSuitableSlug($name, $bookId, $currentId = false)
|
2015-07-27 15:17:08 -04:00
|
|
|
{
|
|
|
|
$slug = Str::slug($name);
|
2016-08-13 08:53:04 -04:00
|
|
|
if ($slug === "") $slug = substr(md5(rand(1, 500)), 0, 5);
|
2015-11-21 13:11:46 -05:00
|
|
|
while ($this->doesSlugExist($slug, $bookId, $currentId)) {
|
2015-07-27 15:17:08 -04:00
|
|
|
$slug .= '-' . substr(md5(rand(1, 500)), 0, 3);
|
|
|
|
}
|
|
|
|
return $slug;
|
|
|
|
}
|
|
|
|
|
2016-04-07 14:03:00 -04:00
|
|
|
/**
|
|
|
|
* Get a new priority value for a new page to be added
|
|
|
|
* to the given chapter.
|
|
|
|
* @param Chapter $chapter
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getNewPriority(Chapter $chapter)
|
|
|
|
{
|
|
|
|
$lastPage = $chapter->pages->last();
|
|
|
|
return $lastPage !== null ? $lastPage->priority + 1 : 0;
|
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
|
|
|
* Get chapters by the given search term.
|
2016-03-05 14:00:26 -05:00
|
|
|
* @param string $term
|
2015-11-21 13:05:03 -05:00
|
|
|
* @param array $whereTerms
|
2016-02-21 07:53:58 -05:00
|
|
|
* @param int $count
|
|
|
|
* @param array $paginationAppends
|
2015-11-21 13:05:03 -05:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-02-21 07:53:58 -05:00
|
|
|
public function getBySearch($term, $whereTerms = [], $count = 20, $paginationAppends = [])
|
2015-08-31 15:11:44 -04:00
|
|
|
{
|
2016-03-05 14:00:26 -05:00
|
|
|
$terms = $this->prepareSearchTerms($term);
|
2016-05-15 08:41:18 -04:00
|
|
|
$chapterQuery = $this->permissionService->enforceChapterRestrictions($this->chapter->fullTextSearchQuery(['name', 'description'], $terms, $whereTerms));
|
|
|
|
$chapterQuery = $this->addAdvancedSearchQueries($chapterQuery, $term);
|
|
|
|
$chapters = $chapterQuery->paginate($count)->appends($paginationAppends);
|
2015-12-29 10:37:13 -05:00
|
|
|
$words = join('|', explode(' ', preg_quote(trim($term), '/')));
|
2015-08-31 15:11:44 -04:00
|
|
|
foreach ($chapters as $chapter) {
|
|
|
|
//highlight
|
|
|
|
$result = preg_replace('#' . $words . '#iu', "<span class=\"highlight\">\$0</span>", $chapter->getExcerpt(100));
|
|
|
|
$chapter->searchSnippet = $result;
|
|
|
|
}
|
|
|
|
return $chapters;
|
|
|
|
}
|
|
|
|
|
2015-11-21 13:05:03 -05:00
|
|
|
/**
|
2015-11-21 13:11:46 -05:00
|
|
|
* Changes the book relation of this chapter.
|
2016-08-26 15:20:58 -04:00
|
|
|
* @param $bookId
|
2015-11-21 13:05:03 -05:00
|
|
|
* @param Chapter $chapter
|
2016-08-26 15:20:58 -04:00
|
|
|
* @param bool $rebuildPermissions
|
2015-11-21 13:05:03 -05:00
|
|
|
* @return Chapter
|
|
|
|
*/
|
2016-08-26 15:20:58 -04:00
|
|
|
public function changeBook($bookId, Chapter $chapter, $rebuildPermissions = false)
|
2015-09-06 09:35:53 -04:00
|
|
|
{
|
|
|
|
$chapter->book_id = $bookId;
|
2016-06-25 10:31:38 -04:00
|
|
|
// Update related activity
|
2015-11-21 13:11:46 -05:00
|
|
|
foreach ($chapter->activity as $activity) {
|
2015-09-06 09:35:53 -04:00
|
|
|
$activity->book_id = $bookId;
|
|
|
|
$activity->save();
|
|
|
|
}
|
2015-11-21 13:11:46 -05:00
|
|
|
$chapter->slug = $this->findSuitableSlug($chapter->name, $bookId, $chapter->id);
|
2015-09-06 09:35:53 -04:00
|
|
|
$chapter->save();
|
2016-06-25 10:31:38 -04:00
|
|
|
// Update all child pages
|
|
|
|
foreach ($chapter->pages as $page) {
|
|
|
|
$this->pageRepo->changeBook($bookId, $page);
|
|
|
|
}
|
2016-08-26 15:20:58 -04:00
|
|
|
|
|
|
|
// Update permissions if applicable
|
|
|
|
if ($rebuildPermissions) {
|
|
|
|
$chapter->load('book');
|
|
|
|
$this->permissionService->buildJointPermissionsForEntity($chapter->book);
|
|
|
|
}
|
2016-06-25 10:31:38 -04:00
|
|
|
|
2015-09-06 09:35:53 -04:00
|
|
|
return $chapter;
|
|
|
|
}
|
|
|
|
|
2015-07-27 15:17:08 -04:00
|
|
|
}
|