sapo-videos/main.rb

91 lines
2.0 KiB
Ruby
Raw Normal View History

2023-07-28 02:01:40 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
# SPDX-FileCopyrightText: 2023 Hugo Peixoto <hugo.peixoto@gmail.com>
require 'sinatra'
require './database.rb'
require './models.rb'
2023-07-28 11:00:41 +00:00
def h(bytes)
if bytes < 2**10
"#{bytes} bytes"
elsif bytes < 2**20
"%.2f KiB" % (1.0 * bytes / 2**10)
elsif bytes < 2**30
"%.2f MiB" % (1.0 * bytes / 2**20)
elsif bytes < 2**40
"%.2f GiB" % (1.0 * bytes / 2**30)
else
"%.2f TiB" % (1.0 * bytes / 2**40)
end
end
set :public_folder, __dir__ + '/public'
2023-07-28 02:01:40 +00:00
get '/' do
downloads = ActiveRecord::Base.connection.execute("
SELECT
COUNT(1) AS total,
SUM(size) AS bytes
FROM (select size from downloads group by video_id) as x;
")[0]
2023-07-28 19:50:22 +00:00
videos = ActiveRecord::Base.connection.execute("select count(1) AS total from videos;")[0]
2023-07-28 19:31:14 +00:00
users = ActiveRecord::Base.connection.execute("select count(distinct email) AS total from downloads;")[0]
2023-07-28 19:50:22 +00:00
stats = {
videos_known: videos["total"].to_i,
videos_downloaded: downloads["total"].to_i,
bytes_downloaded: downloads["bytes"].to_i,
users: users["total"],
}
2023-07-28 02:01:40 +00:00
ERB
.new(File.read("index.html.erb"), trim_mode: "<>-")
2023-07-28 19:50:22 +00:00
.result_with_hash(stats)
2023-07-28 02:01:40 +00:00
end
get '/videos.json' do
content_type 'application/json'
amount = params['amount'].to_i
if amount > 100_000
{ error: "greedy" }.to_json
else
videos = Video
.left_outer_joins(:downloads)
.group("randname")
.order("COUNT(1) ASC, RANDOM()")
.limit(amount)
.pluck(:randname)
{ videos: videos }.to_json
2023-07-28 02:01:40 +00:00
end
end
post '/video' do
content_type 'application/json'
data = JSON.parse(request.body.read)
Download.create!(
video: Video.find_by!(randname: data["video_id"]),
size: data["size"],
sha256: data["sha256"],
email: data["email"],
)
{ status: 'ok' }.to_json
end
get '/config.json' do
content_type 'application/json'
{
videos_url: "https://sapo.pxto.pt/videos.json",
upload_url: "https://sapo.pxto.pt/video",
max_amount: 100_000,
}.to_json
end