DEV: Refactor helper methods for upload markdown

Follow-up to a61ff167
This commit is contained in:
Gerhard Schlager
2019-07-25 16:34:46 +02:00
parent 2ba4de2d45
commit fd12c414e7
6 changed files with 43 additions and 39 deletions

28
lib/upload_markdown.rb Normal file
View File

@@ -0,0 +1,28 @@
# frozen_string_literal: true
require_dependency "file_helper"
class UploadMarkdown
def initialize(upload)
@upload = upload
end
def to_markdown(display_name: nil)
if FileHelper.is_supported_image?(@upload.original_filename)
image_markdown
else
attachment_markdown(display_name: display_name)
end
end
def image_markdown
"![#{@upload.original_filename}|#{@upload.width}x#{@upload.height}](#{@upload.short_url})"
end
def attachment_markdown(display_name: nil, with_filesize: true)
human_filesize = with_filesize ? " (#{@upload.human_filesize})" : ""
display_name ||= @upload.original_filename
"[#{display_name}|attachment](#{@upload.short_url})#{human_filesize}"
end
end