OSDN Git Service

assets compile
[pettanr/pettanr.git] / app / models / license.rb
1 #
2 class License < Peta::SystemResource
3   load_manifest
4   belongs_to :license_group
5   belongs_to :system_picture
6   has_many :resource_pictures
7   
8   validates :license_group_id, :presence => true, :numericality => true, :existence => {:both => false}
9   validates :license_group_module_name, :presence => true, :length => {:maximum => 50}
10   validates :name, :presence => true, :length => {:maximum => 50}
11   validates :caption, :presence => true, :length => {:maximum => 30}
12   validates :url, :presence => true, :length => {:maximum => 200}, :uniqueness => {:scope => :name}, :url => {:message => I18n.t('errors.messages.url')} #{:allow_blank => true}
13   validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
14   validates :license_group_settings, :boost => {:boost_name => :license_group}
15   validates :credit_picture_settings, :boost => {:boost_name => :credit_picture}
16   
17   def overwrite 
18   end
19   
20   def caption_with_group
21     self.license_group.caption + '/' + self.caption
22   end
23   
24   def self.list_where
25     ''
26   end
27   
28   def self.list_order
29     'licenses.name'
30   end
31   
32   def self.show_opt
33     {:include => {:license_group => {}}}
34   end
35   
36   def self.list_by_name name
37     License.find :all, :conditions => ['licenses.name = ?', name], :order => 'licenses.updated_at desc'
38   end
39   
40   def self.store name, attr
41     r = License.replace_system_picture attr
42     attr['credit_picture_settings'] = attr['credit_picture_settings'].to_json
43     attr['license_group_settings'] = attr['license_group_settings'].to_json
44     l = License.modify_object name, attr
45     l.boosts 'post'
46     if r == false
47       l.errors.add :base, SystemPicture.model_name.human + I18n.t('errors.not_create')
48     else
49       l.save
50     end
51     l
52   end
53   
54   def self.stores attrs, lg_id
55     res = 0
56     return 0 unless attrs.is_a?(Hash)
57     attrs.each do |name, attr|
58       attr["license_group_id"] = lg_id
59       l = License.store name, attr
60       res += 1 unless l.valid?
61     end
62     res
63   end
64   
65   def self.export(dt = nil)
66     opt = {}
67     opt.merge!({:conditions => ['updated_at >= ?', dt]}) if dt
68 #    opt.merge!({:order => 'name'})
69     License.find(:all, opt)
70   end
71   
72 end