2015-09-10 14:31:09 -04:00
|
|
|
<?php namespace BookStack\Repos;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Book;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2016-03-05 14:00:26 -05:00
|
|
|
class BookRepo extends EntityRepo
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
protected $pageRepo;
|
2015-11-21 13:05:03 -05:00
|
|
|
protected $chapterRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BookRepo constructor.
|
2016-02-22 16:28:20 -05:00
|
|
|
* @param PageRepo $pageRepo
|
2015-11-21 13:05:03 -05:00
|
|
|
* @param ChapterRepo $chapterRepo
|
2015-07-12 15:01:42 -04:00
|
|
|
*/
|
2016-03-05 14:00:26 -05:00
|
|
|
public function __construct(PageRepo $pageRepo, ChapterRepo $chapterRepo)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->chapterRepo = $chapterRepo;
|
2016-03-05 14:00:26 -05:00
|
|
|
parent::__construct();
|
2016-02-28 14:03:04 -05:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:26:33 -04:00
|
|
|
/**
|
|
|
|
* Get a new book instance from request input.
|
2016-04-24 11:54:20 -04:00
|
|
|
* @param array $input
|
|
|
|
* @return Book
|
|
|
|
*/
|
|
|
|
public function createFromInput($input)
|
|
|
|
{
|
|
|
|
$book = $this->book->newInstance($input);
|
2017-01-01 11:57:47 -05:00
|
|
|
$book->slug = $this->findSuitableSlug('book', $book->name);
|
2016-09-29 07:43:46 -04:00
|
|
|
$book->created_by = user()->id;
|
|
|
|
$book->updated_by = user()->id;
|
2016-04-24 11:54:20 -04:00
|
|
|
$book->save();
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->permissionService->buildJointPermissionsForEntity($book);
|
2016-04-24 11:54:20 -04:00
|
|
|
return $book;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the given book from user input.
|
|
|
|
* @param Book $book
|
2015-09-02 13:26:33 -04:00
|
|
|
* @param $input
|
|
|
|
* @return Book
|
|
|
|
*/
|
2016-04-24 11:54:20 -04:00
|
|
|
public function updateFromInput(Book $book, $input)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2016-11-12 12:16:52 -05:00
|
|
|
if ($book->name !== $input['name']) {
|
2017-01-01 11:57:47 -05:00
|
|
|
$book->slug = $this->findSuitableSlug('book', $input['name'], $book->id);
|
2016-11-12 12:16:52 -05:00
|
|
|
}
|
2016-04-24 11:54:20 -04:00
|
|
|
$book->fill($input);
|
2016-09-29 07:43:46 -04:00
|
|
|
$book->updated_by = user()->id;
|
2016-04-24 11:54:20 -04:00
|
|
|
$book->save();
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->permissionService->buildJointPermissionsForEntity($book);
|
2016-04-24 11:54:20 -04:00
|
|
|
return $book;
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
2015-11-21 12:22:14 -05:00
|
|
|
/**
|
2016-04-24 11:54:20 -04:00
|
|
|
* Destroy the given book.
|
|
|
|
* @param Book $book
|
|
|
|
* @throws \Exception
|
2015-11-21 12:22:14 -05:00
|
|
|
*/
|
2016-04-24 11:54:20 -04:00
|
|
|
public function destroy(Book $book)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-11-09 14:46:04 -05:00
|
|
|
foreach ($book->pages as $page) {
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->pageRepo->destroy($page);
|
2015-07-30 18:18:48 -04:00
|
|
|
}
|
2015-11-09 14:46:04 -05:00
|
|
|
foreach ($book->chapters as $chapter) {
|
2015-11-21 13:05:03 -05:00
|
|
|
$this->chapterRepo->destroy($chapter);
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
2015-11-21 13:05:03 -05:00
|
|
|
$book->views()->delete();
|
2016-05-01 16:20:50 -04:00
|
|
|
$book->permissions()->delete();
|
|
|
|
$this->permissionService->deleteJointPermissionsForEntity($book);
|
2015-07-12 15:01:42 -04:00
|
|
|
$book->delete();
|
|
|
|
}
|
|
|
|
|
2015-11-21 12:22:14 -05:00
|
|
|
/**
|
|
|
|
* Get the next child element priority.
|
|
|
|
* @param Book $book
|
|
|
|
* @return int
|
|
|
|
*/
|
2015-07-28 15:57:13 -04:00
|
|
|
public function getNewPriority($book)
|
2015-07-20 17:05:26 -04:00
|
|
|
{
|
2015-11-29 12:33:25 -05:00
|
|
|
$lastElem = $this->getChildren($book)->pop();
|
2015-07-28 15:57:13 -04:00
|
|
|
return $lastElem ? $lastElem->priority + 1 : 0;
|
2015-07-20 17:05:26 -04:00
|
|
|
}
|
|
|
|
|
2015-11-26 18:45:04 -05:00
|
|
|
/**
|
|
|
|
* Get all child objects of a book.
|
|
|
|
* Returns a sorted collection of Pages and Chapters.
|
2016-08-13 08:53:04 -04:00
|
|
|
* Loads the book slug onto child elements to prevent access database access for getting the slug.
|
2015-11-26 18:45:04 -05:00
|
|
|
* @param Book $book
|
2016-04-15 14:51:27 -04:00
|
|
|
* @param bool $filterDrafts
|
2015-11-26 18:45:04 -05:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2016-04-15 14:51:27 -04:00
|
|
|
public function getChildren(Book $book, $filterDrafts = false)
|
2015-11-26 18:45:04 -05:00
|
|
|
{
|
2016-02-28 14:03:04 -05:00
|
|
|
$pageQuery = $book->pages()->where('chapter_id', '=', 0);
|
2016-05-01 16:20:50 -04:00
|
|
|
$pageQuery = $this->permissionService->enforcePageRestrictions($pageQuery, 'view');
|
2016-04-15 14:51:27 -04:00
|
|
|
|
|
|
|
if ($filterDrafts) {
|
|
|
|
$pageQuery = $pageQuery->where('draft', '=', false);
|
|
|
|
}
|
|
|
|
|
2016-02-28 14:03:04 -05:00
|
|
|
$pages = $pageQuery->get();
|
|
|
|
|
2016-08-13 08:53:04 -04:00
|
|
|
$chapterQuery = $book->chapters()->with(['pages' => function ($query) use ($filterDrafts) {
|
2016-05-01 16:20:50 -04:00
|
|
|
$this->permissionService->enforcePageRestrictions($query, 'view');
|
2016-04-15 14:51:27 -04:00
|
|
|
if ($filterDrafts) $query->where('draft', '=', false);
|
2016-03-05 13:09:21 -05:00
|
|
|
}]);
|
2016-05-01 16:20:50 -04:00
|
|
|
$chapterQuery = $this->permissionService->enforceChapterRestrictions($chapterQuery, 'view');
|
2016-02-28 14:03:04 -05:00
|
|
|
$chapters = $chapterQuery->get();
|
2016-07-03 05:31:20 -04:00
|
|
|
$children = $pages->values();
|
|
|
|
foreach ($chapters as $chapter) {
|
|
|
|
$children->push($chapter);
|
|
|
|
}
|
2015-11-26 18:45:04 -05:00
|
|
|
$bookSlug = $book->slug;
|
2016-03-13 08:04:08 -04:00
|
|
|
|
2015-11-26 18:45:04 -05:00
|
|
|
$children->each(function ($child) use ($bookSlug) {
|
|
|
|
$child->setAttribute('bookSlug', $bookSlug);
|
|
|
|
if ($child->isA('chapter')) {
|
|
|
|
$child->pages->each(function ($page) use ($bookSlug) {
|
|
|
|
$page->setAttribute('bookSlug', $bookSlug);
|
|
|
|
});
|
2016-08-13 08:53:04 -04:00
|
|
|
$child->pages = $child->pages->sortBy(function ($child, $key) {
|
2016-03-13 08:04:08 -04:00
|
|
|
$score = $child->priority;
|
|
|
|
if ($child->draft) $score -= 100;
|
|
|
|
return $score;
|
|
|
|
});
|
2015-11-26 18:45:04 -05:00
|
|
|
}
|
|
|
|
});
|
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 $children->sortBy(function ($child, $key) {
|
2016-03-13 08:04:08 -04:00
|
|
|
$score = $child->priority;
|
|
|
|
if ($child->isA('page') && $child->draft) $score -= 100;
|
|
|
|
return $score;
|
|
|
|
});
|
2015-11-26 18:45:04 -05:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|