mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-06 17:43:19 +00:00
Add DocumentData::setFileName.
This commit is contained in:
parent
6163e922b3
commit
2b11e45692
@ -373,24 +373,7 @@ void DocumentData::setattributes(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [&](const MTPDdocumentAttributeFilename &data) {
|
}, [&](const MTPDdocumentAttributeFilename &data) {
|
||||||
_filename = qs(data.vfile_name());
|
setFileName(_filename);
|
||||||
|
|
||||||
// We don't want LTR/RTL mark/embedding/override/isolate chars
|
|
||||||
// in filenames, because they introduce a security issue, when
|
|
||||||
// an executable "Fil[x]gepj.exe" may look like "Filexe.jpeg".
|
|
||||||
QChar controls[] = {
|
|
||||||
0x200E, // LTR Mark
|
|
||||||
0x200F, // RTL Mark
|
|
||||||
0x202A, // LTR Embedding
|
|
||||||
0x202B, // RTL Embedding
|
|
||||||
0x202D, // LTR Override
|
|
||||||
0x202E, // RTL Override
|
|
||||||
0x2066, // LTR Isolate
|
|
||||||
0x2067, // RTL Isolate
|
|
||||||
};
|
|
||||||
for (const auto &ch : controls) {
|
|
||||||
_filename = std::move(_filename).replace(ch, "_");
|
|
||||||
}
|
|
||||||
}, [&](const MTPDdocumentAttributeHasStickers &data) {
|
}, [&](const MTPDdocumentAttributeHasStickers &data) {
|
||||||
_flags |= Flag::HasAttachedStickers;
|
_flags |= Flag::HasAttachedStickers;
|
||||||
});
|
});
|
||||||
@ -768,6 +751,27 @@ void DocumentData::setLoadedInMediaCache(bool loaded) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DocumentData::setFileName(const QString &remoteFileName) {
|
||||||
|
_filename = remoteFileName;
|
||||||
|
|
||||||
|
// We don't want LTR/RTL mark/embedding/override/isolate chars
|
||||||
|
// in filenames, because they introduce a security issue, when
|
||||||
|
// an executable "Fil[x]gepj.exe" may look like "Filexe.jpeg".
|
||||||
|
QChar controls[] = {
|
||||||
|
0x200E, // LTR Mark
|
||||||
|
0x200F, // RTL Mark
|
||||||
|
0x202A, // LTR Embedding
|
||||||
|
0x202B, // RTL Embedding
|
||||||
|
0x202D, // LTR Override
|
||||||
|
0x202E, // RTL Override
|
||||||
|
0x2066, // LTR Isolate
|
||||||
|
0x2067, // RTL Isolate
|
||||||
|
};
|
||||||
|
for (const auto &ch : controls) {
|
||||||
|
_filename = std::move(_filename).replace(ch, "_");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void DocumentData::setLoadedInMediaCacheLocation() {
|
void DocumentData::setLoadedInMediaCacheLocation() {
|
||||||
_location = Core::FileLocation();
|
_location = Core::FileLocation();
|
||||||
_flags |= Flag::LoadedInMediaCache;
|
_flags |= Flag::LoadedInMediaCache;
|
||||||
|
@ -296,6 +296,7 @@ private:
|
|||||||
void validateLottieSticker();
|
void validateLottieSticker();
|
||||||
void setMaybeSupportsStreaming(bool supports);
|
void setMaybeSupportsStreaming(bool supports);
|
||||||
void setLoadedInMediaCacheLocation();
|
void setLoadedInMediaCacheLocation();
|
||||||
|
void setFileName(const QString &remoteFileName);
|
||||||
|
|
||||||
void finishLoad();
|
void finishLoad();
|
||||||
void handleLoaderUpdates();
|
void handleLoaderUpdates();
|
||||||
|
Loading…
Reference in New Issue
Block a user