BookStack/app/Book.php

98 lines
2.6 KiB
PHP
Raw Normal View History

<?php namespace BookStack;
2015-07-12 19:01:42 +00:00
class Book extends Entity
2015-07-12 19:01:42 +00:00
{
public $searchFactor = 2;
2015-07-12 19:01:42 +00:00
2017-09-04 14:57:52 +00:00
protected $fillable = ['name', 'description', 'image_id'];
2015-07-12 19:01:42 +00:00
/**
* Get the url for this book.
* @param string|bool $path
* @return string
*/
public function getUrl($path = false)
2015-07-12 19:01:42 +00:00
{
if ($path !== false) {
return baseUrl('/books/' . urlencode($this->slug) . '/' . trim($path, '/'));
}
return baseUrl('/books/' . urlencode($this->slug));
2015-07-12 19:01:42 +00:00
}
2017-09-04 14:57:52 +00:00
/**
* Returns book cover image, if book cover not exists return default cover image.
* @param int $width - Width of the image
* @param int $height - Height of the image
* @return string
2017-09-04 14:57:52 +00:00
*/
public function getBookCover($width = 440, $height = 250)
{
2017-09-04 14:57:52 +00:00
$default = baseUrl('/book_default_cover.png');
if (!$this->image_id) {
return $default;
}
try {
2017-09-04 14:57:52 +00:00
$cover = $this->cover ? baseUrl($this->cover->getThumb($width, $height, false)) : $default;
} catch (\Exception $err) {
$cover = $default;
}
return $cover;
}
2017-09-04 14:57:52 +00:00
/**
* Get the cover image of the book
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2017-07-07 11:36:08 +00:00
public function cover()
{
2017-09-04 14:57:52 +00:00
return $this->belongsTo(Image::class, 'image_id');
}
/*
* Get the edit url for this book.
* @return string
*/
2015-07-12 19:01:42 +00:00
public function getEditUrl()
{
return $this->getUrl() . '/edit';
}
/**
* Get all pages within this book.
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
2015-07-12 20:31:15 +00:00
public function pages()
{
return $this->hasMany(Page::class);
2015-07-12 20:31:15 +00:00
}
/**
* Get all chapters within this book.
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
2015-07-27 19:17:08 +00:00
public function chapters()
{
return $this->hasMany(Chapter::class);
2015-07-27 19:17:08 +00:00
}
/**
* Get an excerpt of this book's description to the specified length or less.
* @param int $length
* @return string
*/
public function getExcerpt($length = 100)
{
$description = $this->description;
return strlen($description) > $length ? substr($description, 0, $length-3) . '...' : $description;
}
/**
* Return a generalised, common raw query that can be 'unioned' across entities.
* @return string
*/
public function entityRawQuery()
{
return "'BookStack\\\\Book' as entity_type, id, id as entity_id, slug, name, {$this->textField} as text,'' as html, '0' as book_id, '0' as priority, '0' as chapter_id, '0' as draft, created_by, updated_by, updated_at, created_at";
}
2015-07-12 19:01:42 +00:00
}