2014-04-01 07:12:43 +00:00
|
|
|
class AnnouncementsController < ApplicationController
|
2020-02-01 03:47:52 +00:00
|
|
|
include AnnouncementsHelper
|
2014-04-01 07:12:43 +00:00
|
|
|
def index
|
2015-12-22 11:04:13 +00:00
|
|
|
Bulletin.remove_expired_status
|
2020-02-01 03:47:52 +00:00
|
|
|
announcements,sorted = get_sorted_annc
|
2016-04-11 08:32:15 +00:00
|
|
|
total_pages = sorted.total_pages
|
|
|
|
|
|
|
|
anns = []
|
|
|
|
sorted.each do |a|
|
|
|
|
if !a["source-site"].present?
|
|
|
|
statuses = a.statuses_with_classname.collect do |status|
|
|
|
|
{
|
|
|
|
"status" => status["name"],
|
|
|
|
"status-class" => "status-#{status['classname']}"
|
|
|
|
}
|
|
|
|
end
|
2016-05-09 10:11:18 +00:00
|
|
|
files = a.bulletin_files.map{|file| { "file_url" => file.file.url, "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
|
|
|
|
files.delete(nil)
|
2019-10-29 06:45:45 +00:00
|
|
|
links = a.bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
|
2016-04-11 08:32:15 +00:00
|
|
|
author = User.find(a.create_user_id).member_profile.name rescue ""
|
|
|
|
desc = a.image_description
|
|
|
|
desc = (desc.nil? || desc == "" ? "announcement image" : desc)
|
2017-06-20 07:04:05 +00:00
|
|
|
link_to_show = a.is_external_link ? a.external_link : OrbitHelper.url_to_show(a.to_param)
|
|
|
|
target = a.is_external_link ? "_blank" : "_self"
|
2020-02-06 04:46:38 +00:00
|
|
|
doc = Nokogiri::HTML(a.title)
|
|
|
|
title = doc.text.empty? ? 'no content' : doc.text
|
2016-04-11 08:32:15 +00:00
|
|
|
anns << {
|
|
|
|
"bulletin_links" => links,
|
|
|
|
"bulletin_files" => files,
|
|
|
|
"title" => a.title,
|
|
|
|
"source-site" => "",
|
|
|
|
"source-site-title" => "",
|
|
|
|
"source-site-link" => "",
|
|
|
|
"subtitle" => a.subtitle,
|
|
|
|
"statuses" => statuses,
|
|
|
|
"category" => a.category.title,
|
|
|
|
"postdate" => a.postdate,
|
|
|
|
"author" => author,
|
|
|
|
"is_top" => (a.is_top? ? 1 : 0),
|
2020-02-06 04:46:38 +00:00
|
|
|
"link_to_show" => link_to_show+"\" title=\"#{title}\"",
|
2017-06-20 07:04:05 +00:00
|
|
|
"target" => target,
|
2016-04-11 08:32:15 +00:00
|
|
|
"img_src" => a.image.thumb.url || "/assets/announcement-default.jpg",
|
|
|
|
"img_description" => desc,
|
|
|
|
"more" => t(:more_plus),
|
|
|
|
"view_count" => a.view_count
|
2014-06-06 09:48:33 +00:00
|
|
|
}
|
2016-04-11 08:32:15 +00:00
|
|
|
else
|
2016-04-27 11:28:30 +00:00
|
|
|
anns << a
|
2014-06-06 09:48:33 +00:00
|
|
|
end
|
2014-04-01 07:12:43 +00:00
|
|
|
end
|
2015-02-25 02:58:51 +00:00
|
|
|
#If no data , hide title&table
|
|
|
|
if announcements.count == 0
|
|
|
|
display = "hide"
|
|
|
|
end
|
2016-04-11 08:32:15 +00:00
|
|
|
# anns = anns.concat(feeds_anns)
|
|
|
|
# total_pages = announcements.total_pages
|
|
|
|
|
2019-10-29 06:45:45 +00:00
|
|
|
|
2014-04-02 06:44:36 +00:00
|
|
|
{
|
2015-10-08 09:17:13 +00:00
|
|
|
"announcements" => anns,
|
2014-07-11 10:30:52 +00:00
|
|
|
"extras" => {
|
2014-09-19 07:28:17 +00:00
|
|
|
"widget-title" =>t('announcement.announcement'),
|
2014-09-19 07:54:41 +00:00
|
|
|
"title-head" => t('announcement.table.title'),
|
|
|
|
"date-head" => t('announcement.table.date'),
|
|
|
|
"status-head" => t('announcement.table.status'),
|
2019-10-29 06:45:45 +00:00
|
|
|
"author-head" => t('announcement.table.author'),
|
2014-09-19 07:54:41 +00:00
|
|
|
"subtitle-head" => t('announcement.table.sub_title'),
|
2015-01-16 09:01:33 +00:00
|
|
|
"category-head" => t('announcement.table.category'),
|
|
|
|
"link-head" => t('announcement.table.link'),
|
2015-02-25 02:58:51 +00:00
|
|
|
"file-head" => t('announcement.table.file'),
|
2015-03-16 08:56:53 +00:00
|
|
|
"view-count-head" => t('announcement.table.view_count'),
|
2015-02-25 02:58:51 +00:00
|
|
|
"display" => display
|
2014-07-11 10:30:52 +00:00
|
|
|
},
|
2016-04-11 08:32:15 +00:00
|
|
|
"total_pages" => total_pages
|
2014-11-19 09:50:08 +00:00
|
|
|
}
|
2014-04-01 07:12:43 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2015-10-29 08:42:42 +00:00
|
|
|
def random_announcement_widget
|
|
|
|
uid = OrbitHelper.params[:uid] rescue ""
|
2015-12-16 08:01:09 +00:00
|
|
|
tags = OrbitHelper.widget_tags
|
2015-10-29 08:42:42 +00:00
|
|
|
categories = OrbitHelper.widget_categories || []
|
|
|
|
announcements = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil],:uid.ne => uid, :category_id.in => categories).and(:title.ne => nil).can_display.is_approved.filter_by_tags(tags).sample(OrbitHelper.widget_data_count)
|
|
|
|
|
2016-04-11 08:32:15 +00:00
|
|
|
pack_data(announcements, [])
|
2015-10-29 08:42:42 +00:00
|
|
|
end
|
|
|
|
|
2014-04-01 07:12:43 +00:00
|
|
|
def widget
|
2015-12-22 11:04:13 +00:00
|
|
|
Bulletin.remove_expired_status
|
2015-09-30 08:27:10 +00:00
|
|
|
uid = OrbitHelper.params[:uid] rescue ""
|
2015-12-16 08:01:09 +00:00
|
|
|
tags = OrbitHelper.widget_tags
|
2016-04-11 08:32:15 +00:00
|
|
|
announcements = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil],:uid.ne => uid).and(:title.ne => nil, :is_top.ne => true).can_display.is_approved.filter_by_widget_categories([],false).filter_by_tags(tags).to_a
|
2016-09-12 06:11:21 +00:00
|
|
|
top_anns = Bulletin.where(:title.ne => "",:is_preview.in=>[false,nil], :is_top => true, :uid.ne => uid).and(:title.ne => nil).can_display.is_approved.filter_by_widget_categories([],false).filter_by_tags(tags).to_a
|
2016-04-11 08:32:15 +00:00
|
|
|
pack_data(announcements, top_anns)
|
2015-10-29 08:42:42 +00:00
|
|
|
end
|
|
|
|
|
2017-06-29 08:03:39 +00:00
|
|
|
def tag_cloud
|
|
|
|
ma = ModuleApp.where(:key => "announcement").first
|
|
|
|
temp = []
|
|
|
|
ma.tags.each do |tag|
|
|
|
|
t1 = tag.taggings.collect{|t| t.taggable_id.to_s}
|
|
|
|
count = Bulletin.where(:id.in => t1).can_display.count
|
|
|
|
temp << {
|
|
|
|
"tag-name" => tag.name,
|
|
|
|
"count" => count,
|
|
|
|
"tag-url" => OrbitHelper.widget_more_url + "?tags[]=" + tag.id.to_s
|
|
|
|
}
|
|
|
|
end
|
|
|
|
max = temp.max_by{|t| t["count"]}["count"]
|
|
|
|
tags = []
|
|
|
|
temp.each do |tag|
|
|
|
|
if tag["count"] > 0
|
|
|
|
percent = (tag["count"] * 100) / max
|
2017-06-29 08:43:57 +00:00
|
|
|
font_size = ((percent / 10).round) + 16
|
2017-06-29 08:03:39 +00:00
|
|
|
tag["font-size"] = font_size
|
|
|
|
tags << tag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
{
|
|
|
|
"tags" => tags,
|
|
|
|
"extras" => {}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2016-04-11 08:32:15 +00:00
|
|
|
def pack_data(announcements, top_anns = [])
|
2014-12-01 05:48:02 +00:00
|
|
|
page = Page.where(:module => "announcement").first rescue nil
|
2020-01-21 14:31:59 +00:00
|
|
|
subpart = OrbitHelper.get_current_widget
|
|
|
|
@image_version = 'thumb'
|
|
|
|
if subpart.methods.include? 'select_options'.to_sym
|
|
|
|
ModuleApp.all.select{|tmp| tmp.key.to_s=='announcement'}.each do |modile_app|
|
|
|
|
@show_options = modile_app.show_options rescue nil
|
|
|
|
end
|
|
|
|
subpart.select_options.each do |select_option|
|
|
|
|
if !(@show_options.nil?) && select_option.field_name == @show_options.keys.first.to_s
|
|
|
|
value = YAML.load(select_option.value)
|
|
|
|
if value[I18n.locale] == t('announcement.small_size')
|
|
|
|
@image_version = 'thumb'
|
|
|
|
elsif value[I18n.locale] == t('announcement.medium_size')
|
|
|
|
@image_version = 'mobile'
|
|
|
|
elsif value[I18n.locale] == t('announcement.orignal_size')
|
|
|
|
@image_version = 'orignal'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-04-11 08:32:15 +00:00
|
|
|
feeds_anns = get_feed_announcements("widget")
|
|
|
|
announcements = announcements + feeds_anns
|
|
|
|
if !feeds_anns.blank?
|
2019-10-29 06:45:45 +00:00
|
|
|
sorted = announcements.sort{ |k,v| v["postdate"] <=> k["postdate"] }
|
|
|
|
sorted = top_anns + sorted
|
|
|
|
sorted = Kaminari.paginate_array(sorted).page(1).per(OrbitHelper.widget_data_count) rescue []
|
2019-10-29 07:51:02 +00:00
|
|
|
else
|
2016-04-11 08:32:15 +00:00
|
|
|
announcements = top_anns + announcements
|
|
|
|
sorted = Kaminari.paginate_array(announcements).page(1).per(OrbitHelper.widget_data_count) rescue []
|
|
|
|
end
|
|
|
|
anns = []
|
|
|
|
sorted.each do |a|
|
|
|
|
if !a["source-site"].present?
|
|
|
|
statuses = a.statuses_with_classname.collect do |status|
|
|
|
|
{
|
|
|
|
"status" => status["name"],
|
|
|
|
"status-class" => "status-#{status['classname']}"
|
|
|
|
}
|
|
|
|
end
|
2016-05-09 10:11:18 +00:00
|
|
|
files = a.bulletin_files.map{|file| { "file_url" => file.file.url, "file_title" => (file.title.blank? ? File.basename(file.file.path) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
|
|
|
|
files.delete(nil)
|
2016-04-11 08:32:15 +00:00
|
|
|
links = a.bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
|
2019-10-29 06:45:45 +00:00
|
|
|
author = User.find(a.create_user_id).member_profile.name rescue ""
|
|
|
|
desc = a.image_description
|
2016-04-11 08:32:15 +00:00
|
|
|
desc = (desc.nil? || desc == "" ? "announcement image" : desc)
|
2017-08-17 07:16:26 +00:00
|
|
|
link_to_show = a.is_external_link ? a.external_link : OrbitHelper.widget_item_url(a.to_param)
|
2017-06-20 07:04:05 +00:00
|
|
|
target = a.is_external_link ? "_blank" : "_self"
|
2020-01-21 14:31:59 +00:00
|
|
|
if @image_version == 'thumb'
|
|
|
|
image_url = a.image.thumb.url
|
|
|
|
elsif @image_version == 'mobile'
|
|
|
|
image_url = a.image.mobile.url
|
|
|
|
else
|
|
|
|
image_url = a.image.url
|
|
|
|
end
|
2017-06-20 07:04:05 +00:00
|
|
|
anns << {
|
2016-04-11 08:32:15 +00:00
|
|
|
"bulletin_links" => links,
|
|
|
|
"bulletin_files" => files,
|
|
|
|
"title" => a.title,
|
|
|
|
"source-site" => "",
|
|
|
|
"source-site-title" => "",
|
|
|
|
"source-site-link" => "",
|
|
|
|
"subtitle" => a.subtitle,
|
|
|
|
"statuses" => statuses,
|
|
|
|
"category" => a.category.title,
|
|
|
|
"postdate" => a.postdate,
|
|
|
|
"author" => author,
|
2017-06-20 07:04:05 +00:00
|
|
|
"link_to_show" => link_to_show,
|
|
|
|
"target" => target,
|
2020-01-21 14:31:59 +00:00
|
|
|
"img_src" => image_url || "/assets/announcement-default.jpg",
|
2016-04-11 08:32:15 +00:00
|
|
|
"img_description" => desc
|
2014-06-06 09:48:33 +00:00
|
|
|
}
|
2019-10-29 06:45:45 +00:00
|
|
|
else
|
|
|
|
anns << a
|
|
|
|
end
|
2014-04-01 07:12:43 +00:00
|
|
|
end
|
2014-12-03 10:02:47 +00:00
|
|
|
mp = (anns[0]["img_src"] rescue "")
|
|
|
|
mpd = (anns[0]["img_description"] rescue "")
|
2016-04-11 08:32:15 +00:00
|
|
|
|
2014-04-02 06:44:36 +00:00
|
|
|
{
|
2015-10-13 08:48:45 +00:00
|
|
|
"announcements" => anns,
|
2014-07-11 10:30:52 +00:00
|
|
|
"extras" => {
|
2014-09-19 07:32:54 +00:00
|
|
|
"more_url"=>OrbitHelper.widget_more_url,
|
2014-12-03 10:07:52 +00:00
|
|
|
"main_picture" => mp,
|
|
|
|
"main_picture_description" => mpd,
|
2014-09-19 07:54:41 +00:00
|
|
|
"title-head" => t('announcement.table.title'),
|
|
|
|
"date-head" => t('announcement.table.date'),
|
2014-11-25 10:09:53 +00:00
|
|
|
"author-head" => t('announcement.table.author'),
|
2014-09-19 07:54:41 +00:00
|
|
|
"status-head" => t('announcement.table.status'),
|
|
|
|
"subtitle-head" => t('announcement.table.sub_title'),
|
2014-12-01 05:48:02 +00:00
|
|
|
"category-head" => t('announcement.table.category'),
|
2015-01-16 09:03:02 +00:00
|
|
|
"link-head" => t('announcement.table.link'),
|
2015-01-16 09:06:21 +00:00
|
|
|
"file-head" => t('announcement.table.file'),
|
2015-02-11 10:22:49 +00:00
|
|
|
"read_more" => ("/#{I18n.locale.to_s + page.url}" rescue "")
|
2014-07-11 10:30:52 +00:00
|
|
|
}
|
2014-11-19 09:50:08 +00:00
|
|
|
}
|
2014-04-01 07:12:43 +00:00
|
|
|
end
|
2014-11-19 09:50:08 +00:00
|
|
|
|
2015-10-19 08:59:26 +00:00
|
|
|
def show_local_announcement(uid, is_preview)
|
2016-05-09 10:11:18 +00:00
|
|
|
locale = OrbitHelper.get_site_locale.to_s
|
2015-10-19 08:59:26 +00:00
|
|
|
if is_preview
|
2016-05-02 09:36:21 +00:00
|
|
|
announcement = Bulletin.where(:uid => uid).first
|
2015-10-19 08:59:26 +00:00
|
|
|
else
|
2016-05-02 09:36:21 +00:00
|
|
|
announcement = Bulletin.can_display.where(:uid => uid).first
|
2015-10-19 08:59:26 +00:00
|
|
|
end
|
2014-08-05 06:37:33 +00:00
|
|
|
url_to_edit = OrbitHelper.user_can_edit?(announcement) ? "/admin/announcements/#{announcement.id.to_s}/edit" : ""
|
|
|
|
|
2014-09-22 08:32:30 +00:00
|
|
|
access_level = OrbitHelper.user_access_level?
|
|
|
|
|
|
|
|
if !announcement.approved && (access_level != "manager" && access_level != "admin")
|
2017-08-24 12:31:51 +00:00
|
|
|
if AnnouncementSetting.is_pro?
|
|
|
|
if !(access_level == "sub_manager" && AnnouncementSetting.first.approvers.include?(OrbitHelper.current_user.id.to_s))
|
|
|
|
return {}
|
|
|
|
end
|
|
|
|
elsif access_level != "sub_manager"
|
2016-08-05 12:00:34 +00:00
|
|
|
return {}
|
|
|
|
end
|
2014-09-22 08:32:30 +00:00
|
|
|
end
|
|
|
|
|
2014-12-11 09:41:42 +00:00
|
|
|
return {} if announcement.category.disable
|
|
|
|
|
2014-07-11 10:30:52 +00:00
|
|
|
tags = announcement.tags.map{|tag| {
|
|
|
|
"tag" => tag.name ,
|
|
|
|
"url" => OrbitHelper.page_for_tag(tag)
|
|
|
|
} } rescue []
|
2016-05-09 10:11:18 +00:00
|
|
|
files = announcement.bulletin_files.map{|file| { "file_url" => file.file.url, "file_title" => (file.title.blank? ? URI.unescape(File.basename(file.file.path)) : file.title rescue '') } if file.enabled_for?(locale) } rescue []
|
|
|
|
files.delete(nil)
|
2019-10-29 06:45:45 +00:00
|
|
|
files.each do |file|
|
|
|
|
if file["file_url"] =="" || file["file_url"] == nil
|
|
|
|
files.delete(file)
|
|
|
|
end
|
|
|
|
end
|
2014-06-17 04:06:40 +00:00
|
|
|
links = announcement.bulletin_links.map{|link| { "link_url" => link.url, "link_title" => (link.title.blank? ? link.url : link.title) } } rescue []
|
2014-05-14 11:51:17 +00:00
|
|
|
update_user = announcement.update_user.member_profile.name rescue ""
|
2015-06-02 09:48:18 +00:00
|
|
|
desc = announcement.image_description
|
|
|
|
desc = (desc.nil? || desc == "" ? "announcement image" : desc)
|
2019-10-29 06:45:45 +00:00
|
|
|
|
2015-07-03 11:53:24 +00:00
|
|
|
request = OrbitHelper.request
|
|
|
|
meta_desc = announcement.subtitle.nil? || announcement.subtitle == "" ? announcement.text[0..200] : announcement.subtitle
|
2019-01-16 09:37:32 +00:00
|
|
|
OrbitHelper.render_meta_tags([{"property" => "og:title", "content" => announcement.title},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:image", "content" => "#{request.base_url}#{announcement.image.url}"},{"property" => "og:type", "content" => "Article"}])
|
2015-07-03 11:53:24 +00:00
|
|
|
|
2020-01-13 07:16:46 +00:00
|
|
|
subtitle_ann = nil
|
|
|
|
img_src = nil
|
2020-01-14 05:13:13 +00:00
|
|
|
img_description = nil
|
2020-01-13 07:16:46 +00:00
|
|
|
subtitle_ann = announcement.subtitle if announcement.display_subtitle?
|
|
|
|
img_src = (announcement.image.thumb.url || "/assets/announcement-default.jpg") if announcement.display_img?
|
2020-01-14 05:13:13 +00:00
|
|
|
img_description = announcement.image_description if (announcement.image_description.present?) && (announcement.display_img?)
|
2020-01-13 07:16:46 +00:00
|
|
|
|
2014-05-05 07:48:49 +00:00
|
|
|
{
|
2014-05-05 08:30:18 +00:00
|
|
|
"tags" => tags,
|
2014-05-05 07:48:49 +00:00
|
|
|
"bulletin_files" => files,
|
|
|
|
"bulletin_links" => links,
|
|
|
|
"data" => {
|
2014-05-02 10:21:51 +00:00
|
|
|
"title" => announcement.title,
|
2020-01-13 07:16:46 +00:00
|
|
|
"subtitle_ann" => subtitle_ann,
|
2014-05-14 11:51:17 +00:00
|
|
|
"update_user" => update_user,
|
2014-12-27 03:20:50 +00:00
|
|
|
"updated_at" => announcement.postdate.strftime('%Y-%m-%d %H:%M'),
|
2014-05-05 07:48:49 +00:00
|
|
|
"body" =>announcement.text,
|
2015-06-02 09:48:18 +00:00
|
|
|
"image" => announcement.image.url,
|
2020-01-13 07:16:46 +00:00
|
|
|
"img_src" => img_src,
|
2020-01-13 09:24:21 +00:00
|
|
|
"img_description" => img_description,
|
2015-06-02 09:48:18 +00:00
|
|
|
"alt_title" => desc
|
2014-05-15 11:27:05 +00:00
|
|
|
},
|
2014-08-05 06:37:33 +00:00
|
|
|
"impressionist" => (announcement.is_preview ? nil : announcement),
|
|
|
|
"url_to_edit"=>url_to_edit
|
2014-11-19 09:50:08 +00:00
|
|
|
}
|
2014-06-17 10:46:52 +00:00
|
|
|
end
|
2014-11-19 09:50:08 +00:00
|
|
|
|
2015-07-08 10:11:25 +00:00
|
|
|
def show_feed_announcement(uid)
|
|
|
|
announcement = OrbitHelper.get_from_feed(uid)
|
|
|
|
locale = OrbitHelper.get_site_locale.to_s
|
|
|
|
url_to_edit = "#"
|
|
|
|
return {} if announcement.blank?
|
|
|
|
tags = []
|
|
|
|
|
2019-10-29 07:51:02 +00:00
|
|
|
announcement["tags"].each{|tag|
|
2015-07-08 10:11:25 +00:00
|
|
|
t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil
|
|
|
|
if t.nil?
|
|
|
|
I18n.locale = (locale == "en" ? :zh_tw : :en)
|
|
|
|
t = Tag.where(:name => tag["name_translations"][locale]).first rescue nil
|
|
|
|
I18n.locale = locale.to_sym
|
|
|
|
end
|
|
|
|
tags << {
|
2019-10-29 06:45:45 +00:00
|
|
|
"tag" => tag["name_translations"][locale],
|
|
|
|
"url" => (t.nil? ? "#" : OrbitHelper.page_for_tag(t))
|
|
|
|
}
|
|
|
|
}
|
2015-07-08 10:11:25 +00:00
|
|
|
|
2016-04-12 10:14:17 +00:00
|
|
|
files = announcement["bulletin_files"].map{|file| { "file_url" => file["url"], "file_title" => (file["title_translations"][locale] == "" ? URI.unescape(File.basename(file["url"])) : file["title_translations"][locale] rescue '') } } rescue []
|
2015-07-08 10:11:25 +00:00
|
|
|
|
2019-09-15 06:35:23 +00:00
|
|
|
files.each do |file|
|
2019-10-29 06:45:45 +00:00
|
|
|
if file["file_url"] =="" || file["file_url"] == nil
|
|
|
|
files.delete(file)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
links = announcement["bulletin_links"].map{|link| { "link_url" => link["url"], "link_title" => (link["title_translations"][locale] == "" ? link["url"] : link["title_translations"][locale]) } } rescue []
|
2015-07-08 10:11:25 +00:00
|
|
|
|
|
|
|
update_user = announcement["author"]
|
2016-04-12 09:38:16 +00:00
|
|
|
desc = announcement["image_description_translations"][locale] rescue ""
|
2015-07-08 10:11:25 +00:00
|
|
|
desc = (desc.nil? || desc == "" ? "announcement image" : desc)
|
2019-10-29 06:45:45 +00:00
|
|
|
|
2015-07-08 10:11:25 +00:00
|
|
|
request = OrbitHelper.request
|
2016-04-12 09:52:50 +00:00
|
|
|
if announcement["subtitle_translations"].present?
|
2016-04-12 09:55:50 +00:00
|
|
|
meta_desc = announcement["subtitle_translations"][locale] != "" ? announcement["subtitle_translations"][locale] : announcement["text_translations"][locale][0..200] rescue ""
|
2016-04-12 09:52:50 +00:00
|
|
|
else
|
|
|
|
meta_desc = ""
|
|
|
|
end
|
|
|
|
|
2019-01-16 09:37:32 +00:00
|
|
|
OrbitHelper.render_meta_tags([{"property" => "og:title", "content" => announcement["title_translations"][locale]},{"property" => "og:site_name", "content" => Site.first.title},{"property" => "og:url", "content" => request.original_url.split("?").first},{"property" => "og:description", "content" => meta_desc},{"property" => "og:image", "content" => announcement["image"]["original"]},{"property" => "og:type", "content" => "Article"}])
|
2015-07-08 10:11:25 +00:00
|
|
|
|
|
|
|
datetime = DateTime.parse(announcement["postdate"])
|
|
|
|
|
|
|
|
{
|
|
|
|
"tags" => tags,
|
|
|
|
"bulletin_files" => files,
|
|
|
|
"bulletin_links" => links,
|
|
|
|
"data" => {
|
|
|
|
"title" => announcement["title_translations"][locale],
|
|
|
|
"update_user" => update_user,
|
|
|
|
"updated_at" => datetime.strftime('%Y-%m-%d %H:%M'),
|
|
|
|
"body" => announcement["text_translations"][locale],
|
|
|
|
"image" => announcement["image"]["original"],
|
|
|
|
"alt_title" => desc
|
|
|
|
},
|
|
|
|
"impressionist" => nil,
|
|
|
|
"url_to_edit" => url_to_edit
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
params = OrbitHelper.params
|
|
|
|
uid = params[:uid]
|
|
|
|
if OrbitHelper.is_object_from_feed?(uid)
|
|
|
|
show_feed_announcement(uid)
|
|
|
|
else
|
2015-10-19 08:59:26 +00:00
|
|
|
show_local_announcement(uid, (params["preview"] == "true" ? true : false))
|
2015-07-08 10:11:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-22 11:04:13 +00:00
|
|
|
|
2014-04-01 07:12:43 +00:00
|
|
|
end
|