BookStack/app/Repos/BookRepo.php

199 lines
4.6 KiB
PHP
Raw Normal View History

<?php namespace BookStack\Repos;
2015-07-12 19:01:42 +00:00
use Activity;
use Illuminate\Support\Str;
use BookStack\Book;
use Views;
2015-07-12 19:01:42 +00:00
class BookRepo
{
protected $book;
2015-07-12 20:31:15 +00:00
protected $pageRepo;
protected $chapterRepo;
2015-07-12 19:01:42 +00:00
/**
* BookRepo constructor.
* @param Book $book
* @param PageRepo $pageRepo
* @param ChapterRepo $chapterRepo
2015-07-12 19:01:42 +00:00
*/
public function __construct(Book $book, PageRepo $pageRepo, ChapterRepo $chapterRepo)
2015-07-12 19:01:42 +00:00
{
$this->book = $book;
2015-07-12 20:31:15 +00:00
$this->pageRepo = $pageRepo;
$this->chapterRepo = $chapterRepo;
2015-07-12 19:01:42 +00:00
}
/**
* Get the book that has the given id.
* @param $id
* @return mixed
*/
2015-07-12 19:01:42 +00:00
public function getById($id)
{
return $this->book->findOrFail($id);
}
/**
* Get all books, Limited by count.
* @param int $count
* @return mixed
*/
public function getAll($count = 10)
2015-07-12 19:01:42 +00:00
{
return $this->book->orderBy('name', 'asc')->take($count)->get();
2015-07-12 19:01:42 +00:00
}
2015-11-09 19:46:04 +00:00
/**
* Get all books paginated.
2015-11-09 19:46:04 +00:00
* @param int $count
* @return mixed
*/
public function getAllPaginated($count = 10)
{
return $this->book->orderBy('name', 'asc')->paginate($count);
}
/**
* Get the latest books.
* @param int $count
* @return mixed
*/
public function getLatest($count = 10)
{
return $this->book->orderBy('created_at', 'desc')->take($count)->get();
}
/**
* Gets the most recently viewed for a user.
* @param int $count
* @param int $page
* @return mixed
*/
public function getRecentlyViewed($count = 10, $page = 0)
{
return Views::getUserRecentlyViewed($count, $page, $this->book);
}
/**
* Get a book by slug
* @param $slug
* @return mixed
*/
2015-07-12 19:01:42 +00:00
public function getBySlug($slug)
{
return $this->book->where('slug', '=', $slug)->first();
}
2015-09-06 13:35:53 +00:00
/**
* Checks if a book exists.
* @param $id
* @return bool
*/
public function exists($id)
{
return $this->book->where('id', '=', $id)->exists();
}
/**
* Get a new book instance from request input.
* @param $input
* @return Book
*/
2015-07-12 19:01:42 +00:00
public function newFromInput($input)
{
return $this->book->fill($input);
}
/**
* Count the amount of books that have a specific slug.
* @param $slug
* @return mixed
*/
2015-07-12 19:01:42 +00:00
public function countBySlug($slug)
{
return $this->book->where('slug', '=', $slug)->count();
}
/**
* Destroy a book identified by the given slug.
* @param $bookSlug
*/
public function destroyBySlug($bookSlug)
2015-07-12 19:01:42 +00:00
{
$book = $this->getBySlug($bookSlug);
2015-11-09 19:46:04 +00:00
foreach ($book->pages as $page) {
$this->pageRepo->destroy($page);
2015-07-30 22:18:48 +00:00
}
2015-11-09 19:46:04 +00:00
foreach ($book->chapters as $chapter) {
$this->chapterRepo->destroy($chapter);
2015-07-12 20:31:15 +00:00
}
$book->views()->delete();
2015-07-12 19:01:42 +00:00
$book->delete();
}
/**
* Get the next child element priority.
* @param Book $book
* @return int
*/
public function getNewPriority($book)
2015-07-20 21:05:26 +00:00
{
$lastElem = $book->children()->pop();
return $lastElem ? $lastElem->priority + 1 : 0;
2015-07-20 21:05:26 +00:00
}
/**
* @param string $slug
* @param bool|false $currentId
* @return bool
*/
public function doesSlugExist($slug, $currentId = false)
{
$query = $this->book->where('slug', '=', $slug);
2015-11-09 19:46:04 +00:00
if ($currentId) {
$query = $query->where('id', '!=', $currentId);
}
return $query->count() > 0;
}
/**
* Provides a suitable slug for the given book name.
* Ensures the returned slug is unique in the system.
* @param string $name
* @param bool|false $currentId
* @return string
*/
public function findSuitableSlug($name, $currentId = false)
{
2015-09-29 20:25:03 +00:00
$originalSlug = Str::slug($name);
$slug = $originalSlug;
$count = 2;
2015-11-09 19:46:04 +00:00
while ($this->doesSlugExist($slug, $currentId)) {
2015-09-29 20:25:03 +00:00
$slug = $originalSlug . '-' . $count;
$count++;
}
return $slug;
}
/**
* Get books by search term.
* @param $term
* @return mixed
*/
public function getBySearch($term)
{
$terms = explode(' ', preg_quote(trim($term)));
$books = $this->book->fullTextSearch(['name', 'description'], $terms);
$words = join('|', $terms);
foreach ($books as $book) {
//highlight
$result = preg_replace('#' . $words . '#iu', "<span class=\"highlight\">\$0</span>", $book->getExcerpt(100));
$book->searchSnippet = $result;
}
return $books;
}
2015-07-12 19:01:42 +00:00
}