Skip to content

Commit cf085b5

Browse files
authored
Merge pull request #11987 from nanaya/remove-unused-beatmap-blocklist
Remove unused beatmap search blocklist
2 parents cf26758 + 3016517 commit cf085b5

File tree

4 files changed

+0
-87
lines changed

4 files changed

+0
-87
lines changed

.github/workflows/tests.yml

-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,6 @@ jobs:
152152

153153
- name: Setup indices
154154
run: |
155-
php artisan es:create-search-blacklist
156155
php artisan es:index-documents --no-interaction
157156
php artisan es:index-wiki --create-only --no-interaction
158157

app/Console/Commands/EsCreateSearchBlacklist.php

-60
This file was deleted.

app/Console/Commands/MigrateFreshAllCommand.php

-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ public function handle()
5757
'--no-interaction' => $this->option('no-interaction'),
5858
]);
5959

60-
$this->call('es:create-search-blacklist');
61-
6260
if ($this->needsSeeding()) {
6361
$this->runSeeder(null);
6462
}

app/Libraries/Search/BeatmapsetSearch.php

-24
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ public function getQuery()
6363
);
6464
}
6565

66-
$this->addBlacklistFilter($query);
6766
$this->addBlockedUsersFilter($query);
6867
$this->addFeaturedArtistFilter($query);
6968
$this->addFeaturedArtistsFilter($query);
@@ -122,29 +121,6 @@ public function records()
122121
}])->get();
123122
}
124123

125-
private function addBlacklistFilter($query)
126-
{
127-
static $fields = ['artist', 'source', 'tags'];
128-
$params = [
129-
'index' => $GLOBALS['cfg']['osu']['elasticsearch']['prefix'].'blacklist',
130-
'id' => 'beatmapsets',
131-
// can be changed to per-field blacklist as different fields should probably have different restrictions.
132-
'path' => 'keywords',
133-
];
134-
135-
$bool = new BoolQuery();
136-
137-
foreach ($fields as $field) {
138-
$bool->mustNot([
139-
'terms' => [
140-
$field => $params,
141-
],
142-
]);
143-
}
144-
145-
$query->filter($bool);
146-
}
147-
148124
private function addBlockedUsersFilter($query)
149125
{
150126
$query->mustNot(['terms' => ['user_id' => $this->params->blockedUserIds()]]);

0 commit comments

Comments
 (0)