OSDN Git Service

690770fcbf89a1d36704a0f9642ecf42f38bb7f8
[pettanr/pettanr.git] / app / models / ground_color.rb
1 class GroundColor < ActiveRecord::Base
2   include Element
3   include ElementInspire
4   belongs_to :panel
5   belongs_to :color
6   
7   validates :panel_id, :numericality => {:allow_blank => true}
8   validates :code, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
9   validates :z, :presence => true, :numericality => {:greater_than => 0}
10   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
11   
12   before_validation :valid_encode
13   
14   def valid_encode
15     ['caption'].each do |a|
16       next if attributes[a] == nil
17       raise Pettanr::BadRequest unless attributes[a].valid_encoding?
18     end
19   end
20   
21   def self.list_opt_for_panel
22     {
23       :ground_colors => {
24       }
25     }
26   end
27   
28   def self.show_opt_for_panel
29     {
30       :ground_colors => {
31       }
32     }
33   end
34   
35   def self.json_opt_for_panel
36     {
37     }
38   end
39   
40   def self.has_picture?
41     false
42   end
43   
44   def supply_default
45     self.code ||= 0
46     if self.panel
47       self.t = self.panel.new_t 
48       self.z = self.panel.new_z 
49     end
50   end
51   
52   def overwrite pid
53     self.panel_id = pid
54   end
55   
56   def visible? roles
57     if MagicNumber['run_mode'] == 0
58       return false unless guest_role_check(roles)
59     else
60       return false unless reader_role_check(roles)
61     end
62     return true if self.panel.own?(roles)
63     self.panel.visible? roles
64   end
65   
66   def opt_div_style spot = nil, opacity = 20
67     o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
68     "position: absolute; width:#{self.get_panel.width}px; height:#{self.get_panel.height}px; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
69   end
70   
71   def new_panel
72     @new_panel
73   end
74   
75   def new_panel= v
76     @new_panel = v
77   end
78   
79   def get_panel
80     self.panel || @new_panel
81   end
82   
83   def tag_id c = nil
84     'panel' + tag_panel_id + 'ground_color' + tag_element_id + c.to_s
85   end
86   
87   def field_tag_id f
88     self.tag_id + f.to_s
89   end
90   
91   def tag_panel_id
92     self.get_panel.new_record? ? '0' : self.get_panel.id.to_s
93   end
94   
95   def tag_element_id
96     self.new_record? ? '0' : self.id.to_s
97   end
98   
99   def tag_element_type
100     'ground_color'
101   end
102   
103   def self.default_page_size
104     25
105   end
106   
107   def self.max_page_size
108     100
109   end
110   
111   def self.page prm = nil
112     page = prm.to_i
113     page = 1 if page < 1
114     page
115   end
116   
117   def self.page_size prm = self.default_page_size
118     page_size = prm.to_i
119     page_size = self.max_page_size if page_size > self.max_page_size
120     page_size = self.default_page_size if page_size < 1
121     page_size
122   end
123   
124   def self.list_where
125     'panels.publish > 0'
126   end
127   
128   def self.mylist_where au
129     ['panels.author_id = ?', au.id]
130   end
131   
132   def self.himlist_where au
133     ['panels.author_id = ? and panels.publish > 0', au.id]
134   end
135   
136   def self.list page = 1, page_size = self.default_page_size
137     GroundColor.where(self.list_where()).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
138   end
139   
140   def self.mylist au, page = 1, page_size = Author.default_ground_color_page_size
141     GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
142   end
143   
144   def self.himlist au, page = 1, page_size = Author.default_ground_color_page_size
145     GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
146   end
147   
148   def self.list_paginate page = 1, page_size = self.default_page_size
149     Kaminari.paginate_array(Array.new(GroundColor.where(self.list_where()).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
150   end
151   
152   def self.mylist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
153     Kaminari.paginate_array(Array.new(GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
154   end
155   
156   def self.himlist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
157     Kaminari.paginate_array(Array.new(GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
158   end
159   
160   def self.list_opt
161     {:panel => {:author => {}} }
162   end
163   
164   def self.list_json_opt
165     {:include => {:panel => {:include => {:author => {}}} }}
166   end
167   
168   def self.show cid, roles
169     opt = {}
170     opt.merge!(GroundColor.show_opt)
171     res = GroundColor.find(cid, opt)
172     raise ActiveRecord::Forbidden unless res.visible?(roles)
173     res
174   end
175   
176   def self.show_opt
177     {:include => {:panel => {:author => {}} }}
178   end
179   
180   def self.show_json_opt
181     {:include => {:panel => {:include => {:author => {}}} }}
182   end
183   
184   def store au
185     if self.new_record?
186       self.panel.ground_colors.build(self.attributes)
187     else
188       self.panel.ground_colors.each do |ground_color|
189         next unless ground_color == self
190         attr = self.attributes
191         attr.delete 'id'
192         ground_color.attributes = attr
193         break
194       end
195     end
196     self.panel.store({}, au)
197   end
198   
199   def remove au
200     self.panel.remove_element(self, au)
201   end
202   
203   def scenario
204     if caption.blank?
205       ''
206     else
207       '<p>' + ERB::Util.html_escape(self.caption) + '</p>'
208     end
209   end
210   
211   def plain_scenario
212     if caption.blank?
213       ''
214     else
215       self.caption + "\n"
216     end
217   end
218   
219 end