smarter large file regen

This commit is contained in:
albert
2013-02-21 18:25:21 -05:00
parent 6b917eb8fd
commit 2b429c928c
2 changed files with 3 additions and 20 deletions

View File

@@ -1,8 +0,0 @@
desc "Download all images from sonohara.donmai.us"
task :download_images_from_sonohara => :environment do
Post.order("id desc").limit(1000).each do |post|
`cd /var/www/danbooru/current/public/data && wget http://sonohara.donmai.us/data/#{post.md5}.#{post.file_ext}`
`cd /var/www/danbooru/current/public/data/preview && wget http://sonohara.donmai.us/data/preview/#{post.md5}.jpg`
`cd /var/www/danbooru/current/public/data/sample && wget http://sonohara.donmai.us/data/sample/sample-#{post.md5}.jpg`
end
end

View File

@@ -22,7 +22,7 @@ namespace :images do
desc "Generate thumbnail-sized images of posts"
task :generate_preview => :environment do
Post.where("image_width > ?", Danbooru.config.small_image_width).find_each do |post|
if post.is_image?
if post.is_image? && !File.exists?(post.preview_file_path)
puts "resizing preview #{post.id}"
Danbooru.resize(post.file_path, post.preview_file_path, Danbooru.config.small_image_width, Danbooru.config.small_image_width, 90)
end
@@ -32,19 +32,10 @@ namespace :images do
desc "Generate large-sized images of posts"
task :generate_large => :environment do
Post.where("image_width > ?", Danbooru.config.large_image_width).find_each do |post|
if post.is_image?
if post.is_image? && !File.exists?(post.large_file_path)
puts "resizing large #{post.id}"
Danbooru.resize(post.file_path, post.large_file_path, Danbooru.config.large_image_width, nil, 90)
end
end
end
desc "Distribute large posts to other servers"
task :distribute_large => :environment do
Post.where("image_width > ?", Danbooru.config.large_image_width).find_each do |post|
if post.is_image?
puts "distributing large #{post.id}"
RemoteFileManager.new(post.large_file_path).distribute
post.distribute_files
end
end
end