2015-07-12 21:01:42 +02:00
|
|
|
<?php namespace Oxbow\Repos;
|
|
|
|
|
|
|
|
use Oxbow\Book;
|
|
|
|
|
|
|
|
class BookRepo
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $book;
|
2015-07-12 22:31:15 +02:00
|
|
|
protected $pageRepo;
|
2015-07-12 21:01:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* BookRepo constructor.
|
2015-07-12 22:31:15 +02:00
|
|
|
* @param Book $book
|
|
|
|
* @param PageRepo $pageRepo
|
2015-07-12 21:01:42 +02:00
|
|
|
*/
|
2015-07-12 22:31:15 +02:00
|
|
|
public function __construct(Book $book, PageRepo $pageRepo)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
|
|
|
$this->book = $book;
|
2015-07-12 22:31:15 +02:00
|
|
|
$this->pageRepo = $pageRepo;
|
2015-07-12 21:01:42 +02: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();
|
|
|
|
}
|
|
|
|
|
2015-07-28 21:57:13 +02:00
|
|
|
public function destroyBySlug($bookSlug)
|
2015-07-12 21:01:42 +02:00
|
|
|
{
|
2015-07-28 21:57:13 +02:00
|
|
|
$book = $this->getBySlug($bookSlug);
|
|
|
|
foreach($book->children() as $child) {
|
|
|
|
$child->delete();
|
2015-07-12 22:31:15 +02:00
|
|
|
}
|
2015-07-12 21:01:42 +02:00
|
|
|
$book->delete();
|
|
|
|
}
|
|
|
|
|
2015-07-28 21:57:13 +02:00
|
|
|
public function getNewPriority($book)
|
2015-07-20 23:05:26 +02:00
|
|
|
{
|
2015-07-28 21:57:13 +02:00
|
|
|
$lastElem = $book->children()->pop();
|
|
|
|
return $lastElem ? $lastElem->priority + 1 : 0;
|
2015-07-20 23:05:26 +02:00
|
|
|
}
|
|
|
|
|
2015-07-12 21:01:42 +02:00
|
|
|
}
|