fix iqdb importer
This commit is contained in:
@@ -1,12 +1,15 @@
|
|||||||
module Iqdb
|
module Iqdb
|
||||||
class Importer
|
class Importer
|
||||||
def import!
|
def import!
|
||||||
IO.popen("iqdb add #{Rails.root}/danbooru.db", "w") do |io|
|
IO.popen("iqdb command #{Danbooru.config.iqdb_file}", "w") do |io|
|
||||||
Post.find_each do |post|
|
Post.find_each do |post|
|
||||||
if File.exists?(post.preview_file_path)
|
if File.exists?(post.preview_file_path)
|
||||||
io.puts "#{post.id.to_s(16)}:#{post.preview_file_path}"
|
puts post.id
|
||||||
|
hex = post.id.to_s(16)
|
||||||
|
io.puts "add 0 #{hex} :#{post.preview_file_path}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
io.puts "quit"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'config', 'environment'))
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'config', 'environment'))
|
||||||
|
|
||||||
Iqdb::Server.import(Danbooru.config.iqdb_file)
|
Iqdb::Importer.import!
|
||||||
|
|||||||
Reference in New Issue
Block a user