2013-02-06 03:16:51 +08:00
|
|
|
class UploadsController < ApplicationController
|
2013-09-07 01:18:42 +08:00
|
|
|
before_filter :ensure_logged_in, except: [:show]
|
|
|
|
skip_before_filter :check_xhr, only: [:show]
|
2013-04-03 07:17:17 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def create
|
|
|
|
file = params[:file] || params[:files].first
|
2013-06-15 15:54:49 +08:00
|
|
|
|
2013-07-24 06:54:18 +08:00
|
|
|
filesize = File.size(file.tempfile)
|
2014-04-15 23:15:47 +08:00
|
|
|
upload = Upload.create_for(current_user.id, file.tempfile, file.original_filename, filesize, { content_type: file.content_type })
|
2013-06-15 15:54:49 +08:00
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
if upload.errors.empty?
|
|
|
|
render_serialized(upload, UploadSerializer, root: false)
|
|
|
|
else
|
|
|
|
render status: 422, text: upload.errors.full_messages
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2013-06-05 06:34:53 +08:00
|
|
|
|
2013-09-07 01:18:42 +08:00
|
|
|
def show
|
2014-05-14 08:51:09 +08:00
|
|
|
return render_404 if !RailsMultisite::ConnectionManagement.has_db?(params[:site])
|
|
|
|
|
2014-03-25 07:37:31 +08:00
|
|
|
RailsMultisite::ConnectionManagement.with_connection(params[:site]) do |db|
|
2014-05-14 08:51:09 +08:00
|
|
|
return render_404 unless Discourse.store.internal?
|
2013-09-07 01:18:42 +08:00
|
|
|
|
2014-03-25 07:37:31 +08:00
|
|
|
id = params[:id].to_i
|
|
|
|
url = request.fullpath
|
2013-09-07 01:18:42 +08:00
|
|
|
|
2014-03-25 07:37:31 +08:00
|
|
|
# the "url" parameter is here to prevent people from scanning the uploads using the id
|
2014-05-06 21:41:59 +08:00
|
|
|
if upload = Upload.find_by(id: id, url: url)
|
2014-04-15 04:55:57 +08:00
|
|
|
send_file(Discourse.store.path_for(upload), filename: upload.original_filename)
|
|
|
|
else
|
2014-05-14 08:51:09 +08:00
|
|
|
render_404
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
2014-03-25 07:37:31 +08:00
|
|
|
end
|
2013-09-07 01:18:42 +08:00
|
|
|
end
|
|
|
|
|
2014-05-14 08:51:09 +08:00
|
|
|
protected
|
|
|
|
|
|
|
|
def render_404
|
|
|
|
render nothing: true, status: 404
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|