2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-21 22:28:52 +08:00
|
|
|
require "file_helper"
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2019-10-02 12:01:53 +08:00
|
|
|
class UploadValidator < ActiveModel::Validator
|
2014-04-15 04:55:57 +08:00
|
|
|
def validate(upload)
|
2017-06-13 04:41:29 +08:00
|
|
|
# staff can upload any file in PM
|
2018-11-14 15:03:02 +08:00
|
|
|
if (upload.for_private_message && SiteSetting.allow_staff_to_upload_any_file_in_pm)
|
2017-06-13 04:41:29 +08:00
|
|
|
return true if upload.user&.staff?
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
# check the attachment blocklist
|
2017-06-13 04:41:29 +08:00
|
|
|
if upload.for_group_message && SiteSetting.allow_all_attachments_for_group_messages
|
2020-07-27 08:23:54 +08:00
|
|
|
return upload.original_filename =~ SiteSetting.blocked_attachment_filenames_regex
|
2016-06-28 04:26:05 +08:00
|
|
|
end
|
2016-03-01 05:39:24 +08:00
|
|
|
|
2014-07-15 09:15:17 +08:00
|
|
|
extension = File.extname(upload.original_filename)[1..-1] || ""
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-11-14 15:03:02 +08:00
|
|
|
if upload.for_site_setting && upload.user&.staff? &&
|
|
|
|
FileHelper.is_supported_image?(upload.original_filename)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2019-07-31 11:16:03 +08:00
|
|
|
if upload.for_gravatar && FileHelper.supported_gravatar_extensions.include?(extension)
|
|
|
|
maximum_image_file_size(upload)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2022-04-20 12:11:39 +08:00
|
|
|
return true if changing_upload_security?(upload)
|
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
if is_authorized?(upload, extension)
|
2018-09-10 10:22:45 +08:00
|
|
|
if FileHelper.is_supported_image?(upload.original_filename)
|
2014-04-15 04:55:57 +08:00
|
|
|
authorized_image_extension(upload, extension)
|
|
|
|
maximum_image_file_size(upload)
|
|
|
|
else
|
|
|
|
authorized_attachment_extension(upload, extension)
|
|
|
|
maximum_attachment_file_size(upload)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-20 12:11:39 +08:00
|
|
|
# this should only be run on existing records, and covers cases of
|
|
|
|
# upload.update_secure_status being run outside of the creation flow,
|
|
|
|
# where some cases e.g. have exemptions on the extension enforcement
|
|
|
|
def changing_upload_security?(upload)
|
|
|
|
!upload.new_record? &&
|
|
|
|
upload.changed_attributes.keys.all? do |attribute|
|
|
|
|
%w[secure security_last_changed_at security_last_changed_reason].include?(attribute)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
def is_authorized?(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_extensions(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_image_extension(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_images(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_image_file_size(upload)
|
|
|
|
maximum_file_size(upload, "image")
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_attachment_extension(upload, extension)
|
2018-02-19 17:44:24 +08:00
|
|
|
extension_authorized?(upload, extension, authorized_attachments(upload))
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_attachment_file_size(upload)
|
|
|
|
maximum_file_size(upload, "attachment")
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def extensions_to_set(exts)
|
|
|
|
extensions = Set.new
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
exts
|
2016-10-21 01:53:41 +08:00
|
|
|
.gsub(/[\s\.]+/, "")
|
|
|
|
.downcase
|
2014-04-15 04:55:57 +08:00
|
|
|
.split("|")
|
2024-05-27 18:27:13 +08:00
|
|
|
.each { |extension| extensions << extension if extension.exclude?("*") }
|
2018-02-19 17:44:24 +08:00
|
|
|
|
|
|
|
extensions
|
|
|
|
end
|
2014-04-15 04:55:57 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def authorized_extensions(upload)
|
2018-04-19 19:30:31 +08:00
|
|
|
extensions =
|
|
|
|
if upload.for_theme
|
|
|
|
SiteSetting.theme_authorized_extensions
|
|
|
|
elsif upload.for_export
|
|
|
|
SiteSetting.export_authorized_extensions
|
|
|
|
else
|
|
|
|
SiteSetting.authorized_extensions
|
|
|
|
end
|
2018-02-19 17:44:24 +08:00
|
|
|
extensions_to_set(extensions)
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorized_images(upload)
|
2018-09-10 10:03:44 +08:00
|
|
|
authorized_extensions(upload) & FileHelper.supported_images
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorized_attachments(upload)
|
2018-09-10 10:03:44 +08:00
|
|
|
authorized_extensions(upload) - FileHelper.supported_images
|
2014-04-30 01:12:35 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def authorizes_all_extensions?(upload)
|
2018-02-19 17:44:24 +08:00
|
|
|
if upload.user&.staff?
|
|
|
|
return true if SiteSetting.authorized_extensions_for_staff.include?("*")
|
|
|
|
end
|
2018-04-19 19:30:31 +08:00
|
|
|
extensions =
|
|
|
|
if upload.for_theme
|
|
|
|
SiteSetting.theme_authorized_extensions
|
|
|
|
elsif upload.for_export
|
|
|
|
SiteSetting.export_authorized_extensions
|
|
|
|
else
|
|
|
|
SiteSetting.authorized_extensions
|
|
|
|
end
|
2017-05-10 05:20:28 +08:00
|
|
|
extensions.include?("*")
|
2014-04-15 04:55:57 +08:00
|
|
|
end
|
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
def extension_authorized?(upload, extension, extensions)
|
2017-05-10 05:20:28 +08:00
|
|
|
return true if authorizes_all_extensions?(upload)
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2018-02-19 17:44:24 +08:00
|
|
|
staff_extensions = Set.new
|
|
|
|
if upload.user&.staff?
|
|
|
|
staff_extensions = extensions_to_set(SiteSetting.authorized_extensions_for_staff)
|
|
|
|
return true if staff_extensions.include?(extension.downcase)
|
|
|
|
end
|
|
|
|
|
2014-04-30 01:12:35 +08:00
|
|
|
unless authorized = extensions.include?(extension.downcase)
|
2018-02-19 17:44:24 +08:00
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"upload.unauthorized",
|
|
|
|
authorized_extensions: (extensions | staff_extensions).to_a.join(", "),
|
|
|
|
)
|
2014-04-15 04:55:57 +08:00
|
|
|
upload.errors.add(:original_filename, message)
|
|
|
|
end
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2014-04-15 04:55:57 +08:00
|
|
|
authorized
|
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_file_size(upload, type)
|
2022-11-12 00:56:11 +08:00
|
|
|
return if !upload.validate_file_size
|
|
|
|
|
2018-07-31 13:45:31 +08:00
|
|
|
max_size_kb =
|
|
|
|
if upload.for_export
|
|
|
|
SiteSetting.max_export_file_size_kb
|
|
|
|
else
|
2024-08-16 22:03:39 +08:00
|
|
|
if upload.user&.id == Discourse::SYSTEM_USER_ID && type == "attachment"
|
|
|
|
[
|
|
|
|
SiteSetting.get("system_user_max_attachment_size_kb"),
|
|
|
|
SiteSetting.get("max_attachment_size_kb"),
|
|
|
|
].max
|
|
|
|
else
|
|
|
|
SiteSetting.get("max_#{type}_size_kb")
|
|
|
|
end
|
2018-07-31 13:45:31 +08:00
|
|
|
end
|
2019-05-07 09:27:05 +08:00
|
|
|
|
2015-05-04 01:26:54 +08:00
|
|
|
max_size_bytes = max_size_kb.kilobytes
|
2014-04-30 01:12:35 +08:00
|
|
|
|
2015-05-04 01:26:54 +08:00
|
|
|
if upload.filesize > max_size_bytes
|
FEATURE: Humanize file size error messages (#14398)
The file size error messages for max_image_size_kb and
max_attachment_size_kb are shown to the user in the KB
format, regardless of how large the limit is. Since we
are going to support uploading much larger files soon,
this KB-based limit soon becomes unfriendly to the end
user.
For example, if the max attachment size is set to 512000
KB, this is what the user sees:
> Sorry, the file you are trying to upload is too big (maximum
size is 512000KB)
This makes the user do math. In almost all file explorers that
a regular user would be familiar width, the file size is shown
in a format based on the maximum increment (e.g. KB, MB, GB).
This commit changes the behaviour to output a humanized file size
instead of the raw KB. For the above example, it would now say:
> Sorry, the file you are trying to upload is too big (maximum
size is 512 MB)
This humanization also handles decimals, e.g. 1536KB = 1.5 MB
2021-09-22 05:59:45 +08:00
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"upload.#{type}s.too_large_humanized",
|
|
|
|
max_size: ActiveSupport::NumberHelper.number_to_human_size(max_size_bytes),
|
|
|
|
)
|
2014-04-15 04:55:57 +08:00
|
|
|
upload.errors.add(:filesize, message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|