mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			661 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			661 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace BookStack\References\ModelResolvers;
 | |
| 
 | |
| use BookStack\Entities\Models\Bookshelf;
 | |
| use BookStack\Model;
 | |
| 
 | |
| class BookshelfLinkModelResolver implements CrossLinkModelResolver
 | |
| {
 | |
|     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 = Bookshelf::query()->where('slug', '=', $shelfSlug)->first(['id']);
 | |
| 
 | |
|         return $model;
 | |
|     }
 | |
| }
 |