X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fmodels%2Fground_color.rb;h=4bb6124d15a6885a4a70c769224409d5a166264b;hb=a8af764be9b48ad0bf9eaca3e90f48af2c62ee3c;hp=bbf59f8d1c2d82e61c1444938032e08b3393d83a;hpb=f147e9e652978757d8a4ae58e11f2c81f69fac0e;p=pettanr%2Fpettanr.git diff --git a/app/models/ground_color.rb b/app/models/ground_color.rb index bbf59f8d..4bb6124d 100644 --- a/app/models/ground_color.rb +++ b/app/models/ground_color.rb @@ -1,21 +1,23 @@ -class GroundColor < ActiveRecord::Base - include Element +class GroundColor < Peta::Element + load_manifest include ElementInspire belongs_to :panel belongs_to :color validates :panel_id, :numericality => {:allow_blank => true} validates :code, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000} + validates :orientation, :presence => true, :numericality => true, :inclusion => {:in => 0..1} + validates :xy, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true} + validates :wh, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true} validates :z, :presence => true, :numericality => {:greater_than => 0} validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0} - before_validation :valid_encode - - def valid_encode - ['caption'].each do |a| - next if attributes[a] == nil - raise Pettanr::BadRequest unless attributes[a].valid_encoding? - end + def self.colum_structures + @@colum_structures ||= { + :code => { + :helper => 'panels/color_helper' + } + } end def self.list_opt_for_panel @@ -53,83 +55,69 @@ class GroundColor < ActiveRecord::Base self.panel_id = pid 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.panel.own?(roles) - self.panel.visible? roles - end - - def opt_div_style spot = nil, opacity = 20 - o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : '' - "position: absolute; width:#{self.get_panel.width}px; height:#{self.get_panel.height}px; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}" - end - - def boost - end - - def tag_element_type - 'ground_color' - end - - def self.default_page_size - 25 - end - - def self.max_page_size - 100 + def visible? operators + return false unless super + self.owner_model.visible? operators end - def self.page prm = nil - page = prm.to_i - page = 1 if page < 1 - page + def div_offset + xy ? xy : 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 div_size + wh ? wh : 100 - self.div_offset end - def self.list_where - 'panels.publish > 0' + def div_x + if self.orientation == 0 + 0 + else + self.div_offset + end end - def self.mylist_where au - ['panels.author_id = ?', au.id] + def div_y + if self.orientation == 0 + self.div_offset + else + 0 + end end - def self.himlist_where au - ['panels.author_id = ? and panels.publish > 0', au.id] + def div_width + if self.orientation == 0 + 100 + else + self.div_size + end end - def self.list page = 1, page_size = self.default_page_size - GroundColor.where(self.list_where()).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size) + def div_height + if self.orientation == 0 + self.div_size + else + 100 + end end - def self.mylist au, page = 1, page_size = Author.default_ground_color_page_size - GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size) + def opt_div_style spot = nil, opacity = 20 + o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : '' + "position: absolute; left:#{self.div_x}%; top:#{self.div_y}%; width:#{self.div_width}%; height:#{self.div_height}%; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}" end - def self.himlist au, page = 1, page_size = Author.default_ground_color_page_size - GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size) + def boost end - def self.list_paginate page = 1, page_size = self.default_page_size - Kaminari.paginate_array(Array.new(GroundColor.where(self.list_where()).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size) + def tag_element_type + 'ground_color' end - def self.mylist_paginate au, page = 1, page_size = Author.default_ground_color_page_size - Kaminari.paginate_array(Array.new(GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size) + def self.list_where + 'panels.publish > 0' end - def self.himlist_paginate au, page = 1, page_size = Author.default_ground_color_page_size - Kaminari.paginate_array(Array.new(GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size) + def self.list_order + 'ground_colors.updated_at desc' end def self.list_opt @@ -140,14 +128,6 @@ class GroundColor < ActiveRecord::Base {:include => {:panel => {:include => {:author => {}}} }} end - def self.show cid, roles - opt = {} - opt.merge!(GroundColor.show_opt) - res = GroundColor.find(cid, opt) - raise ActiveRecord::Forbidden unless res.visible?(roles) - res - end - def self.show_opt {:include => {:panel => {:author => {}} }} end @@ -156,7 +136,7 @@ class GroundColor < ActiveRecord::Base {:include => {:panel => {:include => {:author => {}}} }} end - def store au + def store operators if self.new_record? self.panel.ground_colors.build(self.attributes) else @@ -168,11 +148,11 @@ class GroundColor < ActiveRecord::Base break end end - self.panel.store({}, au) + self.panel.store({}, operators) end - def remove au - self.panel.remove_element(self, au) + def remove operators + self.panel.remove_element(self, operators) end def scenario