Orbit/vendor/built_in_modules/announcement/app/models/bulletin.rb

227 lines
5.9 KiB
Ruby
Raw Normal View History

2012-01-11 12:31:52 +00:00
# encoding: utf-8
# require "impressionist"
2012-01-11 12:31:52 +00:00
class Bulletin
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::MultiParameterAttributes
2012-08-03 01:30:12 +00:00
include Sunspot::Mongo
2012-05-15 13:26:09 +00:00
include Impressionist::Impressionable
BelongsToCategory = :bulletin_category
include OrbitCoreLib::BelongsToCategoryMayDisable
include OrbitCoreLib::Preview
is_impressionable :counter_cache => { :column_name => :view_count }
2012-02-13 09:33:48 +00:00
2012-07-25 18:27:43 +00:00
field :title, localize: true
field :subtitle, localize: true
field :text, localize: true
has_and_belongs_to_many :tags, :class_name => "AnnouncementTag"
field :postdate , :type => DateTime
field :deadline , :type => DateTime
2012-02-06 07:23:27 +00:00
# field :url
field :cache_dept,type: Hash
2012-01-12 10:38:50 +00:00
field :create_user_id
2012-04-29 15:39:28 +00:00
field :update_user_id, :class_name => "User"
2012-01-11 12:31:52 +00:00
2012-01-13 11:15:03 +00:00
field :is_top, :type => Boolean, :default => false
field :is_hot, :type => Boolean, :default => false
field :is_hidden, :type => Boolean, :default => false
field :is_checked, :type => Boolean, :default => false
field :is_pending, :type => Boolean, :default => true
field :is_rejected, :type => Boolean, :default => false
2012-05-15 13:26:09 +00:00
field :view_count, :type => Integer, :default => 0
2012-03-16 03:09:44 +00:00
field :not_checked_reason
2012-01-13 11:15:03 +00:00
2012-02-14 16:32:20 +00:00
field :public, :type => Boolean, :default => true
2012-08-16 10:55:34 +00:00
scope :can_display, where(is_checked: true, is_rejected: false, is_pending: false)
2012-07-31 10:22:40 +00:00
scope :available_for_lang, ->(locale){ where("available_for_#{locale}".to_sym => true) }
2012-01-11 12:31:52 +00:00
mount_uploader :image, ImageUploader
# belongs_to :unit_list_for_anc
2012-01-11 12:31:52 +00:00
2012-03-14 12:05:03 +00:00
# embeds_many :bulletin_links, :cascade_callbacks => true
# embeds_many :bulletin_files, :cascade_callbacks => true
2012-01-12 10:38:50 +00:00
2012-03-14 12:05:03 +00:00
has_many :bulletin_links, :autosave => true, :dependent => :destroy
has_many :bulletin_files, :autosave => true, :dependent => :destroy
2012-01-11 12:31:52 +00:00
accepts_nested_attributes_for :bulletin_files, :allow_destroy => true
2012-02-06 07:23:27 +00:00
accepts_nested_attributes_for :bulletin_links, :allow_destroy => true
2012-01-11 12:31:52 +00:00
validates :title, :at_least_one => true
before_save :check_deadline, :update_avliable_language, :clean_tags
before_save :fetch_dept
2012-03-14 12:05:03 +00:00
after_save :save_bulletin_links
after_save :save_bulletin_files
2012-08-03 01:30:12 +00:00
searchable do
text :titles do
title_translations.to_a.collect{|t| t[1]}
end
text :texts do
text_translations.to_a.collect{|t| Nokogiri::HTML(t[1]).text}
2012-08-03 01:30:12 +00:00
end
# text :text do
# a = (title_translations["zh_tw"] + title_translations["en"])
# a
# end
boolean :frontend_search do
( !is_hidden && !is_pending && is_checked && !is_rejected )
2012-08-03 01:30:12 +00:00
end
integer :view_count
string :bulletin_category_id
end
2012-07-31 10:22:40 +00:00
def proc_check(check,not_pass_info = "")
self.is_checked = true
if check =="true"
self.is_rejected = false
elsif check == "false"
self.is_rejected = true
self.not_checked_reason = not_pass_info
end
end
def de_pending
self.is_pending = false
end
def de_pending!
de_pending
self.save!
end
def enabled_for_lang(lang)
eval("self.available_for_#{lang}")
end
def publish_month
published_at.strftime("%B %Y")
end
2012-01-13 11:15:03 +00:00
2012-01-18 13:34:26 +00:00
def self.search( search = nil, category_id = nil )
if category_id.to_s.size > 0 and search.to_s.size > 0
2012-01-18 13:34:26 +00:00
key = /#{search}/
find(:all, :conditions => {title: key, bulletin_category_id: category_id}).desc( :is_top, :postdate )
elsif category_id.to_s.size > 0 and search.to_s.size < 1
find(:all, :conditions => {bulletin_category_id: category_id}).desc( :is_top, :postdate )
elsif search.to_s.size > 0 and category_id.to_s.size < 1
2012-01-18 13:34:26 +00:00
key = /#{search}/
find(:all, :conditions => {title: key}).desc( :is_top, :postdate )
else
find(:all).desc( :is_top, :postdate)
end
2012-01-13 11:15:03 +00:00
end
2012-01-11 12:31:52 +00:00
2012-02-16 09:52:49 +00:00
def self.widget_datas( category_id = nil )
2012-01-18 13:34:26 +00:00
2012-02-16 09:52:49 +00:00
date_now = Time.now
2012-02-15 02:37:07 +00:00
2012-02-16 09:52:49 +00:00
# find(:all, :conditions => {:postdate => {"$lte" => Date.today}, deadline: nil} ).desc( :is_top, :postdate)
# where( :postdate.lte => date_now ).where( :deadline => nil ).desc(:is_top, :postdate)
# any_of({ :title => "test" },{:deadline => nil, :title => "123"})
if category_id.to_s.size > 0
find(:all, :conditions => {bulletin_category_id: category_id}).any_of( {deadline: nil,:postdate.lte => date_now} , {:deadline.gte => date_now,:postdate.lte => date_now} ).desc( :is_top, :postdate)
else
any_of( {deadline: nil,:postdate.lte => date_now} , {:deadline.gte => date_now,:postdate.lte => date_now} ).desc( :is_top, :postdate)
end
2012-01-18 13:34:26 +00:00
end
def is_expired?
Date.today > self.deadline ? true : false rescue false
#some dates might sat as nil so rescue false
end
2012-01-18 13:34:26 +00:00
2012-01-13 11:15:03 +00:00
def is_top?
self.is_top
end
2012-01-11 12:31:52 +00:00
def is_hot?
self.is_hot
end
def is_hidden?
self.is_hidden
2012-02-06 07:23:27 +00:00
end
def is_checked?
!self.is_pending && self.is_checked && (self.is_rejected == false)
end
def is_pending?
self.is_pending
end
def is_rejected?
!self.is_pending && self.is_rejected && (self.is_rejected == true)
end
2012-03-14 12:05:03 +00:00
def save_bulletin_links
self.bulletin_links.each do |t|
if t.should_destroy
t.destroy
end
end
end
def save_bulletin_files
self.bulletin_files.each do |t|
if t.should_destroy
t.destroy
end
end
end
2012-02-24 07:30:49 +00:00
def self.filter(bulletins)
bulletins.each do |bulletin|
p "#{bulletin.id}/#{bulletin.is_top}/#{bulletin.is_hot}/#{bulletin.is_hidden}"
end
return nil
end
def sorted_tags
tags.order_by(I18n.locale, :asc)
end
protected
2012-06-29 03:17:35 +00:00
def check_deadline
2012-08-14 05:49:24 +00:00
if(!self.deadline.nil? and (self.deadline < self.postdate ))
self.deadline = nil
2012-06-29 03:17:35 +00:00
end
end
2012-01-11 12:31:52 +00:00
2012-07-31 10:22:40 +00:00
def update_avliable_language
VALID_LOCALES.each do |locale|
2012-07-31 16:58:59 +00:00
if (title_translations[locale].blank? rescue true)
2012-07-31 10:22:40 +00:00
self["available_for_#{locale}".to_sym] = false
else
self["available_for_#{locale}".to_sym] = true
end
end
end
def fetch_dept
2012-08-14 05:13:06 +00:00
self.cache_dept = (User.find(self.create_user_id).cache_dept rescue nil) if self.new_record?
end
def clean_tags
self.tag_ids.delete('')
end
2012-08-08 09:56:00 +00:00
end