-
-
Notifications
You must be signed in to change notification settings - Fork 31
Morph relationships #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
9a33c6c
:sparkles: HasOneThrough + HasManyThrough relation support
GautierDele c5b63a7
:construction: search morph relationships
GautierDele f4e90f9
:construction: search morphs relations
GautierDele bb18487
:construction: morphs supports
GautierDele 67d355f
:ambulance: debug database drivers
GautierDele 1a9f329
:bug: getQualifiedMorphType on creation
GautierDele db9a108
:bug: no order by in pgsql versions
GautierDele 1e8644e
:sparkles: has one of many support
GautierDele f731fde
:recycle: refactored multiple results relations
GautierDele 1dab842
:sparkles: mutate with pivot possibilities
GautierDele 2b1e5c8
:bug: postgres ordering
GautierDele 1f0bae3
:recycle: refactored pivot fields to match attributes field
GautierDele 5ffbb58
:recycle: type changed to resource from model
GautierDele ba7f3ed
✅ assert soft deleted tests
GautierDele 76dda4b
:sparkles: specify table on sorts
GautierDele ec25bd8
:sparkles: test custom rules
GautierDele e1516ff
:mute: removed TODO
GautierDele File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <?php | ||
|
|
||
| namespace Lomkit\Rest\Relations; | ||
|
|
||
| use Closure; | ||
| use Illuminate\Database\Eloquent\Builder; | ||
| use Illuminate\Database\Eloquent\Model; | ||
| use Lomkit\Rest\Contracts\QueryBuilder; | ||
| use Lomkit\Rest\Contracts\RelationResource; | ||
| use Lomkit\Rest\Http\Resource; | ||
|
|
||
| class HasManyThrough extends Relation implements RelationResource | ||
| { | ||
| public function afterMutating(Model $model, Relation $relation, array $mutationRelations) | ||
| { | ||
| throw new \RuntimeException('You can\'t mutate a \'HasManyThrough\' relation.'); | ||
| } | ||
|
|
||
| public function rules(Resource $resource) | ||
| { | ||
| return [ | ||
| 'prohibited' | ||
| ]; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <?php | ||
|
|
||
| namespace Lomkit\Rest\Relations; | ||
|
|
||
| use Closure; | ||
| use Illuminate\Database\Eloquent\Builder; | ||
| use Illuminate\Database\Eloquent\Model; | ||
| use Lomkit\Rest\Contracts\QueryBuilder; | ||
| use Lomkit\Rest\Contracts\RelationResource; | ||
| use Lomkit\Rest\Http\Resource; | ||
|
|
||
| class HasOneThrough extends Relation implements RelationResource | ||
| { | ||
| public function afterMutating(Model $model, Relation $relation, array $mutationRelations) | ||
| { | ||
| throw new \RuntimeException('You can\'t mutate a \'HasOneThrough\' relation.'); | ||
| } | ||
|
|
||
| public function rules(Resource $resource) | ||
| { | ||
| return [ | ||
| 'prohibited' | ||
| ]; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?php | ||
|
|
||
| namespace Lomkit\Rest\Relations; | ||
|
|
||
| use Closure; | ||
| use Illuminate\Database\Eloquent\Builder; | ||
| use Lomkit\Rest\Contracts\RelationResource; | ||
|
|
||
| class MorphMany extends MorphRelation implements RelationResource | ||
| { | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?php | ||
|
|
||
| namespace Lomkit\Rest\Relations; | ||
|
|
||
| use Closure; | ||
| use Illuminate\Database\Eloquent\Builder; | ||
| use Lomkit\Rest\Contracts\RelationResource; | ||
|
|
||
| class MorphOne extends MorphRelation implements RelationResource | ||
| { | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?php | ||
|
|
||
| namespace Lomkit\Rest\Relations; | ||
|
|
||
| use Closure; | ||
| use Illuminate\Database\Eloquent\Builder; | ||
| use Lomkit\Rest\Contracts\RelationResource; | ||
|
|
||
| class MorphOneOfMany extends MorphRelation implements RelationResource | ||
| { | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.