X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=app%2Fmodels%2Flicense.rb;h=009f51ef8f8cc4ff53a91261696327b7b21ccd9c;hb=083cd052b6a10be6ddb3534307176f8c415952a8;hp=9a0fcb6d9df767a585fd62a349dcc591aa3b90e6;hpb=93b359296a4d2da735cf200bea2476c2dffcee3f;p=pettanr%2Fpettanr.git diff --git a/app/models/license.rb b/app/models/license.rb index 9a0fcb6d..009f51ef 100644 --- a/app/models/license.rb +++ b/app/models/license.rb @@ -1,56 +1,46 @@ # -class License < ActiveRecord::Base +class License < Peta::SystemResource + load_manifest belongs_to :license_group belongs_to :system_picture + has_many :resource_pictures - validates :license_group_id, :presence => true, :numericality => true, :existence => true + validates :license_group_id, :presence => true, :numericality => true, :existence => {:both => false} + validates :license_group_module_name, :presence => true, :length => {:maximum => 50} validates :name, :presence => true, :length => {:maximum => 50} validates :caption, :presence => true, :length => {:maximum => 30} - validates :url, :presence => true, :length => {:maximum => 200}, :uniqueness => true, :url => true #{:allow_blank => true} - validates :system_picture_id, :presence => true, :numericality => true, :existence => true + validates :url, :presence => true, :length => {:maximum => 200}, :uniqueness => {:scope => :name}, :url => {:message => I18n.t('errors.messages.url')} #{:allow_blank => true} + validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false} + validates :license_group_settings, :boost => {:boost_name => :license_group} + validates :credit_picture_settings, :boost => {:boost_name => :credit_picture} - def supply_default + def overwrite end - def overwrite + def caption_with_group + self.license_group.caption + '/' + self.caption end - def self.list - opt = {} - opt.merge!(License.list_opt) - opt.merge!({:order => 'name'}) - License.find(:all, opt) - end - - def self.list_opt - {:include => {:license_group => {}}} - end - - def self.list_json_opt - {:include => {:license_group => {}}} - end - - def self.show rid - opt = {} - opt.merge!(License.show_opt) - res = License.find(rid, opt) -# raise ActiveRecord::Forbidden unless res.visible?(au) - res + def self.index_list_where list + '' end def self.show_opt {:include => {:license_group => {}}} end - def self.show_json_opt - {:include => {:license_group => {}}} + def self.list_by_name name + License.find :all, :conditions => ['licenses.name = ?', name], :order => 'licenses.updated_at desc' end def self.store name, attr r = License.replace_system_picture attr + attr['credit_picture_settings'] = attr['credit_picture_settings'].to_json + attr['license_group_settings'] = attr['license_group_settings'].to_json l = License.modify_object name, attr + l.boosts 'post' if r == false - l.errors.add :base, 'system picture can not create' + l.errors.add :base, SystemPicture.model_name.human + I18n.t('errors.not_create') else l.save end @@ -68,4 +58,11 @@ class License < ActiveRecord::Base res end + def self.export(dt = nil) + opt = {} + opt.merge!({:conditions => ['updated_at >= ?', dt]}) if dt +# opt.merge!({:order => 'name'}) + License.find(:all, opt) + end + end