2015-07-12 16:31:15 -04:00
|
|
|
<?php namespace Oxbow\Repos;
|
|
|
|
|
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2015-07-12 16:31:15 -04:00
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use Oxbow\Page;
|
2015-08-09 07:06:52 -04:00
|
|
|
use Oxbow\PageRevision;
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
class PageRepo
|
|
|
|
{
|
|
|
|
protected $page;
|
2015-08-09 07:06:52 -04:00
|
|
|
protected $pageRevision;
|
2015-07-12 16:31:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PageRepo constructor.
|
2015-08-31 15:11:44 -04:00
|
|
|
* @param Page $page
|
2015-08-09 07:06:52 -04:00
|
|
|
* @param PageRevision $pageRevision
|
2015-07-12 16:31:15 -04:00
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
public function __construct(Page $page, PageRevision $pageRevision)
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
|
|
|
$this->page = $page;
|
2015-08-09 07:06:52 -04:00
|
|
|
$this->pageRevision = $pageRevision;
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
|
|
|
|
2015-07-30 17:27:35 -04:00
|
|
|
public function idExists($id)
|
|
|
|
{
|
|
|
|
return $this->page->where('page_id', '=', $id)->count() > 0;
|
|
|
|
}
|
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
public function getById($id)
|
|
|
|
{
|
|
|
|
return $this->page->findOrFail($id);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAll()
|
|
|
|
{
|
|
|
|
return $this->page->all();
|
|
|
|
}
|
|
|
|
|
2015-07-15 17:55:49 -04:00
|
|
|
public function getBySlug($slug, $bookId)
|
2015-07-12 16:31:15 -04:00
|
|
|
{
|
2015-07-15 17:55:49 -04:00
|
|
|
return $this->page->where('slug', '=', $slug)->where('book_id', '=', $bookId)->first();
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function newFromInput($input)
|
|
|
|
{
|
|
|
|
$page = $this->page->fill($input);
|
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function countBySlug($slug, $bookId)
|
|
|
|
{
|
|
|
|
return $this->page->where('slug', '=', $slug)->where('book_id', '=', $bookId)->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function destroyById($id)
|
|
|
|
{
|
|
|
|
$page = $this->getById($id);
|
|
|
|
$page->delete();
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:53:24 -04:00
|
|
|
public function getBySearch($term)
|
|
|
|
{
|
2015-08-31 15:11:44 -04:00
|
|
|
$terms = explode(' ', preg_quote(trim($term)));
|
|
|
|
$pages = $this->page->fullTextSearch(['name', 'text'], $terms);
|
|
|
|
|
|
|
|
// Add highlights to page text.
|
|
|
|
$words = join('|', $terms);
|
|
|
|
//lookahead/behind assertions ensures cut between words
|
|
|
|
$s = '\s\x00-/:-@\[-`{-~'; //character set for start/end of words
|
|
|
|
|
|
|
|
foreach ($pages as $page) {
|
|
|
|
preg_match_all('#(?<=[' . $s . ']).{1,30}((' . $words . ').{1,30})+(?=[' . $s . '])#uis', $page->text, $matches, PREG_SET_ORDER);
|
|
|
|
//delimiter between occurrences
|
|
|
|
$results = [];
|
|
|
|
foreach ($matches as $line) {
|
|
|
|
$results[] = htmlspecialchars($line[0], 0, 'UTF-8');
|
|
|
|
}
|
|
|
|
$matchLimit = 6;
|
|
|
|
if (count($results) > $matchLimit) {
|
|
|
|
$results = array_slice($results, 0, $matchLimit);
|
|
|
|
}
|
|
|
|
$result = join('... ', $results);
|
|
|
|
|
|
|
|
//highlight
|
|
|
|
$result = preg_replace('#' . $words . '#iu', "<span class=\"highlight\">\$0</span>", $result);
|
|
|
|
if (strlen($result) < 5) {
|
|
|
|
$result = $page->getExcerpt(80);
|
|
|
|
}
|
|
|
|
$page->searchSnippet = $result;
|
2015-07-16 14:53:24 -04:00
|
|
|
}
|
2015-08-31 15:11:44 -04:00
|
|
|
return $pages;
|
2015-07-16 14:53:24 -04:00
|
|
|
}
|
|
|
|
|
2015-08-09 07:06:52 -04:00
|
|
|
/**
|
|
|
|
* Updates a page with any fillable data and saves it into the database.
|
|
|
|
* @param Page $page
|
2015-08-31 15:11:44 -04:00
|
|
|
* @param $book_id
|
|
|
|
* @param $data
|
2015-08-09 07:06:52 -04:00
|
|
|
* @return Page
|
|
|
|
*/
|
|
|
|
public function updatePage(Page $page, $book_id, $data)
|
|
|
|
{
|
|
|
|
$page->fill($data);
|
|
|
|
$page->slug = $this->findSuitableSlug($page->name, $book_id, $page->id);
|
|
|
|
$page->text = strip_tags($page->html);
|
|
|
|
$page->updated_by = Auth::user()->id;
|
|
|
|
$page->save();
|
|
|
|
$this->saveRevision($page);
|
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Saves a page revision into the system.
|
|
|
|
* @param Page $page
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function saveRevision(Page $page)
|
|
|
|
{
|
|
|
|
$lastRevision = $this->getLastRevision($page);
|
2015-08-31 15:11:44 -04:00
|
|
|
if ($lastRevision && ($lastRevision->html === $page->html && $lastRevision->name === $page->name)) {
|
2015-08-09 07:06:52 -04:00
|
|
|
return $page;
|
|
|
|
}
|
|
|
|
$revision = $this->pageRevision->fill($page->toArray());
|
|
|
|
$revision->page_id = $page->id;
|
|
|
|
$revision->created_by = Auth::user()->id;
|
|
|
|
$revision->save();
|
|
|
|
// Clear old revisions
|
2015-08-31 15:11:44 -04:00
|
|
|
if ($this->pageRevision->where('page_id', '=', $page->id)->count() > 50) {
|
2015-08-09 07:06:52 -04:00
|
|
|
$this->pageRevision->where('page_id', '=', $page->id)
|
|
|
|
->orderBy('created_at', 'desc')->skip(50)->take(5)->delete();
|
|
|
|
}
|
|
|
|
return $revision;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the most recent revision for a page.
|
|
|
|
* @param Page $page
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getLastRevision(Page $page)
|
|
|
|
{
|
|
|
|
return $this->pageRevision->where('page_id', '=', $page->id)
|
|
|
|
->orderBy('created_at', 'desc')->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a single revision via it's id.
|
|
|
|
* @param $id
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getRevisionById($id)
|
|
|
|
{
|
|
|
|
return $this->pageRevision->findOrFail($id);
|
|
|
|
}
|
|
|
|
|
2015-07-20 17:05:26 -04:00
|
|
|
/**
|
2015-07-30 17:27:35 -04:00
|
|
|
* Checks if a slug exists within a book already.
|
2015-08-31 15:11:44 -04:00
|
|
|
* @param $slug
|
|
|
|
* @param $bookId
|
2015-07-30 17:27:35 -04:00
|
|
|
* @param bool|false $currentId
|
|
|
|
* @return bool
|
2015-07-20 17:05:26 -04:00
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function doesSlugExist($slug, $bookId, $currentId = false)
|
2015-07-20 17:05:26 -04:00
|
|
|
{
|
2015-07-30 17:27:35 -04:00
|
|
|
$query = $this->page->where('slug', '=', $slug)->where('book_id', '=', $bookId);
|
2015-08-31 15:11:44 -04:00
|
|
|
if ($currentId) {
|
2015-07-30 17:27:35 -04:00
|
|
|
$query = $query->where('id', '!=', $currentId);
|
|
|
|
}
|
|
|
|
return $query->count() > 0;
|
2015-07-21 15:13:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-07-30 17:27:35 -04:00
|
|
|
* Gets a suitable slug for the resource
|
|
|
|
*
|
2015-08-31 15:11:44 -04:00
|
|
|
* @param $name
|
|
|
|
* @param $bookId
|
2015-07-30 17:27:35 -04:00
|
|
|
* @param bool|false $currentId
|
|
|
|
* @return string
|
2015-07-21 15:13:29 -04:00
|
|
|
*/
|
2015-07-30 17:27:35 -04:00
|
|
|
public function findSuitableSlug($name, $bookId, $currentId = false)
|
2015-07-21 15:13:29 -04:00
|
|
|
{
|
2015-07-30 17:27:35 -04:00
|
|
|
$slug = Str::slug($name);
|
2015-08-31 15:11:44 -04:00
|
|
|
while ($this->doesSlugExist($slug, $bookId, $currentId)) {
|
2015-07-30 17:27:35 -04:00
|
|
|
$slug .= '-' . substr(md5(rand(1, 500)), 0, 3);
|
2015-07-21 15:13:29 -04:00
|
|
|
}
|
2015-07-30 17:27:35 -04:00
|
|
|
return $slug;
|
2015-07-20 17:05:26 -04:00
|
|
|
}
|
|
|
|
|
2015-07-30 17:27:35 -04:00
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
}
|