2017-06-13 19:27:05 +08:00
|
|
|
require "mini_mime"
|
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
|
2017-05-18 18:13:13 +08:00
|
|
|
# 50 characters ought to be enough for the upload type
|
|
|
|
type = params.require(:type).parameterize("_")[0..50]
|
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-06-23 18:13:48 +08:00
|
|
|
url = params[:url]
|
|
|
|
file = params[:file] || params[:files]&.first
|
|
|
|
pasted = params[:pasted] == "true"
|
|
|
|
for_private_message = params[:for_private_message] == "true"
|
2017-05-11 06:16:57 +08:00
|
|
|
|
|
|
|
if params[:synchronous] && (current_user.staff? || is_api?)
|
2017-06-23 18:13:48 +08:00
|
|
|
data = create_upload(file, url, type, for_private_message, pasted)
|
2017-08-23 04:40:01 +08:00
|
|
|
render json: serialize_upload(data)
|
2015-06-15 22:12:15 +08:00
|
|
|
else
|
|
|
|
Scheduler::Defer.later("Create Upload") do
|
2017-05-11 06:16:57 +08:00
|
|
|
begin
|
2017-06-23 18:13:48 +08:00
|
|
|
data = create_upload(file, url, type, for_private_message, pasted)
|
2017-05-11 06:16:57 +08:00
|
|
|
ensure
|
2017-08-23 04:40:01 +08:00
|
|
|
MessageBus.publish("/uploads/#{type}", serialize_upload(data), client_ids: [params[:client_id]])
|
2017-05-11 06:16:57 +08:00
|
|
|
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
|
|
|
|
2017-08-23 04:40:01 +08:00
|
|
|
def lookup_urls
|
|
|
|
params.permit(short_urls: [])
|
|
|
|
uploads = []
|
|
|
|
|
|
|
|
if (params[:short_urls] && params[:short_urls].length > 0)
|
|
|
|
PrettyText::Helpers.lookup_image_urls(params[:short_urls]).each do |short_url, url|
|
|
|
|
uploads << { short_url: short_url, url: url }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: uploads.to_json
|
|
|
|
end
|
|
|
|
|
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,
|
2017-06-13 19:27:05 +08:00
|
|
|
content_type: MiniMime.lookup_by_filename(upload.original_filename)&.content_type,
|
2017-02-20 22:59:01 +08:00
|
|
|
}
|
|
|
|
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
|
|
|
|
|
2017-08-23 04:40:01 +08:00
|
|
|
def serialize_upload(data)
|
|
|
|
# as_json.as_json is not a typo... as_json in AM serializer returns keys as symbols, we need them
|
|
|
|
# as strings here
|
|
|
|
serialized = UploadSerializer.new(data, root: nil).as_json.as_json if Upload === data
|
|
|
|
serialized ||= (data || {}).as_json
|
|
|
|
end
|
|
|
|
|
2014-05-14 08:51:09 +08:00
|
|
|
def render_404
|
2017-05-19 01:55:21 +08:00
|
|
|
raise Discourse::NotFound
|
2014-05-14 08:51:09 +08:00
|
|
|
end
|
|
|
|
|
2017-06-23 18:13:48 +08:00
|
|
|
def create_upload(file, url, type, for_private_message, pasted)
|
2017-05-11 06:16:57 +08:00
|
|
|
if file.nil?
|
|
|
|
if url.present? && is_api?
|
|
|
|
maximum_upload_size = [SiteSetting.max_image_size_kb, SiteSetting.max_attachment_size_kb].max.kilobytes
|
2017-05-25 01:42:52 +08:00
|
|
|
tempfile = FileHelper.download(
|
|
|
|
url,
|
|
|
|
max_file_size: maximum_upload_size,
|
|
|
|
tmp_file_name: "discourse-upload-#{type}"
|
|
|
|
) rescue nil
|
2017-05-11 06:16:57 +08:00
|
|
|
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-06-23 18:13:48 +08:00
|
|
|
opts = {
|
|
|
|
type: type,
|
|
|
|
content_type: content_type,
|
|
|
|
for_private_message: for_private_message,
|
|
|
|
pasted: pasted,
|
|
|
|
}
|
2017-06-13 04:41:29 +08:00
|
|
|
|
|
|
|
upload = UploadCreator.new(tempfile, filename, opts).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
|