mirror of
https://github.com/hkalexling/Mango.git
synced 2026-04-05 00:00:44 -04:00
Plugin downloader WIP
This commit is contained in:
@@ -10,9 +10,9 @@ class Plugin
|
||||
job = nil
|
||||
DB.open "sqlite3://#{@queue.path}" do |db|
|
||||
begin
|
||||
db.query_one "select * from queue where id like '%-%' and " \
|
||||
"(status = 0 or status = 1) order by time limit 1" \
|
||||
do |res|
|
||||
db.query_one "select * from queue where id like '%-%' " \
|
||||
"and (status = 0 or status = 1) " \
|
||||
"order by time limit 1" do |res|
|
||||
job = Queue::Job.from_query_result res
|
||||
end
|
||||
rescue
|
||||
@@ -20,5 +20,105 @@ class Plugin
|
||||
end
|
||||
job
|
||||
end
|
||||
|
||||
private def download(job : Queue::Job)
|
||||
@downloading = true
|
||||
@queue.set_status Queue::JobStatus::Downloading, job
|
||||
|
||||
begin
|
||||
unless job.plugin_name
|
||||
raise "Job does not have plugin name specificed"
|
||||
end
|
||||
|
||||
plugin = Plugin.new job.plugin_name.not_nil!
|
||||
info = plugin.select_chapter job.id
|
||||
|
||||
title = info["title"].as_s
|
||||
pages = info["pages"].as_i
|
||||
|
||||
@queue.set_pages pages, job
|
||||
lib_dir = @library_path
|
||||
manga_dir = File.join lib_dir, title
|
||||
unless File.exists? manga_dir
|
||||
Dir.mkdir_p manga_dir
|
||||
end
|
||||
|
||||
zip_path = File.join manga_dir, "#{job.title}.cbz.part"
|
||||
writer = Zip::Writer.new zip_path
|
||||
rescue e
|
||||
@queue.set_status Queue::JobStatus::Error, job
|
||||
unless e.message.nil?
|
||||
@queue.add_message e.message.not_nil!, job
|
||||
end
|
||||
@downloading = false
|
||||
raise e
|
||||
end
|
||||
|
||||
fail_count = 0
|
||||
|
||||
while page = plugin.next_page
|
||||
fn = page["filename"].as_s
|
||||
url = page["url"].as_s
|
||||
headers = HTTP::Headers.new
|
||||
|
||||
if page["headers"]?
|
||||
page["headers"].as_h.each do |k, v|
|
||||
headers.add k, v.as_s
|
||||
end
|
||||
end
|
||||
|
||||
page_success = false
|
||||
tries = 4
|
||||
|
||||
loop do
|
||||
sleep plugin.wait_seconds.seconds
|
||||
Logger.debug "downloading #{url}"
|
||||
tries -= 1
|
||||
|
||||
begin
|
||||
HTTP::Client.get url, headers do |res|
|
||||
unless res.success?
|
||||
raise "Failed to download page #{url}. " \
|
||||
"[#{res.status_code}] #{res.status_message}"
|
||||
end
|
||||
writer.add fn, res.body_io
|
||||
end
|
||||
rescue e
|
||||
@queue.add_fail job
|
||||
fail_count += 1
|
||||
msg = "Failed to download page #{url}. Error: #{e}"
|
||||
@queue.add_message msg, job
|
||||
Logger.error msg
|
||||
Logger.debug "[failed] #{url}"
|
||||
else
|
||||
@queue.add_success job
|
||||
Logger.debug "[success] #{url}"
|
||||
page_success = true
|
||||
end
|
||||
|
||||
break if page_success || tries < 0
|
||||
end
|
||||
end
|
||||
|
||||
Logger.debug "Download completed. #{fail_count}/#{pages} failed"
|
||||
writer.close
|
||||
filename = File.join File.dirname(zip_path), File.basename(zip_path,
|
||||
".part")
|
||||
File.rename zip_path, filename
|
||||
Logger.debug "cbz File created at #{filename}"
|
||||
|
||||
zip_exception = validate_archive filename
|
||||
if !zip_exception.nil?
|
||||
@queue.add_message "The downloaded archive is corrupted. " \
|
||||
"Error: #{zip_exception}", job
|
||||
@queue.set_status Queue::JobStatus::Error, job
|
||||
elsif fail_count > 0
|
||||
@queue.set_status Queue::JobStatus::MissingPages, job
|
||||
else
|
||||
@queue.set_status Queue::JobStatus::Completed, job
|
||||
end
|
||||
|
||||
@downloading = false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -36,7 +36,6 @@ class Plugin
|
||||
|
||||
def initialize(filename : String)
|
||||
dir = Config.current.plugin_path
|
||||
pp dir
|
||||
Dir.mkdir_p dir unless Dir.exists? dir
|
||||
|
||||
@path = File.join dir, "#{filename}.js"
|
||||
|
||||
Reference in New Issue
Block a user