X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fmodels%2Fballoon.rb;h=35f597124df956f6f3d27a3c670caeead94feb52;hb=b8bd6a66f23bb46aae1e57da1eb6899a75240994;hp=546ecfe8725c08ea5e35b1286ee3155e204d9f56;hpb=a9ec68d632929b0cb3c5391309180e41ef38b048;p=pettanr%2Fpettanr.git diff --git a/app/models/balloon.rb b/app/models/balloon.rb index 546ecfe8..35f59712 100644 --- a/app/models/balloon.rb +++ b/app/models/balloon.rb @@ -1,8 +1,12 @@ -class Balloon < ActiveRecord::Base +class Balloon < Peta::Element + load_manifest belongs_to :speech_balloon + belongs_to :speech_balloon_template belongs_to :system_picture validates :speech_balloon_id, :numericality => {:allow_blank => true} + validates :speech_balloon_template_id, :presence => true, :numericality => true, :existence => {:both => false} + validates :speech_balloon_template_module_name, :presence => true, :length => {:maximum => 50} validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false} validates :x, :presence => true, :numericality => true validates :y, :presence => true, :numericality => true @@ -10,82 +14,56 @@ class Balloon < ActiveRecord::Base validates :height, :presence => true, :numericality => true, :natural_number => true validates :r, :presence => true, :numericality => true # validates :caption, :presence => true -# validates :settings, :presence => true + validates :speech_balloon_template_settings, :boost => {:boost_name => :speech_balloon_template} - before_validation :valid_encode - - def valid_encode - ['settings'].each do |a| - next if attributes[a] == nil - raise Pettanr::BadRequest unless attributes[a].valid_encoding? - end + def attr_y + self.attributes['y'] end def url '/system_pictures/' + self.system_picture.filename end - def visible? roles - if MagicNumber['run_mode'] == 0 - return false unless guest_role_check(roles) - else - return false unless reader_role_check(roles) - end - return true if self.speech_balloon.panel.own?(roles) - self.speech_balloon.panel.visible? roles - end - - def self.default_page_size - 25 + def supply_default + self.x = 0 + self.y = 0 + self.width = 100 + self.height = 100 + self.r = 0 +self.system_picture_id = 1 end - def self.max_page_size - 100 + def symbol_option + self.speech_balloon.speech_balloon_template.symbol_option end - def self.page prm = nil - page = prm.to_i - page = 1 if page < 1 - page + def self.public_list_where + 'panels.publish > 0' end - def self.page_size prm = self.default_page_size - page_size = prm.to_i - page_size = self.max_page_size if page_size > self.max_page_size - page_size = self.default_page_size if page_size < 1 - page_size + def self.by_author_list_includes + { + :speech_balloon => { + :panel => { + :author => {} + } + } + } end - def self.list page = 1, page_size = self.default_page_size - opt = {} - opt.merge!(Balloon.list_opt) - opt.merge!({:limit => page_size, :offset => (page -1) * page_size}) if page_size > 0 - opt.merge!({:conditions => 'panels.publish > 0', :order => 'balloons.updated_at desc'}) - Balloon.find(:all, opt) - end - - def self.list_opt + def self.show_opt {:include => {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}} end - def self.list_json_opt - {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :speech => {}, :speech_balloon_template => {} }}}} - end - - def self.show cid, au - opt = {} - opt.merge!(Balloon.show_opt) - res = Balloon.find(cid, opt) - raise ActiveRecord::Forbidden unless res.visible?(au) - res - end - - def self.show_opt - {:include => {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}} + def style + { + 'width' => self.width.to_s + 'px','height' => self.height.to_s + 'px', + 'top' => self.attr_y.to_s + 'px','left' => self.x.to_s + 'px' + } end - def self.show_json_opt - {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :speech => {}, :speech_balloon_template => {} }}}} + def self.panelize balloon_attributes + {'balloon_attributes' => balloon_attributes} end def scenario