2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Models;
|
2018-09-25 07:30:50 -04:00
|
|
|
|
|
|
|
use BookStack\Auth\User;
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Model;
|
2019-10-05 07:55:01 -04:00
|
|
|
use Carbon\Carbon;
|
2021-10-04 15:26:55 -04:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2015-08-09 07:06:52 -04:00
|
|
|
|
2019-10-05 07:55:01 -04:00
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Class PageRevision.
|
|
|
|
*
|
|
|
|
* @property int $page_id
|
2019-10-05 07:55:01 -04:00
|
|
|
* @property string $slug
|
|
|
|
* @property string $book_slug
|
2021-06-26 11:23:15 -04:00
|
|
|
* @property int $created_by
|
2019-10-05 07:55:01 -04:00
|
|
|
* @property Carbon $created_at
|
2021-10-04 15:26:55 -04:00
|
|
|
* @property Carbon $updated_at
|
2019-10-05 07:55:01 -04:00
|
|
|
* @property string $type
|
|
|
|
* @property string $summary
|
|
|
|
* @property string $markdown
|
|
|
|
* @property string $html
|
2021-06-26 11:23:15 -04:00
|
|
|
* @property int $revision_number
|
2021-10-04 15:26:55 -04:00
|
|
|
* @property Page $page
|
2021-11-05 20:32:01 -04:00
|
|
|
* @property-read ?User $createdBy
|
2019-10-05 07:55:01 -04:00
|
|
|
*/
|
2015-08-09 07:06:52 -04:00
|
|
|
class PageRevision extends Model
|
|
|
|
{
|
2016-07-07 14:53:43 -04:00
|
|
|
protected $fillable = ['name', 'html', 'text', 'markdown', 'summary'];
|
2015-08-09 07:06:52 -04:00
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Get the user that created the page revision.
|
2016-03-09 17:32:07 -05:00
|
|
|
*/
|
2021-10-04 15:26:55 -04:00
|
|
|
public function createdBy(): BelongsTo
|
2015-08-09 07:06:52 -04:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(User::class, 'created_by');
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Get the page this revision originates from.
|
|
|
|
*/
|
2021-10-04 15:26:55 -04:00
|
|
|
public function page(): BelongsTo
|
2015-08-09 07:06:52 -04:00
|
|
|
{
|
2016-05-01 16:20:50 -04:00
|
|
|
return $this->belongsTo(Page::class);
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-03-09 17:32:07 -05:00
|
|
|
/**
|
|
|
|
* Get the url for this revision.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2016-09-29 05:10:46 -04:00
|
|
|
* @param null|string $path
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2016-03-09 17:32:07 -05:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-09-29 05:10:46 -04:00
|
|
|
public function getUrl($path = null)
|
2015-08-09 07:06:52 -04:00
|
|
|
{
|
2016-09-29 05:10:46 -04:00
|
|
|
$url = $this->page->getUrl() . '/revisions/' . $this->id;
|
2018-01-28 11:58:52 -05:00
|
|
|
if ($path) {
|
|
|
|
return $url . '/' . trim($path, '/');
|
|
|
|
}
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2016-09-29 05:10:46 -04:00
|
|
|
return $url;
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|
|
|
|
|
2016-07-07 13:42:21 -04:00
|
|
|
/**
|
2021-06-26 11:23:15 -04:00
|
|
|
* Get the previous revision for the same page if existing.
|
2016-07-07 13:42:21 -04:00
|
|
|
*/
|
2021-11-22 18:33:55 -05:00
|
|
|
public function getPrevious(): ?PageRevision
|
2016-07-07 13:42:21 -04:00
|
|
|
{
|
2019-10-05 07:55:01 -04:00
|
|
|
$id = static::newQuery()->where('page_id', '=', $this->page_id)
|
|
|
|
->where('id', '<', $this->id)
|
|
|
|
->max('id');
|
|
|
|
|
|
|
|
if ($id) {
|
|
|
|
return static::query()->find($id);
|
2016-07-07 13:42:21 -04:00
|
|
|
}
|
2019-10-05 07:55:01 -04:00
|
|
|
|
2016-09-29 05:10:46 -04:00
|
|
|
return null;
|
2016-07-07 13:42:21 -04:00
|
|
|
}
|
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
/**
|
|
|
|
* Allows checking of the exact class, Used to check entity type.
|
|
|
|
* Included here to align with entities in similar use cases.
|
2021-06-26 11:23:15 -04:00
|
|
|
* (Yup, Bit of an awkward hack).
|
|
|
|
*
|
2021-11-20 09:03:56 -05:00
|
|
|
* @deprecated Use instanceof instead.
|
2017-08-26 10:41:33 -04:00
|
|
|
*/
|
2021-11-20 09:03:56 -05:00
|
|
|
public static function isA(string $type): bool
|
2017-08-26 10:41:33 -04:00
|
|
|
{
|
|
|
|
return $type === 'revision';
|
|
|
|
}
|
2015-08-09 07:06:52 -04:00
|
|
|
}
|