mirror of https://github.com/iv-org/invidious.git
Run Crystal formatting tool
This commit is contained in:
parent
205c5493db
commit
93ac7cdeb4
|
@ -263,7 +263,7 @@ def create_compilation(title, privacy, user)
|
|||
index: [] of Int64,
|
||||
first_video_id: "",
|
||||
first_video_starting_timestamp_seconds: 0,
|
||||
first_video_ending_timestamp_seconds: 0
|
||||
first_video_ending_timestamp_seconds: 0,
|
||||
})
|
||||
|
||||
Invidious::Database::Compilations.insert(compilation)
|
||||
|
@ -284,7 +284,7 @@ def subscribe_compilation(user, compilation)
|
|||
index: [] of Int64,
|
||||
first_video_id: "",
|
||||
first_video_starting_timestamp_seconds: 0,
|
||||
first_video_ending_timestamp_seconds: 0
|
||||
first_video_ending_timestamp_seconds: 0,
|
||||
})
|
||||
|
||||
Invidious::Database::Compilations.insert(compilation)
|
||||
|
@ -441,7 +441,7 @@ def extract_compilation_videos(initial_data : Hash(String, JSON::Any))
|
|||
published: Time.utc,
|
||||
compid: compid,
|
||||
index: index,
|
||||
order_index: order_index
|
||||
order_index: order_index,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
|
@ -101,6 +101,7 @@ module Invidious::Database::Compilations
|
|||
|
||||
PG_DB.exec(request, id, first_video_id, starting_timestamp_seconds, ending_timestamp_seconds)
|
||||
end
|
||||
|
||||
# -------------------
|
||||
# Select
|
||||
# -------------------
|
||||
|
@ -261,7 +262,6 @@ module Invidious::Database::CompilationVideos
|
|||
end
|
||||
|
||||
def select_timestamps(compid : String, vid : String)
|
||||
|
||||
request = <<-SQL
|
||||
SELECT starting_timestamp_seconds,ending_timestamp_seconds FROM compilation_videos
|
||||
WHERE compid = $1 AND id = $2
|
||||
|
@ -269,7 +269,6 @@ module Invidious::Database::CompilationVideos
|
|||
SQL
|
||||
|
||||
return PG_DB.query_one?(request, compid, vid, as: {Int32, Int32})
|
||||
|
||||
end
|
||||
|
||||
def select_id_from_order_index(order_index : Int32)
|
||||
|
|
|
@ -76,7 +76,6 @@ module Invidious::Routes::API::V1::Misc
|
|||
response
|
||||
end
|
||||
|
||||
|
||||
# APIv1 currently uses the same logic for both
|
||||
# user playlists and Invidious playlists. This means that we can't
|
||||
# reasonably split them yet. This should be addressed in APIv2
|
||||
|
|
|
@ -218,7 +218,6 @@ module Invidious::Routes::Compilations
|
|||
return error_template(400, ex)
|
||||
end
|
||||
|
||||
|
||||
if !compid || compid.empty?
|
||||
return error_json(400, "A compilation ID is required")
|
||||
end
|
||||
|
@ -261,7 +260,6 @@ module Invidious::Routes::Compilations
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
update_first_video_params(compid)
|
||||
|
@ -269,7 +267,6 @@ module Invidious::Routes::Compilations
|
|||
env.redirect "/compilation?list=#{compid}"
|
||||
end
|
||||
|
||||
|
||||
def self.add_compilation_items_page(env)
|
||||
prefs = env.get("preferences").as(Preferences)
|
||||
locale = prefs.locale
|
||||
|
@ -422,7 +419,7 @@ module Invidious::Routes::Compilations
|
|||
compid: compilation_id,
|
||||
live_now: video.live_now,
|
||||
index: Random::Secure.rand(0_i64..Int64::MAX),
|
||||
order_index: compilation.index.size
|
||||
order_index: compilation.index.size,
|
||||
})
|
||||
|
||||
Invidious::Database::CompilationVideos.insert(compilation_video)
|
||||
|
@ -473,7 +470,11 @@ module Invidious::Routes::Compilations
|
|||
compilation_index_array_position = compilation_index_array.index(compilation_video[0].index)
|
||||
if !compilation_index_array_position.nil?
|
||||
compilation_index_array.delete_at(compilation_index_array_position)
|
||||
if (compilation_index_array_position == compilation_index_array.size)
|
||||
compilation_index_array.insert(compilation_index_array_position, compilation_video[0].index)
|
||||
else
|
||||
compilation_index_array.insert(compilation_index_array_position + 1, compilation_video[0].index)
|
||||
end
|
||||
Invidious::Database::Compilations.move_video_position(compilation_id, compilation_index_array)
|
||||
end
|
||||
update_first_video_params(compilation_id)
|
||||
|
|
Loading…
Reference in New Issue