mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
27 lines
696 B
PHP
27 lines
696 B
PHP
|
<?php
|
||
|
|
||
|
namespace BookStack\Util\CrossLinking\ModelResolvers;
|
||
|
|
||
|
use BookStack\Entities\Models\Page;
|
||
|
use BookStack\Model;
|
||
|
|
||
|
class PageLinkModelResolver implements CrossLinkModelResolver
|
||
|
{
|
||
|
public function resolve(string $link): ?Model
|
||
|
{
|
||
|
$pattern = '/^' . preg_quote(url('/books'), '/') . '\/([\w-]+)' . '\/page\/' . '([\w-]+)' . '[#?\/$]/';
|
||
|
$matches = [];
|
||
|
$match = preg_match($pattern, $link, $matches);
|
||
|
if (!$match) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
$bookSlug = $matches[1];
|
||
|
$pageSlug = $matches[2];
|
||
|
|
||
|
/** @var ?Page $model */
|
||
|
$model = Page::query()->whereSlugs($bookSlug, $pageSlug)->first();
|
||
|
|
||
|
return $model;
|
||
|
}
|
||
|
}
|