personal-research/app/helpers/admin/personal_researches_helper.rb

28 lines
938 B
Ruby

module Admin::PersonalResearchesHelper
def get_paper_list
user = current_user.nil? ? OrbitHelper.current_user : current_user
user_profile = user.member_profile
researchs = Research.where(:member_profile_id => user_profile.id)
researchs = researchs.collect do |r|
files = r.research_files.collect do |rf|
{
"title" => rf.title,
"description" => rf.description,
"link" => rf.file.url,
"extension" => (rf.file.url.split(".").last rescue "")
}
end
{
"id" => r.id.to_s,
"edit_url" => "/#{I18n.locale.to_s}/admin/members/#{user_profile.to_param}/researchs/#{r.to_param}/edit",
"delete_url" => "/#{I18n.locale.to_s}/admin/researchs/#{r.id.to_s}",
"paper_title" => r.research_title,
"keywords" => r.keywords,
"files" => files
}
end
researchs
end
end