OSDN Git Service

fic picture publishing
[pettanr/pettanr.git] / app / models / picture.rb
index bb0b1ca..85c68ef 100644 (file)
@@ -1,7 +1,9 @@
 #実素材
-class Picture < ActiveRecord::Base
+class Picture < Peta::Content
+  load_manifest
   belongs_to :original_picture
   belongs_to :license
+  belongs_to :system_picture
   belongs_to :artist
   has_one :resource_picture
   
@@ -13,39 +15,35 @@ class Picture < ActiveRecord::Base
   validates :filesize, :presence => true, :numericality => {:greater_than => 0, :less_than_or_equal_to => 2000000}, :natural_number => true
   validates :md5, :presence => true, :length => {:minimum => 32, :maximum => 32}
   validates :license_id, :presence => true, :numericality => true, :existence => {:both => false}
+  validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
   validates :artist_id, :presence => true, :numericality => true, :existence => {:both => false}
   validates :artist_name, :presence => true
-  validates :classname, :presence => true, :length => {:maximum => 50}
+  validates :license_group_classname, :presence => true, :length => {:maximum => 50}
   
   def supply_default
   end
   
   def overwrite rp
     attr = {:width => rp.width, :height => rp.height, :ext => rp.ext, :filesize => rp.filesize, 
-      :original_picture_id => rp.original_picture_id, :license_id => rp.license_id, :artist_id => rp.artist_id, 
-      :md5 => rp.md5, :artist_name => rp.artist_name, :classname => rp.classname, :credit => rp.credit, :settings => rp.settings
+      :original_picture_id => rp.original_picture_id, :license_id => rp.license_id, 
+      :system_picture_id => rp.system_picture_id, :artist_id => rp.artist_id, 
+      :md5 => rp.md5, :artist_name => rp.artist_name, 
+      :license_group_classname => rp.license_group_classname, 
+      :license_group_settings => rp.license_group_settings, 
+      :credit_picture_settings => rp.credit_picture_settings,
+      :license_settings => rp.license_settings
     }
     self.attributes = attr
     self.revision = self.new_revision   #Do not move to attr. new_revision reffernces self.original_picture_id
   end
   
-  def own? ar
-    if ar.is_a?(Author)
-      self.artist_id == ar.artist.id
-    elsif ar.is_a?(Artist)
-      self.artist_id == ar.id
-    else
-      false
-    end
-  end
-  
-  def visible? ar
+  def visible? operators
     return true
   end
   
-  def showable? au = nil
+  def showable? operators = nil
     return false unless self.original_picture
-    return true if self.own?(au)
+    return true if self.own?(operators)
     self.enable? and self.head?
   end
   
@@ -83,6 +81,14 @@ class Picture < ActiveRecord::Base
     {:src => img, :width => tw, :height => th}
   end
   
+  def alt_name
+    self.license.license_group.caption.to_s + '[' + self.license.caption.to_s + ']'
+  end
+  
+  def symbol_option
+    self.tmb_opt_img_tag
+  end
+  
   def new_revision
     Picture.maximum(:revision, :conditions => ['original_picture_id = ?', self.original_picture_id]).to_i + 1
   end
@@ -105,11 +111,11 @@ class Picture < ActiveRecord::Base
   end
   
   def to_gif?
-    self.ext == 'png' and self.flag_gif_convert >= 0
+    self.ext == 'png' and self.license_extend.gif_convert >= 0
   end
   
   def subdirs
-    flag_reverse < 0 ? [''] : ['', 'v', 'h', 'vh']
+    self.license_extend.reverse < 0 ? [''] : ['', 'v', 'h', 'vh']
   end
   
   def self.find_by_md5 md5
@@ -129,11 +135,20 @@ class Picture < ActiveRecord::Base
     Picture.list_by_md5(md5, opid).empty? ? false : true
   end
   
-  def self.show rid, au
-    opt = {}
-    r = Picture.find(rid, opt)
-    raise ActiveRecord::Forbidden unless r.visible?(au)
-    r
+  def self.list_by_original_picture_where original_picture_id
+    ['pictures.original_picture_id = ?', original_picture_id]
+  end
+  
+  def self.list_by_original_picture original_picture_id, roles, page = 1, page_size = self.default_page_size
+    self.where(self.list_by_original_picture_where(original_picture_id)).includes(self.list_opt).order('pictures.revision desc').offset((page -1) * page_size).limit(page_size)
+  end
+  
+  def self.list_opt
+    {:license => {}, :artist => {}}
+  end
+  
+  def self.list_json_opt
+    {:include => {:license => {}, :artist => {}} }
   end
   
   def store(imager)
@@ -197,88 +212,11 @@ class Picture < ActiveRecord::Base
   end
   
   def credit_template
-    "#{self.classname.tableize}/attributes/credit"
+    "#{self.license_group_classname.tableize}/attributes/credit"
   end
   
   def full_credit_template
-    "#{self.classname.tableize}/attributes/full_credit"
-  end
-  
-  def credit_data
-    begin
-      @credit_data = JSON.parse(self.credit) unless @credit_data
-    rescue 
-    end
-    @credit_data
-  end
-  
-  def flags
-    return @flags if @flags
-    begin
-      @flags = JSON.parse(self.settings)
-    rescue 
-    end
-    @flags = {} unless @flags
-    @flags
-  end
-  
-  def flags=(s)
-    @flags = s
-  end
-  
-  def flag_open
-    @flag_open = (flags["open"] || -1) unless @flag_open
-    @flag_open
-  end
-  
-  def flag_commercial
-    @flag_commercial = (flags["commercial"] || -1) unless @flag_commercial
-    @flag_commercial
-  end
-  
-  def flag_official
-    @flag_official = (flags["official"] || -1) unless @flag_official
-    @flag_official
-  end
-  
-  def flag_attribution
-    @flag_attribution = (flags["attribution"] || -1) unless @flag_attribution
-    @flag_attribution
-  end
-  
-  def flag_derive
-    @flag_derive = (flags["derive"] || -1) unless @flag_derive
-    @flag_derive
-  end
-  
-  def flag_thumbnail
-    @flag_thumbnail = (flags["thumbnail"] || -1) unless @flag_thumbnail
-    @flag_thumbnail
-  end
-  
-  def flag_gif_convert
-    @flag_gif_convert = (flags["gif_convert"] || -1) unless @flag_gif_convert
-    @flag_gif_convert
-  end
-  
-  def flag_reverse
-    @flag_reverse = (flags["reverse"] || -1) unless @flag_reverse
-    @flag_reverse
-  end
-  
-  def flag_resize
-    @flag_resize = (flags["resize"] || -1) unless @flag_resize
-    @flag_resize
-  end
-  
-  def flag_sync_vh
-    @flag_sync_vh = (flags["sync_vh"] || -1) unless @flag_sync_vh
-    @flag_sync_vh
-  end
-  
-  def flag_overlap
-    @flag_overlap = (flags["overlap"] || -1) unless @flag_overlap
-    @flag_overlap
+    "#{self.license_group_classname.tableize}/attributes/full_credit"
   end
   
 end