From 1beb256de0a6e0c92f2c23b29d0577f282ea165a Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Fri, 6 Jan 2023 16:59:36 -0500 Subject: Show hyperlink with attachment filename Only the hyperlink with filename is displayed for non-image attachment file types. --- src/archive_parser.cpp | 30 +++++++++++++++++------------- src/templates/attachment.html | 3 ++- 2 files changed, 19 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/archive_parser.cpp b/src/archive_parser.cpp index 30e613a..98056e2 100644 --- a/src/archive_parser.cpp +++ b/src/archive_parser.cpp @@ -210,21 +210,25 @@ QString Archive::get_html_status_attachments(QJsonValueRef attachments_ref) { QString att_html(*get_html_status_info_attachment_template()); QJsonObject attachment = attachment_ref.toObject(); - if (attachment.contains("mediaType") and attachment["mediaType"].toString().startsWith("image/")) { - att_html.replace("{{id}}", QString::number(i)); - - if (attachment.contains("url")) { - QString url = attachment["url"].toString(); - QFileInfo path(outbox_filename); - url.prepend(path.absolutePath()); - att_html.replace("{{path}}", url); - } + att_html.replace("{{id}}", QString::number(i)); + + if (attachment.contains("url")) { + QString url = attachment["url"].toString(); + QFileInfo path(outbox_filename); + url.prepend(path.absolutePath()); + att_html.replace("{{path}}", url); + att_html.replace("{{filename}}", QFileInfo(url).fileName()); // FIXME: this is ugly + } - if (attachment.contains("name")) - att_html.replace("{{alt-text}}", attachment["name"].toString()); + if (attachment.contains("mediaType") and attachment["mediaType"].toString().startsWith("image/")) + att_html.replace("{{img-width}}", "440"); + else + att_html.replace("{{img-width}}", "0"); - text.append(att_html); - } + if (attachment.contains("name")) + att_html.replace("{{alt-text}}", attachment["name"].toString()); + + text.append(att_html); ++i; } diff --git a/src/templates/attachment.html b/src/templates/attachment.html index 4c7731c..33c452a 100644 --- a/src/templates/attachment.html +++ b/src/templates/attachment.html @@ -1,4 +1,5 @@

Attachment {{id}}


- + +

{{filename}}

Alt: {{alt-text}}


-- cgit v1.2.3-54-g00ecf