OSDN Git Service

fix: fetch fail
[pettanr/pettanr.git] / app / models / comic.rb
index 92f1568..269f07b 100644 (file)
@@ -1,80 +1,73 @@
 #コミック
-class Comic < Peta::Content
-  has_many :stories, :order => 't'
+class Comic < Peta::Binder
+  load_manifest
+  has_many :comic_stories
   belongs_to :author
   
   validates :title, :presence => true, :length => {:maximum => 100}
   validates :visible, :presence => true, :numericality => true, :inclusion => {:in => 0..1}
   validates :author_id, :presence => true, :numericality => true, :existence => {:both => false}
   
-  def self.valid_encode_columns
-    super + ['title', 'description']
+  scope :find_index, -> do
+    where(arel_table[:visible].gt 0)
   end
   
-  def self.visible_count_options
-    {:conditions => 'visible > 0'}
+  scope :find_private, -> (operators) do 
+    where(author_id: operators.author.id)
   end
   
-  def supply_default
-    self.visible = 0 if self.visible.blank?
-  end
-  
-  def overwrite operators
-    return false unless operators.author
-    self.author_id = operators.author.id
-  end
-  
-  def visible? operators
-    return false unless super
-    self.visible > 0
+  scope :find_by_author, -> (author_id) do 
+    find_index.where(author_id: author_id)
   end
   
-  def comic_stories_count
-    Story.where(['stories.comic_id = ?', self.id]).count
+  scope :with_stories, -> do
+    includes(comic_stories: :story)
   end
   
-  def symbol_filename
+  scope :find_by_story, -> (story_id) do 
+    with_stories.find_index.where(Story.arel_table[:id].eq story_id).references(:story)
   end
   
-  def self.list_where
-    'comics.visible > 0'
+  # scope of find_play
+  def self.find_play(id)
+    ComicStory.find_play(id)
   end
   
-  def self.list_order
-    'comics.updated_at desc'
+  # scope of find_private_play
+  def self.find_private_play(id, operators)
+    ComicStory.find_private_play(id, operators)
   end
   
-  def self.list_opt
-    {:stories => {}, :author => {} }
+  def supply_default
+    self.visible = 0 if self.visible.blank?
+    self.author_id = nil
   end
   
-  def self.list_json_opt
-    {:include => {:stories => {}, :author => {}} }
+  def overwrite operators
+    return false unless operators.author
+    self.author_id = operators.author.id
   end
   
-  def self.show_opt
-    {:include => {:stories => {}, :author => {}} }
+  def visible? operators
+    case super
+    when nil # super return
+      return true
+    when false
+      return false
+    else
+      self.visible > 0
+    end
   end
   
-  def self.show_json_opt
-    {:include => {:stories => {}, :author => {}} }
+  def symbol_filename
   end
   
-  def tag_attributes column = nil, opt = {}
-    {
-    }
+  def self.public_list_where list
+    'comics.visible > 0'
   end
   
-  def destroy_with_story
-    res = false
-    Comic.transaction do
-      self.stories.each do |story|
-        raise ActiveRecord::Rollback unless story.destroy_and_shorten
-      end
-      raise ActiveRecord::Rollback unless self.destroy
-      res = true
-    end
-    res
+  def self.show_opt
+    {:include => {:comic_stories => {:story => {}}, :author => {}}}
   end
   
   def scenario