Fix playlist deletion

This commit is contained in:
matthewmcgarvey 2022-01-05 18:24:04 -06:00
parent 3bb7fbb2f1
commit e1219cbdef
1 changed files with 13 additions and 5 deletions

View File

@ -21,13 +21,12 @@ module Invidious::Database::Playlists
PG_DB.exec(request, args: playlist_array)
end
# this function is a bit special: it will also remove all videos
# related to the given playlist ID in the "playlist_videos" table,
# in addition to deleting said ID from "playlists".
# deletes the given playlist and connected playlist videos
def delete(id : String)
PlaylistVideos.delete_by_playlist_id(id)
request = <<-SQL
DELETE FROM playlist_videos * WHERE plid = $1;
DELETE FROM playlists * WHERE id = $1
DELETE FROM playlists *
WHERE id = $1
SQL
PG_DB.exec(request, id)
@ -207,6 +206,15 @@ module Invidious::Database::PlaylistVideos
PG_DB.exec(request, index)
end
def delete_by_playlist_id(playlist_id)
request = <<-SQL
DELETE FROM playlist_videos *
WHERE plid = $1;
SQL
PG_DB.exec(request, playlist_id)
end
# -------------------
# Salect
# -------------------