mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-09 15:02:14 +05:30
Merge 4a4e489447
into c5fdd9ea65
This commit is contained in:
commit
127e5dbdcb
@ -30,28 +30,24 @@ struct Invidious::User
|
|||||||
return subscriptions
|
return subscriptions
|
||||||
end
|
end
|
||||||
|
|
||||||
def parse_playlist_export_csv(user : User, raw_input : String)
|
# Parse a CSV Google Takeout - Youtube Playlist file
|
||||||
|
def parse_playlist_export_csv(user : User, playlist_name : String, raw_input : String)
|
||||||
# Split the input into head and body content
|
# Split the input into head and body content
|
||||||
raw_head, raw_body = raw_input.strip('\n').split("\n\n", limit: 2, remove_empty: true)
|
raw_head, raw_body = raw_input.split("\n", limit: 2, remove_empty: true)
|
||||||
|
|
||||||
# Create the playlist from the head content
|
# Create the playlist from the head content
|
||||||
csv_head = CSV.new(raw_head.strip('\n'), headers: true)
|
csv_head = CSV.new(raw_head.strip('\n'), headers: true)
|
||||||
csv_head.next
|
csv_head.next
|
||||||
title = csv_head[4]
|
title = playlist_name
|
||||||
description = csv_head[5]
|
|
||||||
visibility = csv_head[6]
|
|
||||||
|
|
||||||
if visibility.compare("Public", case_insensitive: true) == 0
|
description = "This is the default description of an imported playlist. Feel Free to change it as you see fit."
|
||||||
privacy = PlaylistPrivacy::Public
|
|
||||||
else
|
|
||||||
privacy = PlaylistPrivacy::Private
|
privacy = PlaylistPrivacy::Private
|
||||||
end
|
|
||||||
|
|
||||||
playlist = create_playlist(title, privacy, user)
|
playlist = create_playlist(title, privacy, user)
|
||||||
Invidious::Database::Playlists.update_description(playlist.id, description)
|
Invidious::Database::Playlists.update_description(playlist.id, description)
|
||||||
|
|
||||||
# Add each video to the playlist from the body content
|
# Add each video to the playlist from the body content
|
||||||
csv_body = CSV.new(raw_body.strip('\n'), headers: true)
|
csv_body = CSV.new(raw_body.strip('\n'), headers: false)
|
||||||
csv_body.each do |row|
|
csv_body.each do |row|
|
||||||
video_id = row[0]
|
video_id = row[0]
|
||||||
if playlist
|
if playlist
|
||||||
@ -204,10 +200,12 @@ struct Invidious::User
|
|||||||
end
|
end
|
||||||
|
|
||||||
def from_youtube_pl(user : User, body : String, filename : String, type : String) : Bool
|
def from_youtube_pl(user : User, body : String, filename : String, type : String) : Bool
|
||||||
extension = filename.split(".").last
|
filename_array = filename.split(".")
|
||||||
|
playlist_name = filename_array.first
|
||||||
|
extension = filename_array.last
|
||||||
|
|
||||||
if extension == "csv" || type == "text/csv"
|
if extension == "csv" || type == "text/csv"
|
||||||
playlist = parse_playlist_export_csv(user, body)
|
playlist = parse_playlist_export_csv(user, playlist_name, body)
|
||||||
if playlist
|
if playlist
|
||||||
return true
|
return true
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user