2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Oxbow\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
use Illuminate\Support\Str;
|
2015-07-12 15:01:42 -04:00
|
|
|
use Oxbow\Http\Requests;
|
2015-07-12 16:31:15 -04:00
|
|
|
use Oxbow\Repos\BookRepo;
|
|
|
|
use Oxbow\Repos\PageRepo;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
class PageController extends Controller
|
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
protected $pageRepo;
|
|
|
|
protected $bookRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PageController constructor.
|
|
|
|
* @param $pageRepo
|
|
|
|
* @param $bookRepo
|
|
|
|
*/
|
|
|
|
public function __construct(PageRepo $pageRepo, BookRepo $bookRepo)
|
|
|
|
{
|
|
|
|
$this->pageRepo = $pageRepo;
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-12 15:01:42 -04:00
|
|
|
/**
|
|
|
|
* Display a listing of the resource.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param $bookSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function create($bookSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
return view('pages/create', ['book' => $book]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store a newly created resource in storage.
|
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
|
|
|
* @param $bookSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function store(Request $request, $bookSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$this->validate($request, [
|
|
|
|
'name' => 'required|string|max:255',
|
|
|
|
'html' => 'required|string',
|
|
|
|
'priority' => 'integer'
|
|
|
|
]);
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page = $this->pageRepo->newFromInput($request->all());
|
|
|
|
$slug = Str::slug($page->name);
|
|
|
|
while($this->pageRepo->countBySlug($slug, $book->id) > 0) {
|
|
|
|
$slug .= '1';
|
|
|
|
}
|
|
|
|
$page->slug =$slug;
|
|
|
|
$page->book_id = $book->id;
|
|
|
|
$page->text = strip_tags($page->html);
|
|
|
|
$page->save();
|
|
|
|
return redirect($page->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the specified resource.
|
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function show($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug);
|
|
|
|
return view('pages/show', ['page' => $page]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for editing the specified resource.
|
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function edit($bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug);
|
|
|
|
return view('pages/edit', ['page' => $page]);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the specified resource in storage.
|
|
|
|
*
|
2015-07-12 16:31:15 -04:00
|
|
|
* @param Request $request
|
|
|
|
* @param $bookSlug
|
|
|
|
* @param $pageSlug
|
2015-07-12 15:01:42 -04:00
|
|
|
* @return Response
|
|
|
|
*/
|
2015-07-12 16:31:15 -04:00
|
|
|
public function update(Request $request, $bookSlug, $pageSlug)
|
2015-07-12 15:01:42 -04:00
|
|
|
{
|
2015-07-12 16:31:15 -04:00
|
|
|
$page = $this->pageRepo->getBySlug($pageSlug);
|
|
|
|
$book = $this->bookRepo->getBySlug($bookSlug);
|
|
|
|
$page->fill($request->all());
|
|
|
|
$slug = Str::slug($page->name);
|
|
|
|
while($this->pageRepo->countBySlug($slug, $book->id) > 0 && $slug != $pageSlug) {
|
|
|
|
$slug .= '1';
|
|
|
|
}
|
|
|
|
$page->text = strip_tags($page->html);
|
|
|
|
$page->save();
|
|
|
|
return redirect($page->getUrl());
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the specified resource from storage.
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function destroy($id)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|