mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-08-06 20:03:12 +00:00
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#include "iv/markdown/iv_markdown_common.h"
|
|
#include "base/basic_types.h"
|
|
|
|
#include <array>
|
|
|
|
namespace Iv::Markdown {
|
|
|
|
bool LooksLikeMarkdownFile(const QString &fileName, const QString &mimeType) {
|
|
const auto suffixes = std::array{
|
|
u".md"_q,
|
|
u".markdown"_q,
|
|
};
|
|
auto suffixMatches = false;
|
|
for (const auto &suffix : suffixes) {
|
|
if (fileName.endsWith(suffix, Qt::CaseInsensitive)) {
|
|
suffixMatches = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!suffixMatches) {
|
|
return false;
|
|
}
|
|
if (mimeType.isEmpty()) {
|
|
return true;
|
|
}
|
|
|
|
const auto normalized = mimeType.trimmed().toLower();
|
|
const auto acceptedMimeTypes = std::array{
|
|
u"text/markdown"_q,
|
|
u"text/x-markdown"_q,
|
|
u"text/plain"_q,
|
|
};
|
|
for (const auto &accepted : acceptedMimeTypes) {
|
|
if (normalized == accepted) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
} // namespace Iv::Markdown
|