require "net/http" require "uri" require 'json' module Admin::AnnouncementsHelper def page_for_bulletin(bulletin) ann_page = nil pages = Page.where(:module=>'announcement') pages.each do |page| if page.categories.count ==1 if page.categories.include?(bulletin.category.id.to_s) ann_page = page end end break if !ann_page.nil? end if ann_page.nil? pages.each do |page| if page.categories.include?(bulletin.category.id.to_s) ann_page = page end break if !ann_page.nil? end end ann_page = pages.first if ann_page.nil? request.protocol+(request.host_with_port+ann_page.url+'/'+bulletin.to_param).gsub('//','/') rescue "/" end def import_this_announcement(row,categories,tags) value = {} anns = Bulletin.new row.cells.each_with_index do |cell,index| next if cell.nil? val = cell.value next if val.nil? || val == "" case index when 0 anns.category = categories[val.to_i] when 1 new_tags = [] if (val.include?(",") rescue false) ts = val.split(",") ts.each do |t| new_tags << tags[t.to_i] end else new_tags << tags[val.to_i] end anns.tags=new_tags when 2 anns.postdate = val when 3 anns.deadline = val when 4 anns.is_top = (val.to_i == 1 ? true : false) when 5 anns.is_hot = (val.to_i == 1 ? true : false) when 6 anns.is_hidden = (val.to_i == 1 ? true : false) when 7 anns.remote_image_url = val when 8 value["en"] = val when 9 value["zh_tw"] = val anns.image_description_translations = value value = {} when 10 value["en"] = val when 11 value["zh_tw"] = val anns.title_translations = value value = {} when 12 value["en"] = val when 13 value["zh_tw"] = val anns.subtitle_translations = value value = {} when 14 value["en"] = val when 15 value["zh_tw"] = val anns.text_translations = value value = {} when 16 links = val.split(";") rescue [] desc_en = row.cells[17].value.split(";") rescue [] desc_zh_tw = row.cells[18].value.split(";") rescue [] links.each_with_index do |link,i| bl = BulletinLink.new bl.url = link.strip bl.title_translations = {"en" => desc_en[i], "zh_tw" => desc_zh_tw[i]} bl.bulletin_id = anns.id bl.save end when 19 files = val.split(";") rescue [] desc_en = row.cells[20].value.split(";") rescue [] desc_zh_tw = row.cells[21].value.split(";") rescue [] alt_en = row.cells[22].value.split(";") rescue [] alt_zh_tw = row.cells[23].value.split(";") rescue [] files.each_with_index do |file, i| bf = BulletinFile.new bf.remote_file_url = file.strip rescue nil bf.title_translations = {"en" => (desc_en[i] rescue ""), "zh_tw" => (desc_zh_tw[i] rescue "")} bf.description_translations = {"en" => (alt_en[i] rescue ""), "zh_tw" => (alt_zh_tw[i] rescue "")} bf.bulletin_id = anns.id bf.save end end end anns.create_user_id = current_user.id.to_s anns.update_user_id = current_user.id.to_s anns.approved = true anns.save end def send_rejection_email(announcement) user = User.find(announcement.create_user_id) rescue nil if !user.nil? email = user.member_profile.email if !email.nil? && email != "" url = "http://#{request.host_with_port}/admin/announcements/#{announcement.id}/edit" datatosend = "

Hello #{user.name},

#{current_user.name} #{t("announcement.rejected_annoucement")} : #{announcement.rejection_reason} #{t("announcement.click_here_to_see")}

" mail = Email.new(:mail_to => email, :mail_subject => "Announcement rejected公告未通過 : #{announcement.title}.", :template => "email/announcement_email.html.erb", :template_data => {"html" => datatosend}) mail.deliver rescue nil end end end def send_notification_mail_to_managers(announcement, type) authorizations = Authorization.where(:module_app_id => @module_app.id) users = authorizations.collect do |auth| auth.user end wg = Workgroup.where(:key => "admin").first admins = User.where(:workgroup_id => wg.id) users.delete(nil) users = users.concat(admins.to_a) users.each do |user| email = user.member_profile.email if !email.nil? && email != "" send_email(user.name, email, announcement, type) # sleep(1) end end end def send_email(name, useremail, announcement, type) url = "http://#{request.host_with_port}/admin/announcements?url=#{page_for_bulletin(announcement).sub("http://" + request.host_with_port, "")}&id=#{announcement.id}" case type when "approval" datatosend = "

#{t("announcement.approval_mail_hi", :name => name)},

#{t("announcement.submitted_new_announcement", :poster => current_user.name)}

#{t("announcement.approval_announcement_title")} : #{announcement.title}
#{t("announcement.click_here_to_see")} : #{url}

" when "reapproval" datatosend = "

#{t("announcement.approval_mail_hi", :name => name)},

#{t("announcement.updated_annoucement", :poster => current_user.name)}

#{t("announcement.approval_announcement_title")} : #{announcement.title}
#{t("announcement.click_here_to_see")} : #{url}

" end email = Email.new(:mail_to => useremail, :mail_subject => " #{t("announcement.announcement_subject")} : #{announcement.title}.", :template => "email/announcement_email.html.erb", :template_data => {"html" => datatosend}) email.deliver rescue nil end def download_tmp_xml(url) xml = File.join(Rails.root, "tmp", "ann_cc_ntu.xml") open(xml, 'wb') do |fo| fo.print open(url).read end end def import_from_tmp_xml(file) xml = Nokogiri::XML(file) return if xml.nil? announcements = [] xml.xpath("//channel").xpath("//item").each do |anns| announcements << { :title => (anns>"title").text, :category => (anns>"category").text, :postdate => (anns>"pubDate").text, :text => (anns>"description").text, :rss2_sn => (anns>"link").text.split("=").last } end announcements.each do |anns| ma = ModuleApp.where(:key => "announcement").first cat = Category.where(:title => anns[:category]).first rescue nil if cat.nil? cat = Category.create(:title_translations => {"en" => anns[:category], "zh_tw" => anns[:category]}, :module_app_id => ma.id) end ann = Bulletin.where(:rss2_sn => anns[:rss2_sn]).first rescue nil if ann.nil? ann = Bulletin.new(:title_translations => {"en" => "", "zh_tw" => anns[:title]}, :postdate => anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => anns[:title]}, :text_translations => {"en" => "", "zh_tw" => anns[:text]}, :rss2_sn => anns[:rss2_sn], :category_id => cat.id, :approved => true, :create_user_id => current_user.id) else ann.update_attributes(:title_translations => {"en" => "", "zh_tw" => anns[:title]}, :postdate => anns[:postdate], :subtitle_translations => {"en" => "", "zh_tw" => anns[:title]}, :text_translations => {"en" => "", "zh_tw" => anns[:text]}) end ann.save end File.delete(file) end def load_access_level if (current_user.is_admin? rescue false) @access_level = "admin" elsif (current_user.is_manager?(@module_app) rescue false) @access_level = "manager" else @access_level = "users" end end def user_can_approve? case @access_level when "admin" return true when "manager" return true else return false end end end