2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Entities\Models;
|
2019-09-20 07:18:28 +08:00
|
|
|
|
2022-08-22 01:05:19 +08:00
|
|
|
use BookStack\References\ReferenceUpdater;
|
2019-10-05 19:55:01 +08:00
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
2019-09-20 07:18:28 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
|
|
|
|
/**
|
2021-06-26 23:23:15 +08:00
|
|
|
* Class BookChild.
|
|
|
|
*
|
2021-08-25 04:23:55 +08:00
|
|
|
* @property int $book_id
|
|
|
|
* @property int $priority
|
|
|
|
* @property string $book_slug
|
|
|
|
* @property Book $book
|
2019-09-20 07:18:28 +08:00
|
|
|
*/
|
2020-11-22 07:20:54 +08:00
|
|
|
abstract class BookChild extends Entity
|
2019-09-20 07:18:28 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the book this page sits in.
|
|
|
|
*/
|
|
|
|
public function book(): BelongsTo
|
|
|
|
{
|
2021-01-04 06:29:58 +08:00
|
|
|
return $this->belongsTo(Book::class)->withTrashed();
|
2019-09-20 07:18:28 +08:00
|
|
|
}
|
|
|
|
|
2019-10-05 19:55:01 +08:00
|
|
|
/**
|
|
|
|
* Change the book that this entity belongs to.
|
|
|
|
*/
|
|
|
|
public function changeBook(int $newBookId): Entity
|
|
|
|
{
|
2022-08-22 01:05:19 +08:00
|
|
|
$oldUrl = $this->getUrl();
|
2019-10-05 19:55:01 +08:00
|
|
|
$this->book_id = $newBookId;
|
|
|
|
$this->refreshSlug();
|
|
|
|
$this->save();
|
2022-08-31 05:12:52 +08:00
|
|
|
$this->refresh();
|
2022-08-22 01:05:19 +08:00
|
|
|
|
|
|
|
if ($oldUrl !== $this->getUrl()) {
|
2023-12-19 02:12:36 +08:00
|
|
|
app()->make(ReferenceUpdater::class)->updateEntityReferences($this, $oldUrl);
|
2022-08-22 01:05:19 +08:00
|
|
|
}
|
|
|
|
|
2019-10-05 19:55:01 +08:00
|
|
|
// Update all child pages if a chapter
|
|
|
|
if ($this instanceof Chapter) {
|
2021-03-13 23:18:37 +08:00
|
|
|
foreach ($this->pages()->withTrashed()->get() as $page) {
|
2019-10-05 19:55:01 +08:00
|
|
|
$page->changeBook($newBookId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|