OSDN Git Service

d8ac557d310a062c942df2773a53b63e8b0536d2
[pettanr/pettanr.git] / app / models / ground_picture.rb
1 class GroundPicture < ActiveRecord::Base
2   belongs_to :panel
3   belongs_to :picture
4   
5   validates :panel_id, :numericality => {:allow_blank => true}
6   validates :repeat, :numericality => true, :inclusion => { :in => 0..3 }
7   validates :x, :numericality => true
8   validates :y, :numericality => true
9   validates :picture_id, :numericality => true, :existence => {:both => false}
10   validates :z, :presence => true, :numericality => {:greater_than => 0}
11   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
12   
13   @@repeat_texts = ['repeat', 'repeat-x', 'repeat-y', 'no-repeat']
14   
15   before_validation :valid_encode
16   
17   def valid_encode
18     ['caption'].each do |a|
19       next if attributes[a] == nil
20       raise Pettanr::BadRequest unless attributes[a].valid_encoding?
21     end
22   end
23   
24   def supply_default
25     self.x = 0
26     self.y = 0
27     self.repeat = 0
28     if self.panel
29       self.t = self.panel.new_t 
30       self.z = self.panel.new_z 
31     end
32   end
33   
34   def overwrite pid
35     self.panel_id = pid
36   end
37   
38   def visible? roles
39     if MagicNumber['run_mode'] == 0
40       return false unless guest_role_check(roles)
41     else
42       return false unless reader_role_check(roles)
43     end
44     return true if self.panel.own?(roles)
45     self.panel.visible? roles
46   end
47   
48   def opt_div_style full_url, spot = nil, opacity = 20
49     o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
50     "position: absolute; width:#{self.panel.width}px; height:#{self.panel.height}px; top: 0px; left: 0px;  z-index:#{self.z}; background-image: url(#{full_url}); background-repeat: #{self.repeat_text}; background-position: #{self.x}px, #{self.y}px; #{o}"
51   end
52   
53   def tmb_opt_img_tag
54     tw, th = PettanImager.thumbnail_size(self.picture.width, self.picture.height)
55     {:src => self.picture.url, :width => tw, :height => th, :alt => self.caption}
56   end
57   
58   def repeat_text
59     @@repeat_texts[self.repeat]
60   end
61   
62   def self.default_page_size
63     25
64   end
65   
66   def self.max_page_size
67     100
68   end
69   
70   def self.page prm = nil
71     page = prm.to_i
72     page = 1 if page < 1
73     page
74   end
75   
76   def self.page_size prm = self.default_page_size
77     page_size = prm.to_i
78     page_size = self.max_page_size if page_size > self.max_page_size
79     page_size = self.default_page_size if page_size < 1
80     page_size
81   end
82   
83   def self.list_where
84     'panels.publish > 0'
85   end
86   
87   def self.mylist_where au
88     ['panels.author_id = ?', au.id]
89   end
90   
91   def self.himlist_where au
92     ['panels.author_id = ? and panels.publish > 0', au.id]
93   end
94   
95   def self.list page = 1, page_size = self.default_page_size
96     GroundPicture.where(self.list_where()).includes(GroundPicture.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
97   end
98   
99   def self.mylist au, page = 1, page_size = Author.default_ground_picture_page_size
100     GroundPicture.where(self.mylist_where(au)).includes(GroundPicture.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
101   end
102   
103   def self.himlist au, page = 1, page_size = Author.default_ground_picture_page_size
104     GroundPicture.where(self.himlist_where(au)).includes(GroundPicture.list_opt).order('ground_pictures.updated_at desc').offset((page -1) * page_size).limit(page_size)
105   end
106   
107   def self.list_paginate page = 1, page_size = self.default_page_size
108     Kaminari.paginate_array(Array.new(GroundPicture.where(self.list_where()).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
109   end
110   
111   def self.mylist_paginate au, page = 1, page_size = Author.default_ground_picture_page_size
112     Kaminari.paginate_array(Array.new(GroundPicture.where(self.mylist_where(au)).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
113   end
114   
115   def self.himlist_paginate au, page = 1, page_size = Author.default_ground_picture_page_size
116     Kaminari.paginate_array(Array.new(GroundPicture.where(self.himlist_where(au)).includes(GroundPicture.list_opt).count, nil)).page(page).per(page_size)
117   end
118   
119   def self.list_opt
120     {:panel => {:author => {}}, :picture => {:artist => {}, :license => {}} }
121   end
122   
123   def self.list_json_opt
124     {:include => {:panel => {:include => {:author => {}}}, :picture => {:include => {:artist => {}, :license => {}}} }}
125   end
126   
127   def self.show cid, au
128     opt = {}
129     opt.merge!(GroundPicture.show_opt)
130     res = GroundPicture.find(cid, opt)
131     raise ActiveRecord::Forbidden unless res.visible?(au)
132     res
133   end
134   
135   def self.show_opt
136     {:include => {:panel => {:author => {}}, :picture => {:artist => {}, :license => {}}}}
137   end
138   
139   def self.show_json_opt
140     {:include => {:panel => {:include => {:author => {}}}, :picture => {:include => {:artist => {}, :license => {}}} }}
141   end
142   
143   def store au
144     if self.new_record?
145       self.panel.ground_pictures.build(self.attributes)
146     else
147       self.panel.ground_pictures.each do |ground_picture|
148         next unless ground_picture == self
149         attr = self.attributes
150         attr.delete 'id'
151         ground_picture.attributes = attr
152         break
153       end
154     end
155     self.panel.store({}, au)
156   end
157   
158   def remove au
159     d = false
160     ground_pictures_attributes = {}
161     self.panel.ground_pictures.each do |ground_picture|
162       attr = ground_picture.attributes
163       if ground_picture == self
164         attr['_destroy'] = true
165         d = true
166       else
167         if d
168  #         attr['t']  -= 1 
169         end
170       end
171       ground_pictures_attributes[ground_picture.id] = attr
172     end
173     self.panel.attributes = {:ground_pictures_attributes => ground_pictures_attributes}
174     self.panel.store({}, au)
175   end
176   
177   def scenario
178     ''
179   end
180   
181 end