Skip to content

Commit bac5c93

Browse files
authored
Fixed orderBy does not works for scout. (#3230)
* Fixed orderBy does not works for scout. * Added Test Cases
1 parent 7e56817 commit bac5c93

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

src/Searchable.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -158,10 +158,14 @@ public function getScoutModelsByIds(Builder $builder, array $ids)
158158
if ($builder->queryCallback) {
159159
call_user_func($builder->queryCallback, $query);
160160
}
161+
162+
$modelIdPositions = array_flip($ids);
161163
return $query->whereIn(
162164
$this->getScoutKeyName(),
163165
$ids
164-
)->get();
166+
)->get()->sortBy(static function ($model) use ($modelIdPositions) {
167+
return $modelIdPositions[$model->getScoutKey()];
168+
})->values();
165169
}
166170

167171
/**

tests/Cases/ElasticsearchEngineTest.php

+17
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
use Hyperf\Scout\Builder;
1717
use Hyperf\Scout\Engine\ElasticsearchEngine;
1818
use HyperfTest\Scout\Stub\ElasticsearchEngineTestModel;
19+
use HyperfTest\Scout\Stub\SearchableModel;
1920
use Mockery;
2021
use PHPUnit\Framework\TestCase;
2122

@@ -119,6 +120,22 @@ function (\Elasticsearch\Client $client, $query, $params) {
119120
$engine->search($builder);
120121
}
121122

123+
public function testGetScoutModelsByIds()
124+
{
125+
$model = new SearchableModel();
126+
$query = Mockery::mock(\Hyperf\Database\Model\Builder::class);
127+
$query->shouldReceive('whereIn->get')->andReturn(new Collection([
128+
new SearchableModel(['id' => 1]),
129+
new SearchableModel(['id' => 2]),
130+
]));
131+
$model->setQueryCallback(static function () use ($query) {
132+
return $query;
133+
});
134+
$builder = Mockery::mock(Builder::class);
135+
$res = $model->getScoutModelsByIds($builder, [2, 1]);
136+
$this->assertSame([['id' => 2], ['id' => 1]], $res->toArray());
137+
}
138+
122139
public function testMapCorrectlyMapsResultsToModels()
123140
{
124141
$client = Mockery::mock('Elasticsearch\Client');

tests/Stub/SearchableModel.php

+18
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ class SearchableModel extends Model
2525
*/
2626
protected $fillable = ['id'];
2727

28+
/**
29+
* @var \Closure
30+
*/
31+
protected $queryCallback;
32+
2833
public function searchableAs()
2934
{
3035
return 'table';
@@ -34,4 +39,17 @@ public function scoutMetadata()
3439
{
3540
return [];
3641
}
42+
43+
public function setQueryCallback(\Closure $closure)
44+
{
45+
$this->queryCallback = $closure;
46+
}
47+
48+
public function newQuery()
49+
{
50+
if ($this->queryCallback) {
51+
return $this->queryCallback->__invoke($this);
52+
}
53+
return parent::newQuery();
54+
}
3755
}

0 commit comments

Comments
 (0)