2022-08-16 20:23:53 +08:00
|
|
|
<?php
|
|
|
|
|
2022-08-17 21:39:53 +08:00
|
|
|
namespace BookStack\References\ModelResolvers;
|
2022-08-16 20:23:53 +08:00
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\App\Model;
|
2022-08-16 20:23:53 +08:00
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
2024-02-08 00:37:36 +08:00
|
|
|
use BookStack\Entities\Queries\BookshelfQueries;
|
2022-08-16 20:23:53 +08:00
|
|
|
|
|
|
|
class BookshelfLinkModelResolver implements CrossLinkModelResolver
|
|
|
|
{
|
2024-02-08 00:37:36 +08:00
|
|
|
public function __construct(
|
|
|
|
protected BookshelfQueries $queries
|
|
|
|
) {
|
|
|
|
}
|
2022-08-16 20:23:53 +08:00
|
|
|
public function resolve(string $link): ?Model
|
|
|
|
{
|
2022-08-17 21:39:53 +08:00
|
|
|
$pattern = '/^' . preg_quote(url('/shelves'), '/') . '\/([\w-]+)' . '([#?\/]|$)/';
|
2022-08-16 20:23:53 +08:00
|
|
|
$matches = [];
|
|
|
|
$match = preg_match($pattern, $link, $matches);
|
|
|
|
if (!$match) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$shelfSlug = $matches[1];
|
|
|
|
|
|
|
|
/** @var ?Bookshelf $model */
|
2024-02-08 00:37:36 +08:00
|
|
|
$model = $this->queries->start()->where('slug', '=', $shelfSlug)->first(['id']);
|
2022-08-16 20:23:53 +08:00
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
2022-08-30 00:46:41 +08:00
|
|
|
}
|