2015-07-13 03:01:42 +08:00
|
|
|
<?php namespace Oxbow\Repos;
|
|
|
|
|
|
|
|
use Oxbow\Book;
|
|
|
|
|
|
|
|
class BookRepo
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $book;
|
2015-07-13 04:31:15 +08:00
|
|
|
protected $pageRepo;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BookRepo constructor.
|
2015-07-13 04:31:15 +08:00
|
|
|
* @param Book $book
|
|
|
|
* @param PageRepo $pageRepo
|
2015-07-13 03:01:42 +08:00
|
|
|
*/
|
2015-07-13 04:31:15 +08:00
|
|
|
public function __construct(Book $book, PageRepo $pageRepo)
|
2015-07-13 03:01:42 +08:00
|
|
|
{
|
|
|
|
$this->book = $book;
|
2015-07-13 04:31:15 +08:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getById($id)
|
|
|
|
{
|
|
|
|
return $this->book->findOrFail($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAll()
|
|
|
|
{
|
|
|
|
return $this->book->all();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getBySlug($slug)
|
|
|
|
{
|
|
|
|
return $this->book->where('slug', '=', $slug)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newFromInput($input)
|
|
|
|
{
|
|
|
|
return $this->book->fill($input);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function countBySlug($slug)
|
|
|
|
{
|
|
|
|
return $this->book->where('slug', '=', $slug)->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function destroyById($id)
|
|
|
|
{
|
|
|
|
$book = $this->getById($id);
|
2015-07-13 04:31:15 +08:00
|
|
|
foreach($book->pages as $page) {
|
|
|
|
$this->pageRepo->destroyById($page->id);
|
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
$book->delete();
|
|
|
|
}
|
|
|
|
|
2015-07-24 04:55:46 +08:00
|
|
|
public function getTree($book, $currentPageId = false)
|
2015-07-21 05:05:26 +08:00
|
|
|
{
|
|
|
|
$tree = $book->toArray();
|
2015-07-24 04:55:46 +08:00
|
|
|
$tree['pages'] = $this->pageRepo->getTreeByBookId($book->id, $currentPageId);
|
2015-07-22 03:13:29 +08:00
|
|
|
$tree['hasChildren'] = count($tree['pages']) > 0;
|
2015-07-21 05:05:26 +08:00
|
|
|
return $tree;
|
|
|
|
}
|
|
|
|
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|