2017-05-11 06:16:57 +08:00
|
|
|
require_dependency 'upload_creator'
|
|
|
|
|
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]
|
2015-07-24 07:41:46 +08:00
|
|
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required, only: [:show]
|
2013-04-03 07:17:17 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def create
|
2015-05-20 07:39:58 +08:00
|
|
|
type = params.require(:type)
|
2016-12-19 07:16:18 +08:00
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
raise Discourse::InvalidAccess.new unless Upload::UPLOAD_TYPES.include?(type)
|
2015-05-20 07:39:58 +08:00
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
if type == "avatar" && (SiteSetting.sso_overrides_avatar || !SiteSetting.allow_uploaded_avatars)
|
|
|
|
return render json: failed_json, status: 422
|
2015-11-12 17:26:45 +08:00
|
|
|
end
|
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
url = params[:url]
|
|
|
|
file = params[:file] || params[:files]&.first
|
|
|
|
|
|
|
|
if params[:synchronous] && (current_user.staff? || is_api?)
|
|
|
|
data = create_upload(file, url, type)
|
2015-06-15 22:12:15 +08:00
|
|
|
render json: data.as_json
|
|
|
|
else
|
|
|
|
Scheduler::Defer.later("Create Upload") do
|
2017-05-11 06:16:57 +08:00
|
|
|
begin
|
|
|
|
data = create_upload(file, url, type)
|
|
|
|
ensure
|
|
|
|
MessageBus.publish("/uploads/#{type}", (data || {}).as_json, client_ids: [params[:client_id]])
|
|
|
|
end
|
2015-05-20 23:38:06 +08:00
|
|
|
end
|
2015-06-15 22:12:15 +08:00
|
|
|
render json: success_json
|
2014-09-23 13:50:26 +08:00
|
|
|
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?
|
2014-09-10 00:40:11 +08:00
|
|
|
return render_404 if SiteSetting.prevent_anons_from_downloading_files && current_user.nil?
|
2015-07-24 07:44:16 +08:00
|
|
|
return render_404 if SiteSetting.login_required? && db == "default" && current_user.nil?
|
2013-09-07 01:18:42 +08:00
|
|
|
|
2015-05-20 21:32:31 +08:00
|
|
|
if upload = Upload.find_by(sha1: params[:sha]) || Upload.find_by(id: params[:id], url: request.env["PATH_INFO"])
|
2017-02-20 22:59:01 +08:00
|
|
|
opts = {
|
|
|
|
filename: upload.original_filename,
|
|
|
|
content_type: Rack::Mime.mime_type(File.extname(upload.original_filename)),
|
|
|
|
}
|
|
|
|
opts[:disposition] = "inline" if params[:inline]
|
|
|
|
opts[:disposition] ||= "attachment" unless FileHelper.is_image?(upload.original_filename)
|
2015-05-19 18:31:12 +08:00
|
|
|
send_file(Discourse.store.path_for(upload), opts)
|
2014-04-15 04:55:57 +08:00
|
|
|
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
|
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
def create_upload(file, url, type)
|
|
|
|
if file.nil?
|
|
|
|
if url.present? && is_api?
|
|
|
|
maximum_upload_size = [SiteSetting.max_image_size_kb, SiteSetting.max_attachment_size_kb].max.kilobytes
|
|
|
|
tempfile = FileHelper.download(url, maximum_upload_size, "discourse-upload-#{type}") rescue nil
|
|
|
|
filename = File.basename(URI.parse(url).path)
|
2015-08-13 00:33:13 +08:00
|
|
|
end
|
2017-05-11 06:16:57 +08:00
|
|
|
else
|
|
|
|
tempfile = file.tempfile
|
|
|
|
filename = file.original_filename
|
|
|
|
content_type = file.content_type
|
|
|
|
end
|
2015-08-13 00:33:13 +08:00
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
return { errors: [I18n.t("upload.file_missing")] } if tempfile.nil?
|
2015-06-15 22:12:15 +08:00
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
upload = UploadCreator.new(tempfile, filename, type: type, content_type: content_type).create_for(current_user.id)
|
2015-06-15 22:12:15 +08:00
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
if upload.errors.empty? && current_user.admin?
|
|
|
|
retain_hours = params[:retain_hours].to_i
|
|
|
|
upload.update_columns(retain_hours: retain_hours) if retain_hours > 0
|
2015-06-15 22:12:15 +08:00
|
|
|
end
|
|
|
|
|
2017-05-11 06:16:57 +08:00
|
|
|
upload.errors.empty? ? upload : { errors: upload.errors.values.flatten }
|
|
|
|
ensure
|
|
|
|
tempfile&.close! rescue nil
|
2016-06-20 18:35:07 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|