announcement-test/app/models/bulletin.rb

170 lines
5.1 KiB
Ruby
Raw Normal View History

2014-04-01 07:12:43 +00:00
class Bulletin
include Mongoid::Document
include Mongoid::Timestamps
2014-05-01 08:41:00 +00:00
include OrbitModel::Status
2014-05-15 11:27:05 +00:00
include OrbitModel::Impression
2014-06-23 08:36:04 +00:00
# encoding: utf-8
2014-04-20 12:23:52 +00:00
include OrbitTag::Taggable
include OrbitCategory::Categorizable
2014-04-03 03:18:02 +00:00
include Slug
require 'bulletin_model/cache'
include BulletinModel::Cache
SubPart.class_eval { include BulletinModel::Cache }
Page.class_eval { include BulletinModel::Cache }
2020-04-10 02:13:23 +00:00
before_destroy do
AnnsCache.all.destroy
end
2020-05-28 11:16:00 +00:00
field :add_to_calendar,type: Boolean,default: false
field :calendar_start_date, :type => DateTime
field :calendar_end_date, :type => DateTime
field :calendar_all_day,type: Boolean,default: false
field :calendar_type_id
field :event_id
field :title, type: String, localize: true
2014-05-01 08:41:00 +00:00
field :subtitle, localize: true
field :text, localize: true
field :create_user_id
field :update_user_id
field :public, :type => Boolean, :default => true
field :postdate , :type => DateTime, :default => Time.now
field :deadline , :type => DateTime
2014-06-06 04:05:33 +00:00
field :rss2_sn
2014-09-22 08:32:30 +00:00
field :approved, :type => Boolean, :default => false
2014-06-17 10:46:52 +00:00
field :is_preview, :type => Boolean, :default => false
2015-03-05 11:48:38 +00:00
field :expirable_created_at, type: DateTime
field :rejected, :type => Boolean, :default => false
field :reapproval, :type => Boolean, :default => false
field :rejection_reason
2017-06-20 07:04:05 +00:00
field :is_external_link, :type => Boolean, :default => false
field :external_link
field :display_subtitle, :type => Boolean, :default => false
field :display_img, :type => Boolean, :default => false
2014-05-01 08:41:00 +00:00
2014-05-28 07:37:56 +00:00
field :email_id
2014-05-01 08:41:00 +00:00
field :email_sent, :type => Boolean, :default => false
2014-06-24 09:23:51 +00:00
field :email_sentdate , :type => DateTime
2014-05-28 07:37:56 +00:00
field :email_member_ids
2014-05-01 08:41:00 +00:00
field :other_mailaddress
field :image_description, localize: true
field :top_end_date, :type => DateTime
2014-05-01 08:41:00 +00:00
mount_uploader :image, ImageUploader
has_many :bulletin_links, :autosave => true, :dependent => :destroy
has_many :bulletin_files, :autosave => true, :dependent => :destroy
accepts_nested_attributes_for :bulletin_files, :allow_destroy => true
accepts_nested_attributes_for :bulletin_links, :allow_destroy => true
2014-05-28 07:37:56 +00:00
before_destroy :destroy_email
scope :can_display_and_sorted, ->{where(:is_hidden=>false,:is_preview => false).any_of({:postdate.lte=>Time.now, :deadline.gte=>Time.now},{:postdate.lte=>Time.now, :deadline=>nil}).order(is_top: :desc,postdate: :desc,id: :desc)}
2014-09-22 08:32:30 +00:00
scope :is_approved, ->{where(:approved => true)}
2015-03-05 11:48:38 +00:00
before_create :set_expire
before_save :check_limit
2020-05-28 11:16:00 +00:00
def calendar_type
CalendarType.where(:category_id.in => self.calendar_type_id)
end
def event
if !self.event_id.nil?
Event.where(:id => self.event_id).first
else
nil
end
end
def check_limit
check_status_limit(update_user)
end
def check_status_limit(user,check_only=false)
role_ids = user.member_profile.roles.map(&:id) rescue []
status_settings = (role_ids.collect do |role_id|
AnnouncementSetting.first.anns_status_settings.select{|v| v.role_id.to_s == role_id.to_s}
end.flatten rescue [])
reach_limit = []
if status_settings.count != 0
reach_limit = status_settings.collect do |status_setting|
status = status_setting.status
if status_setting.top_limit.to_i <= Bulletin.where(:update_user_id.in => Role.find(status_setting.role_id).member_profiles.collect(&:user).flatten.uniq.map{|v| v.id},status => true).count
if !check_only
if self[status] && !Bulletin.where(id:self.id).first[status]
self[status] = false
nil
end
else
status
end
else
nil
end
end.compact
reach_limit = reach_limit.group_by{|v| v}.collect do |k,v|
if v.count >= user.member_profile.roles.count
k
else
nil
end
end.compact
end
reach_limit
end
def slug_title
doc = Nokogiri::HTML(self.title)
title = doc.text.gsub('/','-')
end
2015-03-05 11:48:38 +00:00
def set_expire
self.expirable_created_at = Time.now if self.is_preview
return true
end
2014-05-01 08:41:00 +00:00
def update_user
User.find(update_user_id) rescue nil
end
2014-04-01 07:12:43 +00:00
2014-05-01 08:41:00 +00:00
def update_user=(user)
self.update_user_id = user.id
2014-04-01 07:12:43 +00:00
end
2014-05-28 07:37:56 +00:00
def email_members
MemberProfile.find(self.email_member_ids) rescue []
end
def email_addresses
addresses = self.email_members.collect{|member| member.email} rescue []
addresses = addresses +[self.other_mailaddress] if !self.other_mailaddress.blank?
addresses.flatten
end
def email
mail = Email.find(self.email_id) rescue nil
end
def expired?
(self.deadline < Time.now) rescue false
end
2014-05-28 07:37:56 +00:00
def destroy_email
mail = Email.find(self.email_id) rescue nil
mail.destroy if !mail.nil?
end
def self.remove_expired_status
self.where(:is_top => true, :top_end_date.ne => nil, :top_end_date.lt => Time.now).each do |b|
b.is_top = false
b.top_end_date = nil
b.save
end
end
def display_subtitle?
self.display_subtitle rescue false
end
def display_img?
self.display_img rescue false
end
2014-04-01 07:12:43 +00:00
end