orbit-basic/app/models/design.rb

69 lines
1.3 KiB
Ruby

class Design
include Mongoid::Document
include Mongoid::Timestamps
field :title
field :author
field :intro
field :version
validates_presence_of :title
validates_presence_of :author
mount_uploader :layout, DesignFileUploader
embeds_many :stylesheets
embeds_many :javascripts
embeds_many :images
after_save :procs_embedded_objects
def javascripts=(*attrs)
self.files = (attrs << 'javascripts')
end
def stylesheets=(*attrs)
self.files = (attrs << 'stylesheets')
end
def images=(*attrs)
self.files = (attrs << 'images')
end
# Update or create the attribute_model records
def files=(attrs)
files = eval(attrs.last)
attrs[0].each do |a|
if(a[:id].nil?)
files.build(:file => a[:file], :to_save => true)
else
files.each do |file|
if file.id.to_s == a[:id]
file.to_destroy = a[:to_destroy]
end
end
end
end
end
protected
def procs_embedded_objects
[self.stylesheets, self.javascripts, self.images].each do |objects|
objects.each do |object|
if object.file.blank?
object.to_save = false
end
if object.to_save
object.to_save = false
object.save
end
debugger
if object.to_destroy
object.destroy
end
end
end
end
end