2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-21 09:28:52 -05:00
|
|
|
require "file_helper"
|
2014-04-14 15:55:57 -05:00
|
|
|
|
2019-10-01 23:01:53 -05:00
|
|
|
class UploadValidator < ActiveModel::Validator
|
2014-04-14 15:55:57 -05:00
|
|
|
def validate(upload)
|
2017-06-12 15:41:29 -05:00
|
|
|
# staff can upload any file in PM
|
2018-11-14 01:03:02 -06:00
|
|
|
if (upload.for_private_message && SiteSetting.allow_staff_to_upload_any_file_in_pm)
|
2017-06-12 15:41:29 -05:00
|
|
|
return true if upload.user&.staff?
|
|
|
|
end
|
|
|
|
|
2020-07-26 19:23:54 -05:00
|
|
|
# check the attachment blocklist
|
2017-06-12 15:41:29 -05:00
|
|
|
if upload.for_group_message && SiteSetting.allow_all_attachments_for_group_messages
|
2020-07-26 19:23:54 -05:00
|
|
|
return upload.original_filename =~ SiteSetting.blocked_attachment_filenames_regex
|
2016-06-27 15:26:05 -05:00
|
|
|
end
|
2016-02-29 15:39:24 -06:00
|
|
|
|
2014-07-14 20:15:17 -05:00
|
|
|
extension = File.extname(upload.original_filename)[1..-1] || ""
|
2014-04-14 15:55:57 -05:00
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
if upload.for_site_setting && upload.user&.staff? &&
|
|
|
|
FileHelper.is_supported_image?(upload.original_filename)
|
2018-11-14 01:03:02 -06:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
if upload.for_gravatar && FileHelper.supported_gravatar_extensions.include?(extension)
|
2019-07-30 22:16:03 -05:00
|
|
|
maximum_image_file_size(upload)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2022-04-19 23:11:39 -05:00
|
|
|
return true if changing_upload_security?(upload)
|
|
|
|
|
2014-04-14 15:55:57 -05:00
|
|
|
if is_authorized?(upload, extension)
|
2018-09-09 21:22:45 -05:00
|
|
|
if FileHelper.is_supported_image?(upload.original_filename)
|
2014-04-14 15:55:57 -05: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-19 23:11:39 -05: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)
|
2023-01-09 06:10:19 -06:00
|
|
|
!upload.new_record? &&
|
2022-04-19 23:11:39 -05:00
|
|
|
upload.changed_attributes.keys.all? do |attribute|
|
2023-01-09 06:10:19 -06:00
|
|
|
%w[secure security_last_changed_at security_last_changed_reason].include?(attribute)
|
2022-04-19 23:11:39 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-14 15:55:57 -05:00
|
|
|
def is_authorized?(upload, extension)
|
2018-02-19 03:44:24 -06:00
|
|
|
extension_authorized?(upload, extension, authorized_extensions(upload))
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_image_extension(upload, extension)
|
2018-02-19 03:44:24 -06:00
|
|
|
extension_authorized?(upload, extension, authorized_images(upload))
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_image_file_size(upload)
|
|
|
|
maximum_file_size(upload, "image")
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorized_attachment_extension(upload, extension)
|
2018-02-19 03:44:24 -06:00
|
|
|
extension_authorized?(upload, extension, authorized_attachments(upload))
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_attachment_file_size(upload)
|
|
|
|
maximum_file_size(upload, "attachment")
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-02-19 03:44:24 -06:00
|
|
|
def extensions_to_set(exts)
|
|
|
|
extensions = Set.new
|
2014-04-14 15:55:57 -05:00
|
|
|
|
2018-02-19 03:44:24 -06:00
|
|
|
exts
|
2016-10-20 12:53:41 -05:00
|
|
|
.gsub(/[\s\.]+/, "")
|
|
|
|
.downcase
|
2014-04-14 15:55:57 -05:00
|
|
|
.split("|")
|
2018-02-19 03:44:24 -06:00
|
|
|
.each { |extension| extensions << extension unless extension.include?("*") }
|
|
|
|
|
|
|
|
extensions
|
|
|
|
end
|
2014-04-14 15:55:57 -05:00
|
|
|
|
2018-02-19 03:44:24 -06:00
|
|
|
def authorized_extensions(upload)
|
2023-01-09 06:10:19 -06: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 03:44:24 -06:00
|
|
|
extensions_to_set(extensions)
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
2017-05-09 16:20:28 -05:00
|
|
|
def authorized_images(upload)
|
2018-09-09 21:03:44 -05:00
|
|
|
authorized_extensions(upload) & FileHelper.supported_images
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
2017-05-09 16:20:28 -05:00
|
|
|
def authorized_attachments(upload)
|
2018-09-09 21:03:44 -05:00
|
|
|
authorized_extensions(upload) - FileHelper.supported_images
|
2014-04-29 12:12:35 -05:00
|
|
|
end
|
|
|
|
|
2017-05-09 16:20:28 -05:00
|
|
|
def authorizes_all_extensions?(upload)
|
2018-02-19 03:44:24 -06:00
|
|
|
if upload.user&.staff?
|
|
|
|
return true if SiteSetting.authorized_extensions_for_staff.include?("*")
|
|
|
|
end
|
2023-01-09 06:10:19 -06: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-09 16:20:28 -05:00
|
|
|
extensions.include?("*")
|
2014-04-14 15:55:57 -05:00
|
|
|
end
|
|
|
|
|
2018-02-19 03:44:24 -06:00
|
|
|
def extension_authorized?(upload, extension, extensions)
|
2017-05-09 16:20:28 -05:00
|
|
|
return true if authorizes_all_extensions?(upload)
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2018-02-19 03:44:24 -06: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-29 12:12:35 -05:00
|
|
|
unless authorized = extensions.include?(extension.downcase)
|
2023-01-09 06:10:19 -06:00
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"upload.unauthorized",
|
|
|
|
authorized_extensions: (extensions | staff_extensions).to_a.join(", "),
|
|
|
|
)
|
2014-04-14 15:55:57 -05:00
|
|
|
upload.errors.add(:original_filename, message)
|
|
|
|
end
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2014-04-14 15:55:57 -05:00
|
|
|
authorized
|
|
|
|
end
|
|
|
|
|
|
|
|
def maximum_file_size(upload, type)
|
2022-11-11 10:56:11 -06:00
|
|
|
return if !upload.validate_file_size
|
|
|
|
|
2023-01-09 06:10:19 -06:00
|
|
|
max_size_kb =
|
|
|
|
if upload.for_export
|
|
|
|
SiteSetting.max_export_file_size_kb
|
|
|
|
else
|
|
|
|
SiteSetting.get("max_#{type}_size_kb")
|
|
|
|
end
|
2019-05-06 20:27:05 -05:00
|
|
|
|
2015-05-03 12:26:54 -05:00
|
|
|
max_size_bytes = max_size_kb.kilobytes
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2015-05-03 12:26:54 -05:00
|
|
|
if upload.filesize > max_size_bytes
|
2023-01-09 06:10:19 -06:00
|
|
|
message =
|
|
|
|
I18n.t(
|
|
|
|
"upload.#{type}s.too_large_humanized",
|
|
|
|
max_size: ActiveSupport::NumberHelper.number_to_human_size(max_size_bytes),
|
|
|
|
)
|
2014-04-14 15:55:57 -05:00
|
|
|
upload.errors.add(:filesize, message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|