mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-22 07:12:36 +00:00
32 lines
810 B
PHP
32 lines
810 B
PHP
<?php
|
|
|
|
namespace BookStack\References\ModelResolvers;
|
|
|
|
use BookStack\App\Model;
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
use BookStack\Entities\Queries\BookshelfQueries;
|
|
|
|
class BookshelfLinkModelResolver implements CrossLinkModelResolver
|
|
{
|
|
public function __construct(
|
|
protected BookshelfQueries $queries
|
|
) {
|
|
}
|
|
public function resolve(string $link): ?Model
|
|
{
|
|
$pattern = '/^' . preg_quote(url('/shelves'), '/') . '\/([\w-]+)' . '([#?\/]|$)/';
|
|
$matches = [];
|
|
$match = preg_match($pattern, $link, $matches);
|
|
if (!$match) {
|
|
return null;
|
|
}
|
|
|
|
$shelfSlug = $matches[1];
|
|
|
|
/** @var ?Bookshelf $model */
|
|
$model = $this->queries->start()->where('slug', '=', $shelfSlug)->first(['id']);
|
|
|
|
return $model;
|
|
}
|
|
}
|