@@ -31,18 +31,30 @@ public static function esSchemaFile()
31
31
return config_path ('schemas/beatmapsets.json ' );
32
32
}
33
33
34
+ private static function esBeatmapTags (Beatmap $ beatmap ): array
35
+ {
36
+ $ tags = app ('tags ' );
37
+
38
+ return array_reject_null (
39
+ array_map (
40
+ fn ($ tagId ) => $ tags ->get ($ tagId ['tag_id ' ])?->name,
41
+ $ beatmap ->topTagIds ()
42
+ )
43
+ );
44
+ }
45
+
34
46
public function esShouldIndex ()
35
47
{
36
48
return !$ this ->trashed () && !present ($ this ->download_disabled_url );
37
49
}
38
50
39
51
public function toEsJson ()
40
52
{
41
- return array_merge (
42
- $ this ->esBeatmapsetValues (),
43
- [ 'beatmaps ' => $ this ->esBeatmapsValues ()] ,
44
- [ 'difficulties ' => $ this ->esDifficultiesValues ()]
45
- ) ;
53
+ return [
54
+ ... $ this ->esBeatmapsetValues (),
55
+ 'beatmaps ' => $ this ->esBeatmapsValues (),
56
+ 'difficulties ' => $ this ->esDifficultiesValues (),
57
+ ] ;
46
58
}
47
59
48
60
private function esBeatmapsetValues ()
@@ -78,12 +90,17 @@ private function esBeatmapsValues()
78
90
foreach ($ this ->beatmaps as $ beatmap ) {
79
91
$ beatmapValues = [];
80
92
foreach ($ mappings as $ field => $ mapping ) {
81
- $ beatmapValues [$ field ] = $ beatmap ->$ field ;
93
+ $ value = match ($ field ) {
94
+ 'top_tags ' => $ this ->esBeatmapTags ($ beatmap ),
95
+ // TODO: remove adding $beatmap->user_id once everything else also populated beatmap_owners by default.
96
+ // Duplicate user_id in the array should be fine for now since the field isn't scored for querying.
97
+ 'user_id ' => $ beatmap ->beatmapOwners ->pluck ('user_id ' )->add ($ beatmap ->user_id ),
98
+ default => $ beatmap ->$ field ,
99
+ };
100
+
101
+ $ beatmapValues [$ field ] = $ value ;
82
102
}
83
103
84
- // TODO: remove adding $beatmap->user_id once everything else also populated beatmap_owners by default.
85
- // Duplicate user_id in the array should be fine for now since the field isn't scored for querying.
86
- $ beatmapValues ['user_id ' ] = $ beatmap ->beatmapOwners ->pluck ('user_id ' )->add ($ beatmap ->user_id );
87
104
$ values [] = $ beatmapValues ;
88
105
89
106
if ($ beatmap ->playmode === Beatmap::MODES ['osu ' ]) {
@@ -96,11 +113,16 @@ private function esBeatmapsValues()
96
113
$ convert ->playmode = $ modeInt ;
97
114
$ convert ->convert = true ;
98
115
$ convertValues = [];
99
- foreach ($ mappings as $ field => $ mapping ) {
100
- $ convertValues [$ field ] = $ convert ->$ field ;
116
+ foreach ($ mappings as $ field => $ _mapping ) {
117
+ $ convertValues [$ field ] = match ($ field ) {
118
+ // just add a copy for converts too.
119
+ 'top_tags ' ,
120
+ 'user_id ' => $ beatmapValues [$ field ],
121
+
122
+ default => $ convert ->$ field ,
123
+ };
101
124
}
102
125
103
- $ convertValues ['user_id ' ] = $ beatmapValues ['user_id ' ]; // just add a copy for converts too.
104
126
$ values [] = $ convertValues ;
105
127
}
106
128
}
0 commit comments