This commit is contained in:
Espen Antonsen 2009-08-01 20:03:49 +02:00
parent 2c6362949a
commit e95b6e6978

View file

@ -19,13 +19,17 @@ module ScanFiles
if album.nil? if album.nil?
puts "New album : " + File.basename( relpath ) puts "New album : " + File.basename( relpath )
album = Album.new( :path => relpath ) album = Album.new( :path => relpath )
album.save unless album.save
raise "unable to save album"
end
end end
photo = Photo.find_by_path( relfile ) photo = Photo.find_by_path( relfile )
if photo.nil? if photo.nil?
puts " New photo added " + relfile puts " New photo added " + relfile
photo = Photo.new( :album => album, :path => relfile ) photo = Photo.new( :album => album, :path => relfile )
photo.save unless photo.save
raise "unable to save photo"
end
else else
puts " Found photo " + relfile puts " Found photo " + relfile
end end