2016-03-09 23:32:07 +01:00
|
|
|
<?php namespace BookStack;
|
2015-08-09 13:06:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PageRevision extends Model
|
|
|
|
{
|
2016-07-07 20:53:43 +02:00
|
|
|
protected $fillable = ['name', 'html', 'text', 'markdown', 'summary'];
|
2015-08-09 13:06:52 +02:00
|
|
|
|
2016-03-09 23:32:07 +01:00
|
|
|
/**
|
|
|
|
* Get the user that created the page revision
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-08-09 13:06:52 +02:00
|
|
|
public function createdBy()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->belongsTo(User::class, 'created_by');
|
2015-08-09 13:06:52 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:32:07 +01:00
|
|
|
/**
|
|
|
|
* Get the page this revision originates from.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
2015-08-09 13:06:52 +02:00
|
|
|
public function page()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->belongsTo(Page::class);
|
2015-08-09 13:06:52 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 23:32:07 +01:00
|
|
|
/**
|
|
|
|
* Get the url for this revision.
|
2016-09-29 11:10:46 +02:00
|
|
|
* @param null|string $path
|
2016-03-09 23:32:07 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-09-29 11:10:46 +02:00
|
|
|
public function getUrl($path = null)
|
2015-08-09 13:06:52 +02:00
|
|
|
{
|
2016-09-29 11:10:46 +02:00
|
|
|
$url = $this->page->getUrl() . '/revisions/' . $this->id;
|
|
|
|
if ($path) return $url . '/' . trim($path, '/');
|
|
|
|
return $url;
|
2015-08-09 13:06:52 +02:00
|
|
|
}
|
|
|
|
|
2016-07-07 19:42:21 +02:00
|
|
|
/**
|
2016-09-29 11:10:46 +02:00
|
|
|
* Get the previous revision for the same page if existing
|
|
|
|
* @return \BookStack\PageRevision|null
|
2016-07-07 19:42:21 +02:00
|
|
|
*/
|
|
|
|
public function getPrevious()
|
|
|
|
{
|
2016-09-29 11:10:46 +02:00
|
|
|
if ($id = static::where('page_id', '=', $this->page_id)->where('id', '<', $this->id)->max('id')) {
|
|
|
|
return static::find($id);
|
2016-07-07 19:42:21 +02:00
|
|
|
}
|
2016-09-29 11:10:46 +02:00
|
|
|
return null;
|
2016-07-07 19:42:21 +02:00
|
|
|
}
|
|
|
|
|
2015-08-09 13:06:52 +02:00
|
|
|
}
|