OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / models / ground_color.rb
index 5bb2d73..a4c9a66 100644 (file)
-class GroundColor < ActiveRecord::Base
+class GroundColor < Peta::Element
+  load_manifest
   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
-  end
-  
-  def supply_default
-    self.code = 0
-    if self.panel
-      self.t = self.panel.new_t 
-      self.z = self.panel.new_z 
-    end
+  scope :with_panel, -> do
+    includes(:panel)
   end
   
-  def overwrite pid
-    self.panel_id = pid
+  scope :find_index, -> do
+    with_panel.where(Panel.arel_table[:publish].gt 0).references(:panel)
   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
+  scope :find_private, -> (operators) do 
+    with_panel.where(Panel.arel_table[:author_id].eq operators.author.id).references(:panel)
   end
   
-  def tag_id c = nil
-    'panel' + tag_panel_id + 'ground_color' + tag_element_id + c.to_s
+  scope :find_by_panel, -> (panel_id) do 
+    find_index.where(panel_id: panel_id).references(:panel)
   end
   
-  def field_tag_id f
-    self.tag_id + f.to_s
+  scope :find_by_author, -> (author_id) do 
+    find_index.where(Panel.arel_table[:author_id].eq author_id).references(:panel)
   end
   
-  def tag_panel_id
-    self.panel.new_record? ? '0' : self.panel.id.to_s
+  def self.by_author_list_includes
+    {
+      :panel => {
+        :author => {}
+      }
+    }
   end
   
-  def tag_element_id
-    self.new_record? ? '0' : self.id.to_s
+  def self.has_picture?
+    false
   end
   
-  def tag_element_type
-    'ground_color'
-  end
-  
-  def field_tree f
-    'panels-' + self.tag_panel_id + '-ground_colors_attributes_-' + self.tag_element_id + '-' + f.to_s
-  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]
+  def supply_default
+    self.code ||= 0
+    if self.panel
+      self.t = self.panel.new_t 
+      self.z = self.panel.new_z 
+    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 overwrite pid
+    self.panel_id = pid
   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 div_offset
+    xy ? xy : 0
   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 div_size
+    wh ? wh : 100 - self.div_offset
   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 div_x
+    if self.orientation == 0
+      0
+    else
+      self.div_offset
+    end
   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 div_y
+    if self.orientation == 0
+      self.div_offset
+    else
+      0
+    end
   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 div_width
+    if self.orientation == 0
+      100
+    else
+      self.div_size
+    end
   end
   
-  def self.list_opt
-    {:panel => {:author => {}} }
+  def div_height 
+    if self.orientation == 0
+      self.div_size
+    else
+      100
+    end
   end
   
-  def self.list_json_opt
-    {:include => {:panel => {:include => {:author => {}}} }}
+  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 self.show cid, roles
-    opt = {}
-    opt.merge!(GroundColor.show_opt)
-    res = GroundColor.find(cid, opt)
-    raise ActiveRecord::Forbidden unless res.visible?(roles)
-    res
+  def self.public_list_where list
+    'panels.publish > 0'
   end
   
   def self.show_opt
     {:include => {:panel => {:author => {}} }}
   end
   
-  def self.show_json_opt
-    {:include => {:panel => {:include => {:author => {}}} }}
-  end
-  
-  def store au
-    if self.new_record?
-      self.panel.ground_colors.build(self.attributes)
+  def scenario
+    if caption.blank?
+      ''
     else
-      self.panel.ground_colors.each do |ground_color|
-        next unless ground_color == self
-        attr = self.attributes
-        attr.delete 'id'
-        ground_color.attributes = attr
-        break
-      end
-    end
-    self.panel.store({}, au)
-  end
-  
-  def remove au
-    d = false
-    ground_colors_attributes = {}
-    self.panel.ground_colors.each do |ground_color|
-      attr = ground_color.attributes
-      if ground_color == self
-        attr['_destroy'] = true
-        d = true
-      else
-        if d
-          attr['t']  -= 1 
-        end
-      end
-      ground_colors_attributes[ground_color.id] = attr
+      '<p>' + ERB::Util.html_escape(self.caption) + '</p>'
     end
-    self.panel.attributes = {:ground_colors_attributes => ground_colors_attributes}
-    self.panel.store({}, au)
   end
   
-  def scenario
-    ''
+  def plain_scenario
+    if caption.blank?
+      ''
+    else
+      self.caption + "\n"
+    end
   end
   
 end