mirror of https://github.com/kcal-app/kcal.git
				
				
				
			
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\JsonApi\Adapters;
 | |
| 
 | |
| use App\Models\Recipe;
 | |
| use CloudCreativity\LaravelJsonApi\Eloquent\HasMany;
 | |
| use CloudCreativity\LaravelJsonApi\Eloquent\MorphHasMany;
 | |
| use CloudCreativity\LaravelJsonApi\Pagination\StandardStrategy;
 | |
| use Illuminate\Support\Collection;
 | |
| 
 | |
| class RecipeAdapter extends AdapterBase
 | |
| {
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected $attributes = [];
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected $filterScopes = [
 | |
|         'tags' => 'withAllTags',
 | |
|         'tags.all' => 'withAllTags',
 | |
|         'tags.any' => 'withAnyTags',
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected $defaultSort = ['name'];
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function __construct(StandardStrategy $paging)
 | |
|     {
 | |
|         parent::__construct(new Recipe(), $paging);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     protected function filter($query, Collection $filters)
 | |
|     {
 | |
|         $this->filterWithScopes($query, $filters->except('search'));
 | |
|         if ($term = $filters->get('search')) {
 | |
|             $query->where(function ($query) use ($term) {
 | |
|                 $query->where('recipes.name', 'like', "%{$term}%")
 | |
|                 ->orWhere('recipes.description', 'like', "%{$term}%")
 | |
|                 ->orWhere('recipes.source', 'like', "%{$term}%");
 | |
|             });
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     protected function ingredientAmounts(): MorphHasMany
 | |
|     {
 | |
|         return $this->morphMany($this->hasMany('ingredientAmounts'));
 | |
|     }
 | |
| 
 | |
|     protected function media(): MorphHasMany
 | |
|     {
 | |
|         return $this->morphMany($this->hasMany('media'));
 | |
|     }
 | |
| 
 | |
|     protected function separators(): HasMany
 | |
|     {
 | |
|         return $this->hasMany();
 | |
|     }
 | |
| 
 | |
|     protected function steps(): HasMany
 | |
|     {
 | |
|         return $this->hasMany();
 | |
|     }
 | |
| 
 | |
|     protected function tags(): HasMany
 | |
|     {
 | |
|         return $this->hasMany();
 | |
|     }
 | |
| 
 | |
| }
 |