OSDN Git Service

fix: bin tool
[pettanr/pettanr.git] / app / models / picture.rb
1 #実素材
2 class Picture < Peta::Content
3   load_manifest
4   belongs_to :original_picture
5   belongs_to :license
6   belongs_to :system_picture
7   belongs_to :artist
8   has_one :resource_picture
9   has_one :resource_picture_picture
10   
11   validates :original_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
12   validates :revision, :presence => true, :numericality => true
13   validates :ext, :presence => true, :length => {:maximum => 4}, :inclusion => {:in => ['png', 'jpeg', 'gif']}
14   validates :width, :presence => true, :numericality => true, :natural_number => true
15   validates :height, :presence => true, :numericality => true, :natural_number => true
16   validates :filesize, :presence => true, :numericality => {:greater_than => 0, :less_than_or_equal_to => 2000000}, :natural_number => true
17   validates :md5, :presence => true, :length => {:minimum => 32, :maximum => 32}
18   validates :license_id, :presence => true, :numericality => true, :existence => {:both => false}
19   validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
20   validates :artist_id, :presence => true, :numericality => true, :existence => {:both => false}
21   validates :license_group_module_name, :presence => true, :length => {:maximum => 50}
22   
23   scope :find_index, -> do
24     self
25   end
26   
27   scope :find_by_artist, -> (artist_id) do 
28     find_index.where(artist_id: artist_id)
29   end
30   
31   scope :find_by_md5, -> (md5) do 
32     find_index.where(md5: md5).order(updated_at: :desc)
33   end
34   
35   scope :find_by_md5_without_original_picture, -> (md5, original_picture_id) do 
36     self.find_by_md5(md5).where.not(original_picture_id: original_picture_id).order(updated_at: :desc)
37   end
38   
39   def supply_default
40   end
41   
42   def overwrite rp
43     attr = {:width => rp.width, :height => rp.height, :ext => rp.ext, :filesize => rp.filesize, 
44       :original_picture_id => rp.original_picture_id, :license_id => rp.license_id, 
45       :system_picture_id => rp.system_picture_id, :artist_id => rp.artist_id, 
46       :md5 => rp.md5, 
47       :license_group_module_name => rp.license_group_module_name, 
48       :license_group_settings => rp.license_group_settings, 
49       :credit_picture_settings => rp.credit_picture_settings,
50       :license_settings => rp.license_settings
51     }
52     self.attributes = attr
53     self.revision = self.new_revision   #Do not move to attr. new_revision reffernces self.original_picture_id
54   end
55   
56   def visible? operators
57     return true
58   end
59   
60   def showable? operators = nil
61     return false unless self.original_picture
62     return true if self.own?(operators)
63     self.enable? and self.head?
64   end
65   
66   def filename
67     "#{self.id}.#{self.ext}"
68   end
69   
70   def gifname
71     "#{self.id}.gif"
72   end
73   
74   def mime_type
75     "image/#{self.ext}"
76   end
77   
78   def url
79     '/pictures/' + filename
80   end
81   
82   def opt_img_tag
83     {:src => self.url, :width => self.width, :height => self.height}
84   end
85   
86   def tmb_opt_img_tag
87     tw, th = PettanImager.thumbnail_size(self.width, self.height)
88     {:src => self.url, :width => tw, :height => th}
89   end
90   
91   def tail_opt_img_tag img
92     {:src => img, :width => self.width, :height => self.height}
93   end
94   
95   def tail_tmb_opt_img_tag img
96     tw, th = PettanImager.thumbnail_size(self.width, self.height)
97     {:src => img, :width => tw, :height => th}
98   end
99   
100   def alt_name
101     self.license.license_group.caption.to_s + '[' + self.license.caption.to_s + ']'
102   end
103   
104   def symbol_option
105     self.tmb_opt_img_tag
106   end
107   
108   def new_revision
109     Picture.where(original_picture_id: self.original_picture_id).maximum(:revision).to_i + 1
110   end
111   
112   def enable?
113     r = self.head.resource_picture
114     r ? true : false
115   end
116   
117   def self.head opid
118     Picture.where(original_picture_id: opid).order('pictures.revision desc').first
119   end
120   
121   def head
122     Picture.head(self.original_picture_id)
123   end
124   
125   def head?
126     self == head
127   end
128   
129   def to_gif?
130     self.ext == 'png' and self.license_extend.gif_convert >= 0
131   end
132   
133   def subdirs
134     self.license_extend.reverse < 0 ? [''] : ['', 'v', 'h', 'vh']
135   end
136   
137   def self.exist_by_md5 md5, opid
138     Picture.find_by_md5(md5, opid).empty? ? false : true
139   end
140   
141   def self.list_by_original_picture_where original_picture_id
142     ['pictures.original_picture_id = ?', original_picture_id]
143   end
144   
145   def self.list_by_original_picture original_picture_id, roles, page = 1, page_size = self.default_page_size
146     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)
147   end
148   
149   def self.list_opt
150     {:license => {}, :artist => {}}
151   end
152   
153   def self.list_json_opt
154     {:include => {:license => {}, :artist => {}} }
155   end
156   
157   def store(imager)
158     res = false
159     if res = self.save
160       if res = self.store_picture(imager, self.filename)
161         if self.to_gif?
162           if gifimager = imager.to_gif
163             res = self.store_picture(gifimager, self.gifname)
164           else
165             res = false
166           end
167         end
168       end
169     end
170     res
171   end
172   
173   def store_picture(imager, fn)
174     res = false
175     subdirs.each do |d|
176       picdata = d.empty? ? imager.binary : imager.__send__(d)
177       res = PictureIO.picture_io.put(picdata, fn, d)
178       break unless res
179     end
180     res
181   end
182   
183   def restore(subdir = nil)
184     PictureIO.picture_io.get self.filename, subdir
185   end
186   
187   def self.export(dt = nil)
188     pictures = Picture.includes(:artist).where('artists.author_id is not null')
189     pictures = pictures.where(['pictures.updated_at >= ?', dt]) if dt
190     pictures.order('pictures.updated_at desc').references(:artist)
191   end
192   
193   def self.list_as_json_text ary
194     '[' + ary.map {|i| i.to_json_with_picture_data }.join(',') + ']'
195   end
196   
197   def picture_data
198     Base64.encode64(self.restore)
199   end
200   
201   def to_json_with_picture_data
202     self.to_json({:methods => :picture_data})
203   end
204   
205   def unpublish
206     self.boosts 'post'
207     imager = PettanImager.load(File.open(Rails.root + 'app/assets/images/error.png', 'rb').read)
208     return false unless imager
209     self.store imager
210   end
211   
212   def credit_template
213     "#{self.license_group_module_name.tableize}/attributes/credit"
214   end
215   
216   def full_credit_template
217     "#{self.license_group_module_name.tableize}/attributes/full_credit"
218   end
219   
220 end