orbit-basic/vendor/built_in_modules/web_resource/app/models/web_link.rb

87 lines
1.9 KiB
Ruby
Raw Normal View History

2012-02-15 07:38:27 +00:00
# encoding: utf-8
class WebLink
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::MultiParameterAttributes
2013-04-26 03:18:57 +00:00
include OrbitTag::Taggable
taggable
scope :available_for_lang, ->(locale){ where("available_for_#{locale}".to_sym => true) }
2012-07-25 20:10:15 +00:00
field :title, localize: true
field :context, localize: true
2012-02-15 07:38:27 +00:00
2013-04-26 03:18:57 +00:00
#has_and_belongs_to_many :tags, :class_name => "WebResourceTag"
2012-02-15 07:38:27 +00:00
field :url, localize: true
2012-02-15 07:38:27 +00:00
field :create_user_id
field :update_user_id
field :is_top, :type => Boolean, :default => false
field :is_hot, :type => Boolean, :default => false
field :is_hidden, :type => Boolean, :default => false
scope :can_display,where(is_hidden: false)
2012-02-15 07:38:27 +00:00
belongs_to :web_link_category
before_save :update_avliable_language, :clean_tags
validates :title, :at_least_one => true
2012-02-15 07:38:27 +00:00
before_validation :add_http
# validates :url, :presence => true, :format => /^(http|https):\/\/(([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5})|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))(:[0-9]{1,5})?(\/.*)?/i
2012-02-16 03:30:54 +00:00
def self.search( category_id = nil )
2012-02-15 07:38:27 +00:00
2012-02-16 03:30:54 +00:00
if category_id.to_s.size > 0
2012-02-15 07:38:27 +00:00
2012-07-25 20:10:15 +00:00
find(:all, :conditions => {web_link_category_id: category_id}).desc( :is_top, :title )
2012-02-16 03:30:54 +00:00
2012-02-15 07:38:27 +00:00
else
2012-07-25 20:10:15 +00:00
find(:all).desc( :is_top, :title)
2012-02-15 07:38:27 +00:00
end
end
def self.widget_datas
where( :is_hidden => false ).desc(:is_top, :created_at)
2012-02-15 07:38:27 +00:00
end
def is_top?
self.is_top
2012-07-25 20:10:15 +00:00
end
2012-04-27 06:20:09 +00:00
def sorted_tags
tags.order_by(I18n.locale, :asc)
2012-02-15 07:38:27 +00:00
end
def update_avliable_language
VALID_LOCALES.each do |locale|
if (title_translations[locale].blank? rescue true)
self["available_for_#{locale}".to_sym] = false
else
self["available_for_#{locale}".to_sym] = true
end
end
end
protected
def add_http
unless self.url[/^http:\/\//] || self.url[/^https:\/\//]
self.url = 'http://' + self.url
end
end
def clean_tags
self.tag_ids.delete('')
end
2012-02-15 07:38:27 +00:00
end