2015-07-08 10:11:25 +00:00
|
|
|
class BulletinFeed
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
include Slug
|
|
|
|
|
2021-09-16 09:15:44 +00:00
|
|
|
field :title, as: :slug_title, type: String, localize: true
|
|
|
|
field :tag_ids, type: Array, default: []
|
|
|
|
field :category_ids, type: Array, default: []
|
2020-07-22 03:11:58 +00:00
|
|
|
before_save do
|
2021-08-13 04:42:14 +00:00
|
|
|
BulletinFeedCache.where(uid: self.uid).each do |cache|
|
|
|
|
cache.regenerate
|
|
|
|
end
|
|
|
|
end
|
2022-04-18 15:32:19 +00:00
|
|
|
def annc_depts_translations
|
|
|
|
if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash
|
|
|
|
OrbitHelper::SharedHash['announcement'][:annc_depts_translations] rescue AnnouncementSetting.first.annc_depts_translations
|
|
|
|
else
|
|
|
|
AnnouncementSetting.first.annc_depts_translations rescue {}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def enable_annc_dept
|
|
|
|
if defined?(OrbitHelper::SharedHash) && OrbitHelper::SharedHash
|
|
|
|
OrbitHelper::SharedHash['announcement'][:enable_annc_dept] rescue AnnouncementSetting.first.enable_annc_dept
|
|
|
|
else
|
|
|
|
AnnouncementSetting.first.enable_annc_dept rescue false
|
|
|
|
end
|
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
def self.create_feed_cache(bulletin=nil,bulletin_feed=nil)
|
|
|
|
Thread.new do
|
|
|
|
if !bulletin.nil?
|
|
|
|
BulletinFeed.where(:tag_ids.in => Array(bulletin.tag_ids).collect{|v| v.to_s}).each do |bulletin_feed|
|
|
|
|
uid = bulletin_feed.uid
|
|
|
|
BulletinFeedCache.where(:uid => uid).each do |cache|
|
|
|
|
cache.regenerate
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elsif !bulletin_feed.nil?
|
|
|
|
uid = bulletin_feed.uid
|
|
|
|
BulletinFeedCache.where(:uid => uid).each do |cache|
|
|
|
|
cache.regenerate
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def generate_one_cache_timeout(startdt: nil,enddt: nil,dt: nil, base_url: nil, timeout: nil)
|
|
|
|
begin
|
2021-11-18 02:30:25 +00:00
|
|
|
if timeout.nil?
|
2022-02-23 05:57:42 +00:00
|
|
|
feed_cache_content = self.generate_one_cache(startdt: startdt,enddt: enddt,dt: dt,base_url: base_url)
|
2021-11-18 02:30:25 +00:00
|
|
|
else
|
2021-12-06 04:24:55 +00:00
|
|
|
Timeout::timeout(timeout) do
|
2022-02-23 05:57:42 +00:00
|
|
|
feed_cache_content = nil
|
2022-02-23 05:43:17 +00:00
|
|
|
thread = Thread.new do
|
2022-02-23 05:57:42 +00:00
|
|
|
feed_cache_content = self.generate_one_cache(startdt: startdt,enddt: enddt,dt: dt,base_url: base_url)
|
2021-11-18 02:30:25 +00:00
|
|
|
end
|
|
|
|
(1..(timeout.to_i+1)).each do
|
|
|
|
sleep(1)
|
2022-02-23 05:57:42 +00:00
|
|
|
break if !feed_cache_content.nil? && !thread.alive?
|
2021-11-18 02:30:25 +00:00
|
|
|
end
|
2022-02-23 05:57:42 +00:00
|
|
|
feed_cache_content
|
2021-12-06 04:24:55 +00:00
|
|
|
end
|
2021-11-18 02:30:25 +00:00
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
rescue=> e
|
|
|
|
puts [e,e.backtrace]
|
2022-03-29 08:49:13 +00:00
|
|
|
nil
|
2021-08-13 04:42:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
def generate_one_cache(startdt: nil,enddt: nil,dt: nil, base_url: nil)
|
|
|
|
base_url = Site.first.root_url if base_url.nil?
|
|
|
|
uid = self.uid
|
|
|
|
bf = self
|
2022-04-18 15:32:19 +00:00
|
|
|
annc_depts = []
|
|
|
|
tmp_enable_annc_dept = (enable_annc_dept rescue false)
|
|
|
|
if tmp_enable_annc_dept
|
|
|
|
annc_depts = annc_depts_translations[I18n.default_locale.to_s] rescue []
|
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
if !bf.nil?
|
|
|
|
tags = bf.tag_ids
|
|
|
|
categories = bf.category_ids
|
|
|
|
if !(categories.empty? && tags.empty?)
|
2021-11-18 07:07:34 +00:00
|
|
|
anns_before_filter = Bulletin.is_approved_and_show
|
|
|
|
can_display_and_sorted_flag = false
|
2021-08-13 04:42:14 +00:00
|
|
|
if !dt.nil?
|
|
|
|
dt = DateTime.parse(dt)
|
|
|
|
dtt = dt + 1.day
|
|
|
|
anns_before_filter = anns_before_filter.where(:postdate.gt => dt, :postdate.lt => dtt)
|
|
|
|
elsif !startdt.blank? && enddt.blank?
|
|
|
|
startdt = DateTime.parse(startdt)
|
|
|
|
enddt = DateTime.now
|
|
|
|
anns_before_filter = anns_before_filter.where(:postdate.gt => startdt, :postdate.lt => enddt)
|
|
|
|
elsif !startdt.blank? && !enddt.blank?
|
|
|
|
startdt = DateTime.parse(startdt)
|
|
|
|
enddt = DateTime.parse(enddt) + 1.day
|
|
|
|
anns_before_filter = anns_before_filter.where(:postdate.gt => startdt, :postdate.lt => enddt)
|
2021-11-18 07:07:34 +00:00
|
|
|
else
|
|
|
|
can_display_and_sorted_flag = true
|
2021-08-13 04:42:14 +00:00
|
|
|
end
|
2021-11-18 07:07:34 +00:00
|
|
|
|
2021-08-13 04:42:14 +00:00
|
|
|
if !tags.empty?
|
|
|
|
anns_before_filter = anns_before_filter.filter_by_tags(tags)
|
|
|
|
end
|
|
|
|
if !categories.empty?
|
2022-02-23 07:53:30 +00:00
|
|
|
anns_before_filter = anns_before_filter.filter_by_categories(categories,paginate=false)
|
2021-08-13 04:42:14 +00:00
|
|
|
end
|
2021-11-18 07:07:34 +00:00
|
|
|
anns_before_filter.selector = {"$and"=>[anns_before_filter.selector,{"$or"=>(I18n.available_locales.map{|v| {"title.#{v}"=>{"$nin"=>["", nil]}}})}]}
|
|
|
|
if can_display_and_sorted_flag
|
2021-12-30 08:12:12 +00:00
|
|
|
announcements = anns_before_filter.valid_time_range.to_a
|
2022-02-23 07:53:30 +00:00
|
|
|
else
|
|
|
|
announcements = anns_before_filter.to_a
|
2021-11-18 07:07:34 +00:00
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
else
|
|
|
|
announcements = []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
all_anns = []
|
|
|
|
tag_names = []
|
|
|
|
category_titles = []
|
|
|
|
tag_ids = []
|
|
|
|
category_ids = []
|
|
|
|
|
|
|
|
first_postdate = anns_before_filter.open_in_future.limit(1).pluck(:postdate)[0]
|
|
|
|
first_deadline = nil
|
2021-12-30 08:12:12 +00:00
|
|
|
cat_ids = announcements.collect{|a| a.category_id.blank? ? nil : a.category_id.to_s}.compact.uniq
|
|
|
|
tag_ids = announcements.collect{|a| a.tag_ids.collect{|v| v.blank? ? nil : v.to_s}}.flatten.compact.uniq
|
|
|
|
basic_query = {:module => 'announcement',:enabled_for=>I18n.locale}
|
|
|
|
if !cat_ids.blank?
|
|
|
|
query = basic_query.merge({:categories.all => cat_ids})
|
|
|
|
else
|
|
|
|
query = basic_query.clone
|
|
|
|
end
|
|
|
|
if !tag_ids.blank?
|
|
|
|
query = query.merge({:tags.all => tag_ids})
|
|
|
|
end
|
|
|
|
page = Page.where(query).first || Page.where(basic_query).first
|
2022-02-23 08:02:21 +00:00
|
|
|
more_url = page ? page.get_url : nil
|
2021-12-30 08:12:12 +00:00
|
|
|
|
2021-12-06 04:24:55 +00:00
|
|
|
announcements.each_with_index do |anns,i|
|
2021-08-13 04:42:14 +00:00
|
|
|
deadline = anns.deadline
|
|
|
|
if !deadline.blank?
|
|
|
|
if first_deadline.nil? || first_deadline>deadline
|
|
|
|
first_deadline = deadline
|
|
|
|
end
|
|
|
|
end
|
2022-04-18 15:32:19 +00:00
|
|
|
author = ""
|
|
|
|
if tmp_enable_annc_dept
|
|
|
|
author = annc_depts[anns.annc_dept] rescue ""
|
2021-08-13 04:42:14 +00:00
|
|
|
else
|
2022-04-18 15:32:19 +00:00
|
|
|
user = User.find(anns.create_user_id) rescue nil
|
|
|
|
if !user.nil?
|
|
|
|
author = user.member_name || user.user_name
|
|
|
|
else
|
|
|
|
author = ""
|
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
end
|
|
|
|
a = {}
|
2021-12-30 08:12:12 +00:00
|
|
|
if more_url
|
|
|
|
a['show_url'] = "#{more_url}/#{anns.to_param}"
|
|
|
|
end
|
2021-08-13 04:42:14 +00:00
|
|
|
a["id"] = anns.uid
|
|
|
|
a["title_translations"] = anns.title_translations
|
|
|
|
a["subtitle_translations"] = anns.subtitle_translations
|
|
|
|
a["text_translations"] = {}
|
2021-12-06 04:24:55 +00:00
|
|
|
text_translations = anns.text_translations
|
|
|
|
a["text_translations"]["en"] = self.class.smart_convertor(text_translations["en"],base_url) if !text_translations["en"].blank?
|
|
|
|
a["text_translations"]["zh_tw"] = self.class.smart_convertor(text_translations["zh_tw"],base_url) if !text_translations["zh_tw"].blank?
|
2021-08-13 04:42:14 +00:00
|
|
|
a["postdate"] = anns.postdate
|
|
|
|
a["image_description_translations"] = anns.image_description_translations
|
|
|
|
a["image"] = {}
|
|
|
|
a["display_img"] = anns.display_img
|
|
|
|
a["image"]["original"] = ("#{base_url}" + anns.image.url rescue "")
|
|
|
|
a["image"]["thumb"] = ("#{base_url}" + anns.image.thumb.url rescue "")
|
|
|
|
a["image"]["mobile"] = ("#{base_url}" + anns.image.mobile.url rescue "")
|
|
|
|
a["tags"] = []
|
|
|
|
a["category"] = {}
|
|
|
|
a["author"] = author
|
|
|
|
a["params"] = anns.to_param
|
|
|
|
a["subtitle_ann"] = anns.subtitle if anns.display_subtitle?
|
|
|
|
a["bulletin_links"] = []
|
|
|
|
a["bulletin_files"] = []
|
|
|
|
a["bulletin_carousel_images"] = anns.bulletin_carousel_images.map{|image| {"src"=>"#{base_url}" + image.file.url,"description"=>image.description.to_s,"description_text"=>image.description_text }}
|
2021-09-15 15:55:31 +00:00
|
|
|
a["external_link"] = anns["is_external_link"] ? anns.external_link : nil
|
2021-08-13 04:42:14 +00:00
|
|
|
anns.tags.each do |tag|
|
|
|
|
if !tag_ids.include?(tag.id.to_s)
|
|
|
|
tag_ids << tag.id.to_s
|
|
|
|
tag_names << {"name_translations" => tag.name_translations}
|
|
|
|
end
|
|
|
|
a["tags"] << {"name_translations" => tag.name_translations}
|
|
|
|
end
|
|
|
|
cat = anns.category
|
|
|
|
if (!category_ids.include?(cat.id.to_s) rescue false)
|
|
|
|
category_ids << cat.id.to_s
|
|
|
|
category_titles << {"title_translations" => cat.title_translations}
|
|
|
|
end
|
|
|
|
a["category"] = {"title_translations" => (cat.title_translations rescue {})}
|
|
|
|
anns.bulletin_links.each do |bl|
|
|
|
|
b = {}
|
|
|
|
b["url"] = bl.url
|
|
|
|
b["title_translations"] = bl.title_translations
|
|
|
|
a["bulletin_links"] << b
|
|
|
|
end
|
|
|
|
anns.bulletin_files.each do |bf|
|
|
|
|
b = {}
|
|
|
|
b["description_translations"] = bf.description_translations
|
|
|
|
b["title_translations"] = bf.title_translations
|
|
|
|
b["url"] = ("#{base_url}" + bf.file.url rescue "")
|
|
|
|
a["bulletin_files"] << b
|
|
|
|
end
|
|
|
|
all_anns << a
|
|
|
|
end
|
|
|
|
invalid_date = [first_postdate,first_deadline].compact.sort[0]
|
|
|
|
anns = {
|
|
|
|
"announcements" => all_anns,
|
|
|
|
"tags" => tag_names,
|
|
|
|
"categories" => category_titles
|
|
|
|
}.to_json
|
2021-12-28 08:32:20 +00:00
|
|
|
BulletinFeedCache.where(uid: uid,start: startdt,end: enddt,date: dt).destroy
|
2021-08-13 04:42:14 +00:00
|
|
|
feed_cache = BulletinFeedCache.create(uid: uid,content: anns,start: startdt,end: enddt,date: dt,invalid_date: invalid_date)
|
2022-03-29 08:51:09 +00:00
|
|
|
anns
|
2021-08-13 04:42:14 +00:00
|
|
|
end
|
|
|
|
def self.smart_convertor(text,url)
|
2021-12-06 04:24:55 +00:00
|
|
|
doc = Nokogiri.HTML(text)
|
|
|
|
doc.search('a[href]').each do |link|
|
|
|
|
if link['href'].nil?
|
|
|
|
link.delete 'href'
|
|
|
|
elsif link['href'].start_with?('/')
|
|
|
|
link['href'] = url + link['href']
|
|
|
|
elsif link['href'].start_with?('../')
|
|
|
|
link['href'] = url + link['href'][3..-1]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
doc.search('img[src]').each do |link|
|
|
|
|
if link['src'].nil?
|
|
|
|
link.delete 'src'
|
|
|
|
elsif link['src'].start_with?('/')
|
|
|
|
link['src'] = url + link['src']
|
|
|
|
elsif link['src'].start_with?('../')
|
|
|
|
link['src'] = url + link['src'][3..-1]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return doc.css('body').inner_html
|
2020-07-22 03:11:58 +00:00
|
|
|
end
|
2015-07-08 10:11:25 +00:00
|
|
|
end
|