BookStack/app/PageRevision.php

63 lines
1.6 KiB
PHP
Raw Normal View History

<?php namespace BookStack;
2015-08-09 11:06:52 +00:00
class PageRevision extends Model
{
2016-07-07 18:53:43 +00:00
protected $fillable = ['name', 'html', 'text', 'markdown', 'summary'];
2015-08-09 11:06:52 +00:00
/**
* Get the user that created the page revision
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2015-08-09 11:06:52 +00:00
public function createdBy()
{
return $this->belongsTo(User::class, 'created_by');
2015-08-09 11:06:52 +00:00
}
/**
* Get the page this revision originates from.
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2015-08-09 11:06:52 +00:00
public function page()
{
return $this->belongsTo(Page::class);
2015-08-09 11:06:52 +00:00
}
/**
* Get the url for this revision.
* @param null|string $path
* @return string
*/
public function getUrl($path = null)
2015-08-09 11:06:52 +00:00
{
$url = $this->page->getUrl() . '/revisions/' . $this->id;
if ($path) {
return $url . '/' . trim($path, '/');
}
return $url;
2015-08-09 11:06:52 +00:00
}
2016-07-07 17:42:21 +00:00
/**
* Get the previous revision for the same page if existing
* @return \BookStack\PageRevision|null
2016-07-07 17:42:21 +00:00
*/
public function getPrevious()
{
if ($id = static::where('page_id', '=', $this->page_id)->where('id', '<', $this->id)->max('id')) {
return static::find($id);
2016-07-07 17:42:21 +00:00
}
return null;
2016-07-07 17:42:21 +00:00
}
/**
* Allows checking of the exact class, Used to check entity type.
* Included here to align with entities in similar use cases.
* (Yup, Bit of an awkward hack)
* @param $type
* @return bool
*/
public static function isA($type)
{
return $type === 'revision';
}
2015-08-09 11:06:52 +00:00
}