mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-01-24 03:27:48 +08:00
26 lines
635 B
PHP
26 lines
635 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Util\CrossLinking\ModelResolvers;
|
||
|
|
||
|
use BookStack\Entities\Models\Book;
|
||
|
use BookStack\Model;
|
||
|
|
||
|
class BookLinkModelResolver implements CrossLinkModelResolver
|
||
|
{
|
||
|
public function resolve(string $link): ?Model
|
||
|
{
|
||
|
$pattern = '/^' . preg_quote(url('/books'), '/') . '\/([\w-]+)' . '[#?\/$]/';
|
||
|
$matches = [];
|
||
|
$match = preg_match($pattern, $link, $matches);
|
||
|
if (!$match) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
$bookSlug = $matches[1];
|
||
|
|
||
|
/** @var ?Book $model */
|
||
|
$model = Book::query()->where('slug', '=', $bookSlug)->first();
|
||
|
|
||
|
return $model;
|
||
|
}
|
||
|
}
|