From: nightpool Date: Sat, 17 Mar 2018 16:39:28 +0000 (-0400) Subject: Add entropy to download filenames (#6811) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=566ace2d6479c05e51dd8ce24283b8606be631de;p=mastodon.git Add entropy to download filenames (#6811) pretty quick fix, and with the 1 week expiration i don't think we need to be too worried about the existing files closes #6798 --- diff --git a/app/services/backup_service.rb b/app/services/backup_service.rb index fadc24a82..8492c1117 100644 --- a/app/services/backup_service.rb +++ b/app/services/backup_service.rb @@ -49,7 +49,7 @@ class BackupService < BaseService end end - archive_filename = ['archive', Time.now.utc.strftime('%Y%m%d%H%M%S'), SecureRandom.hex(2)].join('-') + '.tar.gz' + archive_filename = ['archive', Time.now.utc.strftime('%Y%m%d%H%M%S'), SecureRandom.hex(16)].join('-') + '.tar.gz' @backup.dump = ActionDispatch::Http::UploadedFile.new(tempfile: tmp_file, filename: archive_filename) @backup.processed = true