OSDN Git Service

temp
[pettanr/pettanr.git] / app / models / ground_picture.rb
index 4b4269e..98e0abb 100644 (file)
@@ -1,4 +1,4 @@
-class GroundPicture < Pettanr::Item
+class GroundPicture < Pettanr::Content
   include Element
   include ElementInspire
   belongs_to :panel
@@ -14,20 +14,12 @@ class GroundPicture < Pettanr::Item
   
   @@repeat_texts = ['repeat', 'repeat-x', 'repeat-y', 'no-repeat']
   
-  def self.singular
-    'GroundPicture'
-  end
-  
-  def self.plural
-    'GroundPictures'
-  end
-  
-  def self.owner_type
-    :author
+  def owner_model
+    self.panel
   end
   
   def self.valid_encode_columns
-    super.merge ['caption']
+    super + ['caption']
   end
   
   def self.list_opt_for_panel
@@ -70,14 +62,9 @@ class GroundPicture < Pettanr::Item
     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 opt_div_style full_url, spot = nil, opacity = 20
@@ -105,69 +92,12 @@ class GroundPicture < Pettanr::Item
     @@repeat_texts[self.repeat]
   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
-    GroundPicture.where(self.list_where()).includes(GroundPicture.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
-  end
-  
-  def self.mylist au, page = 1, page_size = Author.default_ground_picture_page_size
-    GroundPicture.where(self.mylist_where(au)).includes(GroundPicture.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
-  end
-  
-  def self.himlist au, page = 1, page_size = Author.default_ground_picture_page_size
-    GroundPicture.where(self.himlist_where(au)).includes(GroundPicture.list_opt).order('ground_pictures.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(GroundPicture.where(self.list_where()).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
-  end
-  
-  def self.mylist_paginate au, page = 1, page_size = Author.default_ground_picture_page_size
-    Kaminari.paginate_array(Array.new(GroundPicture.where(self.mylist_where(au)).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
-  end
-  
-  def self.himlist_paginate au, page = 1, page_size = Author.default_ground_picture_page_size
-    Kaminari.paginate_array(Array.new(GroundPicture.where(self.himlist_where(au)).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
-  end
-  
-  def self.list_by_panel_where panel_id
-    ['ground_pictures.panel_id = ?', panel_id]
-  end
-  
-  def self.list_by_panel panel_id, roles, page = 1, page_size = self.default_page_size
-    self.where(self.list_by_panel_where(panel_id)).includes(self.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
+  def self.list_order
+    'ground_pictures.updated_at desc'
   end
   
   def self.list_opt
@@ -178,14 +108,6 @@ class GroundPicture < Pettanr::Item
     {:include => {:panel => {:include => {:author => {}}}, :picture => {:include => {:artist => {}, :license => {}}} }}
   end
   
-  def self.show cid, au
-    opt = {}
-    opt.merge!(GroundPicture.show_opt)
-    res = GroundPicture.find(cid, opt)
-    raise ActiveRecord::Forbidden unless res.visible?(au)
-    res
-  end
-  
   def self.show_opt
     {:include => {:panel => {:author => {}}, :picture => {:artist => {}, :license => {}}}}
   end