Skip to content

Commit 53fc76b

Browse files
committed
Merge branch 'release/2.1.0'
2 parents 9f149a1 + 229ca23 commit 53fc76b

9 files changed

+79
-13
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## [2.1.0] - 2022-02-20
7+
8+
### Added
9+
10+
- [#110](https://github.com/laravel-json-api/laravel/issues/110) For requests that modify a relationship, it is now
11+
possible to get the model or models referenced in the request JSON using the `toOne()` or `toMany()` methods on the
12+
resource request class.
13+
- [#113](https://github.com/laravel-json-api/laravel/issues/113) The Eloquent `Number` field can now be configured to
14+
accept numeric strings by calling the `acceptStrings()` method on the field.
15+
616
## [2.0.0] - 2022-02-09
717

818
### Added

composer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,15 @@
2525
"require": {
2626
"php": "^7.4|^8.0",
2727
"ext-json": "*",
28-
"laravel-json-api/core": "^2.0",
29-
"laravel-json-api/eloquent": "^2.0",
28+
"laravel-json-api/core": "^2.1",
29+
"laravel-json-api/eloquent": "^2.1",
3030
"laravel-json-api/encoder-neomerx": "^2.0",
3131
"laravel-json-api/exceptions": "^1.1",
3232
"laravel-json-api/spec": "^1.1",
3333
"laravel-json-api/validation": "^2.0",
3434
"laravel/framework": "^8.76|^9.0"
3535
},
3636
"require-dev": {
37-
"cloudcreativity/json-api-testing": "^4.0",
3837
"laravel-json-api/testing": "^1.1",
3938
"orchestra/testbench": "^6.23|^7.0",
4039
"phpunit/phpunit": "^9.5.10"

src/Http/Requests/ResourceRequest.php

+57
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@
2323
use Illuminate\Contracts\Validation\Validator;
2424
use Illuminate\Database\Eloquent\Model;
2525
use Illuminate\Http\Response;
26+
use Illuminate\Support\Collection;
2627
use LaravelJsonApi\Contracts\Auth\Authorizer;
2728
use LaravelJsonApi\Contracts\Schema\Relation;
2829
use LaravelJsonApi\Core\Document\ResourceObject;
2930
use LaravelJsonApi\Core\Exceptions\JsonApiException;
3031
use LaravelJsonApi\Core\Query\IncludePaths;
32+
use LaravelJsonApi\Core\Store\LazyRelation;
3133
use LaravelJsonApi\Core\Support\Str;
3234
use LaravelJsonApi\Spec\RelationBuilder;
3335
use LaravelJsonApi\Spec\ResourceBuilder;
@@ -49,6 +51,11 @@ class ResourceRequest extends FormRequest
4951
*/
5052
private ?array $validationData = null;
5153

54+
/**
55+
* @var LazyRelation|null
56+
*/
57+
private ?LazyRelation $relation = null;
58+
5259
/**
5360
* Specify the callback to use to guess the request class for a JSON API resource.
5461
*
@@ -116,6 +123,38 @@ public function modelOrFail(): object
116123
throw new LogicException('No model exists for this route.');
117124
}
118125

126+
/**
127+
* Get the model referenced in a to-one relationship.
128+
*
129+
* @return Model|object|null
130+
*/
131+
public function toOne(): ?object
132+
{
133+
if ($this->isModifyingRelationship()) {
134+
return $this->relation()->get();
135+
}
136+
137+
throw new LogicException(
138+
'Can only retrieve the model for a to-one relationship when the relationship is being modified.'
139+
);
140+
}
141+
142+
/**
143+
* Get the models referenced in a to-many relationship.
144+
*
145+
* @return Collection
146+
*/
147+
public function toMany(): Collection
148+
{
149+
if ($this->isModifyingRelationship()) {
150+
return $this->relation()->collect();
151+
}
152+
153+
throw new LogicException(
154+
'Can only retrieve the models for a to-many relationship when the relationship is being modified.'
155+
);
156+
}
157+
119158
/**
120159
* Perform resource authorization.
121160
*
@@ -557,4 +596,22 @@ private function validateRelationshipDocument(): void
557596
}
558597
}
559598

599+
/**
600+
* @return LazyRelation
601+
*/
602+
private function relation(): LazyRelation
603+
{
604+
if ($this->relation) {
605+
return $this->relation;
606+
}
607+
608+
$jsonApi = $this->jsonApi();
609+
610+
return $this->relation = new LazyRelation(
611+
$jsonApi->server(),
612+
$jsonApi->route()->relation(),
613+
$this->json()->all(),
614+
);
615+
}
616+
560617
}

tests/dummy/database/factories/CommentFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class CommentFactory extends Factory
4141
public function definition()
4242
{
4343
return [
44-
'content' => $this->faker->text,
44+
'content' => $this->faker->text(),
4545
'post_id' => Post::factory(),
4646
'user_id' => User::factory(),
4747
];

tests/dummy/database/factories/ImageFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ImageFactory extends Factory
3939
public function definition()
4040
{
4141
return [
42-
'url' => $this->faker->url,
42+
'url' => $this->faker->url(),
4343
];
4444
}
4545
}

tests/dummy/database/factories/PostFactory.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ public function definition()
4141
{
4242
return [
4343
'author_id' => User::factory(),
44-
'content' => $this->faker->text,
45-
'published_at' => $this->faker->dateTimeThisMonth,
46-
'slug' => $this->faker->unique()->slug,
47-
'synopsis' => $this->faker->sentence,
44+
'content' => $this->faker->text(),
45+
'published_at' => $this->faker->dateTimeThisMonth(),
46+
'slug' => $this->faker->unique()->slug(),
47+
'synopsis' => $this->faker->sentence(),
4848
'title' => $this->faker->words(3, true),
4949
];
5050
}

tests/dummy/database/factories/TagFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class TagFactory extends Factory
3939
public function definition()
4040
{
4141
return [
42-
'name' => $this->faker->colorName,
42+
'name' => $this->faker->colorName(),
4343
];
4444
}
4545
}

tests/dummy/database/factories/UserFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ class UserFactory extends Factory
4040
public function definition()
4141
{
4242
return [
43-
'name' => $this->faker->name,
44-
'email' => $this->faker->unique()->safeEmail,
43+
'name' => $this->faker->name(),
44+
'email' => $this->faker->unique()->safeEmail(),
4545
'email_verified_at' => now(),
4646
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
4747
'remember_token' => Str::random(10),

tests/dummy/database/factories/VideoFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function definition()
4242
return [
4343
'owner_id' => User::factory(),
4444
'title' => $this->faker->words(3, true),
45-
'url' => $this->faker->url,
45+
'url' => $this->faker->url(),
4646
];
4747
}
4848
}

0 commit comments

Comments
 (0)