@@ -79,13 +79,15 @@ async def get_items(
79
79
)
80
80
81
81
if type :
82
- type_lower = type .lower ()
83
- if type_lower not in ["movie" , "show" , "season" , "episode" ]:
84
- raise HTTPException (
85
- status_code = 400 ,
86
- detail = f"Invalid type: { type } . Valid types are: ['movie', 'show', 'season', 'episode']" ,
87
- )
88
- query = query .where (MediaItem .type == type_lower )
82
+ if "," in type :
83
+ types = type .split ("," )
84
+ for type in types :
85
+ if type not in ["movie" , "show" , "season" , "episode" ]:
86
+ raise HTTPException (
87
+ status_code = 400 ,
88
+ detail = f"Invalid type: { type } . Valid types are: ['movie', 'show', 'season', 'episode']" ,
89
+ )
90
+ query = query .where (MediaItem .type .in_ (types ))
89
91
90
92
if sort and not search :
91
93
if sort .lower () == "asc" :
@@ -117,26 +119,24 @@ async def get_items(
117
119
@router .get ("/extended/{item_id}" )
118
120
async def get_extended_item_info (_ : Request , item_id : str ):
119
121
with db .Session () as session :
120
- item = DB . _get_item_from_db ( session , MediaItem ({ " imdb_id" : str ( item_id )}) )
122
+ item = session . execute ( select ( MediaItem ). where ( MediaItem . imdb_id == item_id )). unique (). scalar_one_or_none ( )
121
123
if item is None :
122
124
raise HTTPException (status_code = 404 , detail = "Item not found" )
123
125
return {"success" : True , "item" : item .to_extended_dict ()}
124
126
125
127
126
- @router .post ("/add/imdb/{imdb_id}" )
127
- @router .post ("/add/imdb/" )
128
+ @router .post ("/add" )
128
129
async def add_items (
129
- request : Request , imdb_id : Optional [ str ] = None , imdb_ids : Optional [ IMDbIDs ] = None
130
+ request : Request , imdb_ids : str = None
130
131
):
131
- if imdb_id :
132
- imdb_ids = IMDbIDs (imdb_ids = [imdb_id ])
133
- elif (
134
- not imdb_ids or not imdb_ids .imdb_ids or any (not id for id in imdb_ids .imdb_ids )
135
- ):
132
+
133
+ if not imdb_ids :
136
134
raise HTTPException (status_code = 400 , detail = "No IMDb ID(s) provided" )
137
135
136
+ ids = imdb_ids .split ("," )
137
+
138
138
valid_ids = []
139
- for id in imdb_ids . imdb_ids :
139
+ for id in ids :
140
140
if not id .startswith ("tt" ):
141
141
logger .warning (f"Invalid IMDb ID { id } , skipping" )
142
142
else :
@@ -152,54 +152,15 @@ async def add_items(
152
152
return {"success" : True , "message" : f"Added { len (valid_ids )} item(s) to the queue" }
153
153
154
154
155
- @router .delete ("/remove/ " )
155
+ @router .delete ("/remove" )
156
156
async def remove_item (
157
- request : Request , item_id : Optional [ str ] = None , imdb_id : Optional [ str ] = None
157
+ _ : Request , imdb_id : str
158
158
):
159
- if item_id :
160
- item = request .app .program .media_items .get (item_id )
161
- id_type = "ID"
162
- elif imdb_id :
163
- item = next (
164
- (i for i in request .app .program .media_items if i .imdb_id == imdb_id ), None
165
- )
166
- id_type = "IMDb ID"
167
- else :
168
- raise HTTPException (status_code = 400 , detail = "No item ID or IMDb ID provided" )
169
-
170
- if not item :
171
- logger .error (f"Item with { id_type } { item_id or imdb_id } not found" )
172
- return {
173
- "success" : False ,
174
- "message" : f"Item with { id_type } { item_id or imdb_id } not found. No action taken." ,
175
- }
176
-
177
- try :
178
- # Remove the item from the media items container
179
- request .app .program .media_items .remove ([item ])
180
- logger .log ("API" , f"Removed item with { id_type } { item_id or imdb_id } " )
181
-
182
- # Remove the symlinks associated with the item
183
- symlinker = request .app .program .service [Symlinker ]
184
- symlinker .delete_item_symlinks (item )
185
- logger .log (
186
- "API" , f"Removed symlink for item with { id_type } { item_id or imdb_id } "
187
- )
188
-
189
- # Save and reload the media items to ensure consistency
190
- symlinker .save_and_reload_media_items (request .app .program .media_items )
191
- logger .log (
192
- "API" ,
193
- f"Saved and reloaded media items after removing item with { id_type } { item_id or imdb_id } " ,
194
- )
195
-
196
- return {
197
- "success" : True ,
198
- "message" : f"Successfully removed item with { id_type } { item_id or imdb_id } ." ,
199
- }
200
- except Exception as e :
201
- logger .error (f"Failed to remove item with { id_type } { item_id or imdb_id } : { e } " )
202
- raise HTTPException from e (status_code = 500 , detail = "Internal server error" )
159
+ if not imdb_id :
160
+ raise HTTPException (status_code = 400 , detail = "No IMDb ID provided" )
161
+ if DB ._remove_item_from_db (imdb_id ):
162
+ return {"success" : True , "message" : f"Removed item with imdb_id { imdb_id } " }
163
+ return {"success" : False , "message" : f"No item with imdb_id ({ imdb_id } ) found" }
203
164
204
165
205
166
@router .get ("/imdb/{imdb_id}" )
@@ -238,23 +199,3 @@ async def get_imdb_info(
238
199
raise HTTPException (status_code = 404 , detail = "Item not found" )
239
200
240
201
return {"success" : True , "item" : item .to_extended_dict ()}
241
-
242
-
243
- @router .get ("/incomplete" )
244
- async def get_incomplete_items (request : Request ):
245
- if not hasattr (request .app , "program" ):
246
- logger .error ("Program not found in the request app" )
247
- raise HTTPException (status_code = 500 , detail = "Internal server error" )
248
-
249
- with db .Session () as session :
250
- incomplete_items = session .execute (
251
- select (MediaItem ).where (MediaItem .last_state != "Completed" )
252
- ).unique ().scalars ().all ()
253
-
254
- if not incomplete_items :
255
- return {"success" : True , "incomplete_items" : []}
256
-
257
- return {
258
- "success" : True ,
259
- "incomplete_items" : [item .to_dict () for item in incomplete_items ],
260
- }
0 commit comments