@@ -11,7 +11,12 @@ import {
11
11
} from "~/db/schema" ;
12
12
import { getColumns , sqlarr } from "~/db/schema/utils" ;
13
13
import { bubble } from "~/models/examples" ;
14
- import { Movie , MovieStatus , MovieTranslation } from "~/models/movie" ;
14
+ import {
15
+ FullMovie ,
16
+ Movie ,
17
+ MovieStatus ,
18
+ MovieTranslation ,
19
+ } from "~/models/movie" ;
15
20
import {
16
21
Filter ,
17
22
type Image ,
@@ -49,7 +54,7 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
49
54
async ( {
50
55
params : { id } ,
51
56
headers : { "accept-language" : languages } ,
52
- query : { preferOriginal } ,
57
+ query : { preferOriginal, with : relations } ,
53
58
error,
54
59
set,
55
60
} ) => {
@@ -86,7 +91,7 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
86
91
isUuid ( id ) ? eq ( shows . id , id ) : eq ( shows . slug , id ) ,
87
92
) ,
88
93
with : {
89
- translations : {
94
+ selectedTranslation : {
90
95
columns : {
91
96
pk : false ,
92
97
} ,
@@ -113,6 +118,13 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
113
118
) ,
114
119
} ,
115
120
} ,
121
+ ...( relations . includes ( "translations" ) && {
122
+ translations : {
123
+ columns : {
124
+ pk : false ,
125
+ } ,
126
+ } ,
127
+ } ) ,
116
128
} ,
117
129
} ) ;
118
130
@@ -122,7 +134,7 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
122
134
message : "Movie not found" ,
123
135
} ) ;
124
136
}
125
- const translation = ret . translations [ 0 ] ;
137
+ const translation = ret . selectedTranslation [ 0 ] ;
126
138
if ( ! translation ) {
127
139
return error ( 422 , {
128
140
status : 422 ,
@@ -140,6 +152,14 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
140
152
...( ot . banner && { banner : ot . banner } ) ,
141
153
...( ot . logo && { logo : ot . logo } ) ,
142
154
} ) ,
155
+ ...( ret . translations && {
156
+ translations : Object . fromEntries (
157
+ ret . translations . map (
158
+ ( { language, ...translation } ) =>
159
+ [ language , translation ] as const ,
160
+ ) ,
161
+ ) ,
162
+ } ) ,
143
163
} ;
144
164
} ,
145
165
{
@@ -162,6 +182,10 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
162
182
` ,
163
183
} ) ,
164
184
) ,
185
+ with : t . Array ( t . UnionEnum ( [ "translations" , "videos" ] ) , {
186
+ default : [ ] ,
187
+ description : "Include related resources in the response." ,
188
+ } ) ,
165
189
} ) ,
166
190
headers : t . Object ( {
167
191
"accept-language" : t . String ( {
@@ -174,13 +198,10 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
174
198
} ) ,
175
199
} ) ,
176
200
response : {
177
- 200 : { ...Movie , description : "Found" } ,
201
+ 200 : { ...FullMovie , description : "Found" } ,
178
202
404 : {
179
203
...KError ,
180
204
description : "No movie found with the given id or slug." ,
181
- examples : [
182
- { status : 404 , message : "Movie not found" , details : undefined } ,
183
- ] ,
184
205
} ,
185
206
422 : {
186
207
...KError ,
@@ -189,12 +210,6 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
189
210
unavailable.) Try with another languages or add * to the list of languages
190
211
to fallback to any language.
191
212
` ,
192
- examples : [
193
- {
194
- status : 422 ,
195
- message : "Accept-Language header could not be satisfied." ,
196
- } ,
197
- ] ,
198
213
} ,
199
214
} ,
200
215
} ,
@@ -227,9 +242,6 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
227
242
404 : {
228
243
...KError ,
229
244
description : "No movie found with the given id or slug." ,
230
- examples : [
231
- { status : 404 , message : "Movie not found" , details : undefined } ,
232
- ] ,
233
245
} ,
234
246
} ,
235
247
} ,
@@ -362,16 +374,6 @@ export const movies = new Elysia({ prefix: "/movies", tags: ["movies"] })
362
374
422 : {
363
375
...KError ,
364
376
description : "Invalid query parameters." ,
365
- examples : [
366
- {
367
- status : 422 ,
368
- message :
369
- "Invalid property: slug. Expected one of genres, rating, status, runtime, airDate, originalLanguage." ,
370
- details : {
371
- in : "slug eq bubble" ,
372
- } ,
373
- } ,
374
- ] ,
375
377
} ,
376
378
} ,
377
379
} ,
0 commit comments