OSDN Git Service

e
[pettanr/pettanr.git] / app / models / ground_color.rb
index 5204a02..cf78ded 100644 (file)
@@ -1,5 +1,5 @@
-class GroundColor < ActiveRecord::Base
-  include Element
+class GroundColor < Peta::Element
+  load_manifest
   include ElementInspire
   belongs_to :panel
   belongs_to :color
@@ -12,15 +12,6 @@ class GroundColor < ActiveRecord::Base
   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
-  end
-  
   def self.colum_structures
     @@colum_structures ||= {
       :code => {
@@ -64,14 +55,9 @@ 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
+  def visible? operators
+    return false unless super
+    self.owner_model.visible? operators
   end
   
   def div_offset
@@ -114,9 +100,15 @@ class GroundColor < ActiveRecord::Base
     end
   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; 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}"
+  def style spot = nil, opacity = 20
+    r = {
+      'position' => 'absolute', 'z-index' => self.z, 
+      'top' => self.div_y.to_s + '%', 'left' => self.div_x.to_s + '%', 
+      'width' => self.div_width.to_s + '%', 'height' => self.div_height.to_s + '%', 
+      'background-color' => '#' + format("%06x", self.code)
+    }
+    self.merge_opacity(r, opacity) if spot and spot != self
+    r
   end
   
   def boost
@@ -126,61 +118,12 @@ class GroundColor < ActiveRecord::Base
     'ground_color'
   end
   
-  def self.default_page_size
-    25
-  end
-  
-  def self.max_page_size
-    100
-  end
-  
-  def self.page prm = nil
-    page = prm.to_i
-    page = 1 if page < 1
-    page
-  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
-  end
-  
   def self.list_where
     'panels.publish > 0'
   end
   
-  def self.mylist_where au
-    ['panels.author_id = ?', au.id]
-  end
-  
-  def self.himlist_where au
-    ['panels.author_id = ? and panels.publish > 0', au.id]
-  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)
-  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)
-  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)
-  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)
-  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)
-  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
@@ -191,14 +134,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
@@ -207,7 +142,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
@@ -219,11 +154,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