Skip to content

Commit 8fe8cd6

Browse files
authored
Fix config validation (spatie#159)
* move config validation for the `items` key to the resolver to avoid exceptions during package installation * update tests for config validation & items resolver
1 parent 190610d commit 8fe8cd6

5 files changed

+16
-28
lines changed

src/Helpers/ConfigurationValidator.php

+6-11
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,21 @@ public static function validate(?array $feeds = null): void
1616
throw InvalidConfiguration::unrecognizedFormat($name, $config['format']);
1717
}
1818

19-
if (! self::validateFeedItemsResolver($config['items'])) {
20-
throw InvalidConfiguration::invalidItemsValue($name);
21-
}
22-
2319
if (! View::exists($config['view'] ?? 'feed::atom')) {
2420
throw InvalidConfiguration::invalidView($name);
2521
}
2622
}
2723
}
2824

29-
protected static function validateFeedItemsResolver($resolver): bool
25+
public static function validateResolver(string $feedName, $resolver): void
3026
{
31-
if ($resolver === null) {
32-
return true;
33-
}
34-
35-
if ($resolver === '') {
36-
return true;
27+
if (! self::feedItemsResolverIsValid($resolver)) {
28+
throw InvalidConfiguration::invalidItemsValue($feedName);
3729
}
30+
}
3831

32+
protected static function feedItemsResolverIsValid($resolver): bool
33+
{
3934
if (! is_string($resolver) && ! is_array($resolver)) {
4035
return false;
4136
}

src/Helpers/ResolveFeedItems.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77

88
class ResolveFeedItems
99
{
10-
public static function resolve($resolver): Collection
10+
public static function resolve(string $feedName, $resolver): Collection
1111
{
12+
ConfigurationValidator::validateResolver($feedName, $resolver);
13+
1214
$newResolver = $resolver;
1315

1416
if (is_array($resolver) && ! str_contains($resolver[0], '@')) {

src/Http/FeedController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __invoke()
1818

1919
abort_unless($feed, 404);
2020

21-
$items = ResolveFeedItems::resolve($feed['items']);
21+
$items = ResolveFeedItems::resolve($name, $feed['items']);
2222

2323
return new Feed(
2424
$feed['title'],

tests/ConfigurationValidatorTest.php

+2-11
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public function it_validates_feed_formats()
1818
try {
1919
ConfigurationValidator::validate([
2020
'feed1' => [
21-
'items' => 'Spatie\Feed\Test\DummyRepository@getAll',
2221
'view' => 'feed::rss',
2322
'format' => $format,
2423
],
@@ -38,7 +37,6 @@ public function it_throws_an_exception_for_invalid_feed_types()
3837

3938
ConfigurationValidator::validate([
4039
'feed1' => [
41-
'items' => 'Spatie\Feed\Test\DummyRepository@getAll',
4240
'view' => 'feed::rss',
4341
'format' => 'test',
4442
],
@@ -50,20 +48,14 @@ public function it_throws_an_exception_for_an_invalid_items_value()
5048
{
5149
$exceptionCounter = 0;
5250

53-
$invalidItems = [[], ['test']];
51+
$invalidItems = [[], null, '', ['test']];
5452
$validItems = ['Model@getAll', ['App\\Model', 'getItems'], ['App\\Model', 'getItems', 'param1']];
5553

5654
$items = array_merge($invalidItems, $validItems);
5755

5856
foreach ($items as $itemsValue) {
5957
try {
60-
ConfigurationValidator::validate([
61-
'feed1' => [
62-
'items' => $itemsValue,
63-
'view' => 'feed::rss',
64-
'format' => 'rss',
65-
],
66-
]);
58+
ConfigurationValidator::validateResolver('feed1', $itemsValue);
6759
} catch (InvalidConfiguration $e) {
6860
$exceptionCounter++;
6961
}
@@ -82,7 +74,6 @@ public function it_throws_an_exception_for_an_invalid_view()
8274
try {
8375
ConfigurationValidator::validate([
8476
'feed1' => [
85-
'items' => 'Spatie\Feed\Test\DummyRepository@getAll',
8677
'view' => $view,
8778
'format' => 'json',
8879
],

tests/ResolveFeedItemsTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@ class ResolveFeedItemsTest extends TestCase
99
/** @test */
1010
public function it_resolves_a_resolver_class_and_method_string()
1111
{
12-
$result = ResolveFeedItems::resolve('\Spatie\Feed\Test\DummyRepository@getAll');
12+
$result = ResolveFeedItems::resolve('feed1', '\Spatie\Feed\Test\DummyRepository@getAll');
1313

1414
$this->assertCount(5, $result);
1515
}
1616

1717
/** @test */
1818
public function it_resolves_a_resolver_class_and_method_string_with_parameters()
1919
{
20-
$result = ResolveFeedItems::resolve(['Spatie\Feed\Test\DummyRepository@getAllWithArguments', 'filter' => 'first']);
20+
$result = ResolveFeedItems::resolve('feed1', ['Spatie\Feed\Test\DummyRepository@getAllWithArguments', 'filter' => 'first']);
2121

2222
$this->assertCount(1, $result);
2323
}
2424

2525
/** @test */
2626
public function it_resolves_a_resolver_class_and_method_tuple()
2727
{
28-
$result = ResolveFeedItems::resolve([DummyRepository::class, 'getAll']);
28+
$result = ResolveFeedItems::resolve('feed1', [DummyRepository::class, 'getAll']);
2929

3030
$this->assertCount(5, $result);
3131
}
3232

3333
/** @test */
3434
public function it_resolves_a_resolver_class_and_method_tuple_with_parameters()
3535
{
36-
$result = ResolveFeedItems::resolve([DummyRepository::class, 'getAllWithArguments', 'filter' => 'first']);
36+
$result = ResolveFeedItems::resolve('feed1', [DummyRepository::class, 'getAllWithArguments', 'filter' => 'first']);
3737

3838
$this->assertCount(1, $result);
3939
}

0 commit comments

Comments
 (0)