protected

rails2
Espen Antonsen 2009-08-01 20:12:34 +02:00
parent e95b6e6978
commit 2ddea72d7f
2 changed files with 6 additions and 3 deletions

View File

@ -92,7 +92,7 @@ class Album < ActiveRecord::Base
def create_folders
Dir.mkdir( APP_CONFIG[:photos_path] + self.path ) unless File.exists?( APP_CONFIG[:photos_path] + self.path )
Dir.mkdir( APP_CONFIG[:thumbs_path] + self.path.encode("ASCII-8BIT") ) unless File.exists?( APP_CONFIG[:thumbs_path] + self.path )
Dir.mkdir( APP_CONFIG[:thumbs_path] + self.path ) unless File.exists?( APP_CONFIG[:thumbs_path] + self.path )
end
def destroy_folders

View File

@ -18,7 +18,8 @@ module ScanFiles
end
if album.nil?
puts "New album : " + File.basename( relpath )
album = Album.new( :path => relpath )
album = Album.new()
album.path = relpath
unless album.save
raise "unable to save album"
end
@ -26,7 +27,9 @@ module ScanFiles
photo = Photo.find_by_path( relfile )
if photo.nil?
puts " New photo added " + relfile
photo = Photo.new( :album => album, :path => relfile )
photo = Photo.new( )
photo.album = album
photo.path = relfile
unless photo.save
raise "unable to save photo"
end