Merge branch 'develop' into szzh

This commit is contained in:
sw 2015-03-27 17:45:08 +08:00
commit 21db854adb
5 changed files with 147 additions and 147 deletions

View File

@ -1,140 +1,140 @@
require 'zip' # require 'zip'
class ZipdownController < ApplicationController # class ZipdownController < ApplicationController
#查找项目(课程) # #查找项目(课程)
before_filter :find_project_by_bid_id, :only => [:assort] # before_filter :find_project_by_bid_id, :only => [:assort]
#检查权限 # #检查权限
#勿删 before_filter :authorize, :only => [:assort,:download_user_homework] # #勿删 before_filter :authorize, :only => [:assort,:download_user_homework]
SAVE_FOLDER = "#{Rails.root}/files" # SAVE_FOLDER = "#{Rails.root}/files"
OUTPUT_FOLDER = "#{Rails.root}/tmp/archiveZip" # OUTPUT_FOLDER = "#{Rails.root}/tmp/archiveZip"
#
#
def assort # def assort
if params[:obj_class] == "Bid" # if params[:obj_class] == "Bid"
bid = Bid.find params[:obj_id] # bid = Bid.find params[:obj_id]
file_count = 0 # file_count = 0
bid.homeworks.map { |homework| file_count += homework.attachments.count} # bid.homeworks.map { |homework| file_count += homework.attachments.count}
if file_count > 0 # if file_count > 0
zipfile = zip_bid bid # zipfile = zip_bid bid
else # else
render file: 'public/no_file_found.html' # render file: 'public/no_file_found.html'
end # end
else # else
logger.error "[ZipDown#assort] ===> #{params[:obj_class]} unKown !!" # logger.error "[ZipDown#assort] ===> #{params[:obj_class]} unKown !!"
end # end
send_file zipfile, :filename => bid.name + ".zip", :type => detect_content_type(zipfile) if zipfile # send_file zipfile, :filename => bid.name + ".zip", :type => detect_content_type(zipfile) if zipfile
#
#rescue Exception => e # #rescue Exception => e
# render file: 'public/no_file_found.html' # # render file: 'public/no_file_found.html'
end # end
#
#下载某一学生的作业的所有文件 # #下载某一学生的作业的所有文件
def download_user_homework # def download_user_homework
homework = HomeworkAttach.find params[:homework] # homework = HomeworkAttach.find params[:homework]
if User.current.admin? || User.current.member_of_course?(homework.bid.courses.first) # if User.current.admin? || User.current.member_of_course?(homework.bid.courses.first)
if homework != nil # if homework != nil
unless homework.attachments.empty? # unless homework.attachments.empty?
zipfile = zip_homework_by_user homework # zipfile = zip_homework_by_user homework
send_file zipfile, :filename => ((homework.user.user_extensions.nil? || homework.user.user_extensions.student_id.nil?) ? "" : homework.user.user_extensions.student_id) + # send_file zipfile, :filename => ((homework.user.user_extensions.nil? || homework.user.user_extensions.student_id.nil?) ? "" : homework.user.user_extensions.student_id) +
"_" + (homework.user.lastname.nil? ? "" : homework.user.lastname) + (homework.user.firstname.nil? ? "" : homework.user.firstname) + # "_" + (homework.user.lastname.nil? ? "" : homework.user.lastname) + (homework.user.firstname.nil? ? "" : homework.user.firstname) +
"_" + homework.name + ".zip", :type => detect_content_type(zipfile) if(zipfile) # "_" + homework.name + ".zip", :type => detect_content_type(zipfile) if(zipfile)
else # else
render file: 'public/no_file_found.html' # render file: 'public/no_file_found.html'
end # end
else # else
render file: 'public/file_not_found.html' # render file: 'public/file_not_found.html'
end # end
else # else
render_403 # render_403
end # end
#rescue => e # #rescue => e
# render file: 'public/file_not_found.html' # # render file: 'public/file_not_found.html'
end # end
#
private # private
#
#通过作业Id找到项目课程 # #通过作业Id找到项目课程
def find_project_by_bid_id # def find_project_by_bid_id
obj_class = params[:obj_class] # obj_class = params[:obj_class]
obj_id = params[:obj_id] # obj_id = params[:obj_id]
obj = obj_class.constantize.find(obj_id) # obj = obj_class.constantize.find(obj_id)
case obj.class.to_s.to_sym # case obj.class.to_s.to_sym
when :Bid # when :Bid
@project = obj.courses[0] # @project = obj.courses[0]
end # end
end # end
#
def zip_bid(bid) # def zip_bid(bid)
# Todo: User Access Controll # # Todo: User Access Controll
bid_homework_path = [] # bid_homework_path = []
bid.homeworks.each do |homeattach| # bid.homeworks.each do |homeattach|
unless homeattach.attachments.empty? # unless homeattach.attachments.empty?
bid_homework_path << zip_homework_by_user(homeattach) # bid_homework_path << zip_homework_by_user(homeattach)
end # end
end # end
zipping "#{Time.now.to_i}_#{bid.name}.zip", bid_homework_path, OUTPUT_FOLDER # zipping "#{Time.now.to_i}_#{bid.name}.zip", bid_homework_path, OUTPUT_FOLDER
end # end
#
def zip_homework_by_user(homeattach) # def zip_homework_by_user(homeattach)
homeworks_attach_path = [] # homeworks_attach_path = []
not_exist_file = [] # not_exist_file = []
# 需要将所有homework.attachments遍历加入zip # # 需要将所有homework.attachments遍历加入zip
# 并且返回zip路径 # # 并且返回zip路径
homeattach.attachments.each do |attach| # homeattach.attachments.each do |attach|
if File.exist?(attach.diskfile) # if File.exist?(attach.diskfile)
homeworks_attach_path << attach.diskfile # homeworks_attach_path << attach.diskfile
else # else
not_exist_file << attach.filename # not_exist_file << attach.filename
end # end
end # end
zipping("#{homeattach.user.lastname}#{homeattach.user.firstname}_#{((homeattach.user.user_extensions.nil? || homeattach.user.user_extensions.student_id.nil?) ? "" : homeattach.user.user_extensions.student_id)}_#{Time.now.to_i.to_s}.zip", homeworks_attach_path, OUTPUT_FOLDER, true, not_exist_file) # zipping("#{homeattach.user.lastname}#{homeattach.user.firstname}_#{((homeattach.user.user_extensions.nil? || homeattach.user.user_extensions.student_id.nil?) ? "" : homeattach.user.user_extensions.student_id)}_#{Time.now.to_i.to_s}.zip", homeworks_attach_path, OUTPUT_FOLDER, true, not_exist_file)
end # end
#
#
def zipping(zip_name_refer, files_paths, output_path, is_attachment=false, not_exist_file=[]) # def zipping(zip_name_refer, files_paths, output_path, is_attachment=false, not_exist_file=[])
# 输入待打包的文件列表已经打包文件定位到ouput_path # # 输入待打包的文件列表已经打包文件定位到ouput_path
ic = Iconv.new('GBK//IGNORE', 'UTF-8//IGNORE') # ic = Iconv.new('GBK//IGNORE', 'UTF-8//IGNORE')
input_filename = files_paths # input_filename = files_paths
#
rename_zipfile = zip_name_refer ||= "#{Time.now.to_i.to_s}.zip" # rename_zipfile = zip_name_refer ||= "#{Time.now.to_i.to_s}.zip"
zipfile_name = "#{output_path}/#{rename_zipfile}" # zipfile_name = "#{output_path}/#{rename_zipfile}"
#
Dir.mkdir(File.dirname(zipfile_name)) unless File.exist?(File.dirname(zipfile_name)) # Dir.mkdir(File.dirname(zipfile_name)) unless File.exist?(File.dirname(zipfile_name))
#
Zip::File.open(zipfile_name, Zip::File::CREATE) do |zipfile| # Zip::File.open(zipfile_name, Zip::File::CREATE) do |zipfile|
input_filename.each do |filename| # input_filename.each do |filename|
flag = true # flag = true
index = 1 # index = 1
rename_file = ic.iconv( (File.basename(filename)) ).to_s # rename_file = ic.iconv( (File.basename(filename)) ).to_s
rename_file = ic.iconv( filename_to_real( File.basename(filename))).to_s if is_attachment # rename_file = ic.iconv( filename_to_real( File.basename(filename))).to_s if is_attachment
#
begin # begin
zipfile.add(rename_file, filename) # zipfile.add(rename_file, filename)
flag = false # flag = false
rescue Exception => e # rescue Exception => e
zipfile.get_output_stream('FILE_NOTICE.txt') do |os| # zipfile.get_output_stream('FILE_NOTICE.txt') do |os|
os.write l(:label_file_exist) # os.write l(:label_file_exist)
end # end
next # next
end # end
end # end
unless not_exist_file.empty? # unless not_exist_file.empty?
zipfile.get_output_stream('FILE_LOST.txt') do |os| # zipfile.get_output_stream('FILE_LOST.txt') do |os|
os.write l(:label_file_lost) + not_exist_file.join(',').to_s # os.write l(:label_file_lost) + not_exist_file.join(',').to_s
end # end
end # end
end # end
zipfile_name # zipfile_name
#rescue Errno => e # #rescue Errno => e
# logger.error "[zipdown#zipping] ===> #{e}" # # logger.error "[zipdown#zipping] ===> #{e}"
# @error = e # # @error = e
end # end
def detect_content_type(name) # def detect_content_type(name)
content_type = Redmine::MimeType.of(name) # content_type = Redmine::MimeType.of(name)
content_type.to_s # content_type.to_s
end # end
#
def filename_to_real(name) # def filename_to_real(name)
attach = Attachment.find_by_disk_filename(name) # attach = Attachment.find_by_disk_filename(name)
attach.filename # attach.filename
end # end
end # end

View File

@ -23,7 +23,7 @@
(<span id="jours_count" class="c_red f_12"><%= @jours_count %></span>) (<span id="jours_count" class="c_red f_12"><%= @jours_count %></span>)
</li> </li>
<li> <li>
<%= link_to "作品打包下载", zipdown_assort_path(obj_class: @bid.class, obj_id: @bid), class: "tb_all" unless @bid.homeworks.empty? %> <%#= link_to "作品打包下载", zipdown_assort_path(obj_class: @bid.class, obj_id: @bid), class: "tb_all" unless @bid.homeworks.empty? %>
</li> </li>
</ul> </ul>
<% else %> <% else %>

View File

@ -26,7 +26,7 @@
</span> </span>
</li> </li>
<li class="wdown"> <li class="wdown">
<%= link_to "(#{homework.attachments.count.to_s}个附件)", zipdown_download_user_homework_path(:homework => homework)%> <%#= link_to "(#{homework.attachments.count.to_s}个附件)", "javascript:"%>
</li> </li>
<li class="wscore"> <li class="wscore">
<% unless is_student_batch_homework %> <% unless is_student_batch_homework %>

View File

@ -102,10 +102,10 @@ RedmineApp::Application.routes.draw do
mount SeemsRateable::Engine => '/rateable', :as => :rateable mount SeemsRateable::Engine => '/rateable', :as => :rateable
namespace :zipdown do # namespace :zipdown do
match 'assort' # match 'assort'
match 'download_user_homework', :as => :download_user_homework # match 'download_user_homework', :as => :download_user_homework
end # end
namespace :test do namespace :test do
match 'courselist' match 'courselist'
match 'zip' match 'zip'

View File

@ -38,7 +38,7 @@ a:hover.tb_all{ background:#eaeaea; text-decoration:none;}
.pic_head a{ text-align:center; width:42px; overflow:hidden;text-overflow:ellipsis; white-space:nowrap;} .pic_head a{ text-align:center; width:42px; overflow:hidden;text-overflow:ellipsis; white-space:nowrap;}
.pic_head img{ border:1px solid #fff;} .pic_head img{ border:1px solid #fff;}
.pic_head img:hover{border:1px solid #15bccf;} .pic_head img:hover{border:1px solid #15bccf;}
.dis ul li.wname a{ width:260px; font-size:14px; color:#595959; padding:15px 0 0 0px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;} .dis ul li.wname a{ width:360px; font-size:14px; color:#595959; padding:15px 0 0 0px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.dis ul li.wdown a{padding-top:22px; color:#3d7ec2; margin-right:35px;} .dis ul li.wdown a{padding-top:22px; color:#3d7ec2; margin-right:35px;}
.wscore{ padding-top:22px; color:#888888; width:96px;} .wscore{ padding-top:22px; color:#888888; width:96px;}
.dis ul li.wping{margin-left:12px; } .dis ul li.wping{margin-left:12px; }