2014-05-14 11:52:06 +00:00
|
|
|
class ArchivesController < ApplicationController
|
2015-07-15 07:24:15 +00:00
|
|
|
def index
|
2015-07-16 08:22:14 +00:00
|
|
|
files_by_cateogry = ArchiveFile.filter_by_categories.filter_by_tags.group_by(&:category)
|
2015-07-15 07:24:15 +00:00
|
|
|
cats = files_by_cateogry.keys.collect do |cat|
|
|
|
|
|
|
|
|
files_by_category_tag = files_by_cateogry[cat].group_by(&:tags)
|
|
|
|
|
2015-07-16 08:22:14 +00:00
|
|
|
url_to_edit = OrbitHelper.user_has_cateogry?(cat) ? "/admin/archive_files?filters[category][]=#{cat.id.to_s}" : ""
|
2015-07-20 02:40:46 +00:00
|
|
|
ts = []
|
|
|
|
files_by_category_tag.keys.each do |t|
|
|
|
|
|
|
|
|
archives = []
|
|
|
|
files_by_category_tag[t].each_with_index do |archive,index|
|
2015-07-17 04:01:18 +00:00
|
|
|
|
2015-07-15 07:24:15 +00:00
|
|
|
statuses = archive.statuses_with_classname.collect do |status|
|
|
|
|
{
|
|
|
|
"status" => status["name"] || "",
|
|
|
|
"status-class" => "status-#{status['classname']}"
|
|
|
|
}
|
2015-07-17 07:29:41 +00:00
|
|
|
end
|
2015-07-15 07:24:15 +00:00
|
|
|
files = []
|
|
|
|
archive.archive_file_multiples.order_by(:sort_number=>'asc').each do |file|
|
|
|
|
if file.choose_lang.include?(I18n.locale.to_s)
|
|
|
|
title = (file.file_title.blank? ? File.basename(file.file.path) : file.file_title) rescue ""
|
|
|
|
extension = file.file.file.extension.downcase rescue ""
|
|
|
|
# url = file.file.url rescue ""
|
|
|
|
files << {
|
|
|
|
"file-name" => title,
|
|
|
|
"file-type" => extension,
|
|
|
|
"file-url" => "/xhr/archive/download?file=#{file.id}"
|
|
|
|
}
|
|
|
|
end
|
2015-07-20 02:40:46 +00:00
|
|
|
end
|
|
|
|
a = {
|
2015-07-15 07:24:15 +00:00
|
|
|
"archive-title" => archive.title || "",
|
|
|
|
"statuses" => statuses,
|
|
|
|
"files" => files
|
|
|
|
}
|
2015-07-20 02:40:46 +00:00
|
|
|
if t.count > 1
|
|
|
|
t.each do |inner_tag|
|
|
|
|
index = ts.index{|tot| tot["tag-name"] == inner_tag.name}
|
|
|
|
if !index.nil?
|
|
|
|
ts[index]["archives"] << a
|
|
|
|
else
|
|
|
|
archives << a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
archives << a
|
|
|
|
end
|
2015-07-17 07:29:41 +00:00
|
|
|
end
|
2015-07-20 02:40:46 +00:00
|
|
|
ts << {
|
2015-07-17 07:29:41 +00:00
|
|
|
"tag-name" => (t[0].name rescue ""),
|
2015-07-16 08:22:14 +00:00
|
|
|
"archives" => archives
|
2015-07-16 09:02:24 +00:00
|
|
|
|
2015-07-20 02:40:46 +00:00
|
|
|
} if !archives.blank?
|
2014-05-14 11:52:06 +00:00
|
|
|
end
|
2015-07-15 07:24:15 +00:00
|
|
|
if(files_by_category_tag.empty?)
|
|
|
|
{
|
|
|
|
"category-title" => "",
|
2015-07-16 08:22:14 +00:00
|
|
|
"tags" => ts,
|
2015-07-17 07:29:41 +00:00
|
|
|
"url_to_edit" => url_to_edit
|
2015-07-15 07:24:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
"category-title" => cat.title || "",
|
2015-07-16 08:22:14 +00:00
|
|
|
"tags" => ts,
|
2015-07-17 04:01:18 +00:00
|
|
|
"url_to_edit" => url_to_edit
|
2015-07-15 07:24:15 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-05-14 11:52:06 +00:00
|
|
|
end
|
|
|
|
{
|
2014-07-16 09:11:29 +00:00
|
|
|
"categories" => cats
|
2014-05-14 11:52:06 +00:00
|
|
|
}
|
|
|
|
end
|
2014-05-23 06:00:49 +00:00
|
|
|
|
2015-03-18 09:59:03 +00:00
|
|
|
def download_file
|
|
|
|
file_id = params[:file]
|
|
|
|
file = ArchiveFileMultiple.find(file_id) rescue nil
|
|
|
|
if !file.nil?
|
|
|
|
file.download_count = file.download_count + 1
|
|
|
|
file.save
|
|
|
|
redirect_to file.file.url and return
|
|
|
|
end
|
|
|
|
render :nothing => true
|
|
|
|
end
|
|
|
|
|
2014-05-23 06:00:49 +00:00
|
|
|
def widget
|
2015-07-17 07:29:41 +00:00
|
|
|
if OrbitHelper.widget_tags.first == "all"
|
|
|
|
files_by_cateogry = ArchiveFile.filter_by_widget_categories.with_tags(OrbitHelper.widget_module_app.tags.collect{|tag| tag.id.to_s}).group_by(&:category)
|
|
|
|
else
|
|
|
|
files_by_cateogry = ArchiveFile.filter_by_widget_categories.with_tags(OrbitHelper.widget_tags).group_by(&:category)
|
|
|
|
end
|
|
|
|
|
2015-07-15 07:24:15 +00:00
|
|
|
cats = files_by_cateogry.keys.collect do |cat|
|
|
|
|
files_by_category_tag = files_by_cateogry[cat].group_by(&:tags)
|
2015-07-17 07:29:41 +00:00
|
|
|
|
2015-07-20 02:40:46 +00:00
|
|
|
ts = []
|
|
|
|
files_by_category_tag.keys.each do |t|
|
|
|
|
archives = []
|
|
|
|
files_by_category_tag[t].each_with_index do |archive,index|
|
|
|
|
a = {
|
2015-07-15 07:24:15 +00:00
|
|
|
"archive-title" => archive.title,
|
|
|
|
"archive_url" => OrbitHelper.widget_more_url
|
|
|
|
}
|
2015-07-20 02:40:46 +00:00
|
|
|
|
|
|
|
if t.count > 1
|
|
|
|
t.each do |inner_tag|
|
|
|
|
index = ts.index{|tot| tot["tag-name"] == inner_tag.name}
|
|
|
|
if !index.nil?
|
|
|
|
ts[index]["archives"] << a
|
|
|
|
else
|
|
|
|
archives << a
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
archives << a
|
2015-07-15 07:24:15 +00:00
|
|
|
end
|
2015-07-20 02:40:46 +00:00
|
|
|
end
|
|
|
|
ts << {
|
|
|
|
"tag-name" => (t[0].name rescue ""),
|
|
|
|
"archives" => archives
|
2015-07-15 07:24:15 +00:00
|
|
|
|
2015-07-20 02:40:46 +00:00
|
|
|
} if !archives.blank?
|
2014-05-23 06:00:49 +00:00
|
|
|
end
|
|
|
|
{
|
2015-07-15 07:24:15 +00:00
|
|
|
"category-title" => cat.title,
|
|
|
|
"tags" => ts
|
2014-05-23 06:00:49 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
{
|
|
|
|
"categories" => cats,
|
2014-05-24 11:37:07 +00:00
|
|
|
"extras" => {"widget-title" => "Archives","more_url"=>OrbitHelper.widget_more_url}
|
2014-05-23 06:00:49 +00:00
|
|
|
}
|
|
|
|
end
|
2014-05-14 11:52:06 +00:00
|
|
|
end
|