Fix file references for faved stickers.

This commit is contained in:
John Preston 2018-08-28 14:32:27 +03:00
parent 018abd6aad
commit 51092fb6a9
5 changed files with 33 additions and 11 deletions

View File

@ -176,9 +176,17 @@ void UndoInstallLocally(uint64 setId) {
LayerOption::KeepOther); LayerOption::KeepOther);
} }
bool IsFaved(not_null<DocumentData*> document) { bool IsFaved(not_null<const DocumentData*> document) {
auto it = Auth().data().stickerSets().constFind(FavedSetId); const auto it = Auth().data().stickerSets().constFind(FavedSetId);
return (it != Auth().data().stickerSets().cend()) && it->stickers.contains(document); if (it == Auth().data().stickerSets().cend()) {
return false;
}
for (const auto sticker : it->stickers) {
if (sticker == document) {
return true;
}
}
return false;
} }
void CheckFavedLimit(Set &set) { void CheckFavedLimit(Set &set) {

View File

@ -69,7 +69,7 @@ void ApplyArchivedResult(const MTPDmessages_stickerSetInstallResultArchive &d);
bool ApplyArchivedResultFake(); // For testing. bool ApplyArchivedResultFake(); // For testing.
void InstallLocally(uint64 setId); void InstallLocally(uint64 setId);
void UndoInstallLocally(uint64 setId); void UndoInstallLocally(uint64 setId);
bool IsFaved(not_null<DocumentData*> document); bool IsFaved(not_null<const DocumentData*> document);
void SetFaved(not_null<DocumentData*> document, bool faved); void SetFaved(not_null<DocumentData*> document, bool faved);
void SetsReceived(const QVector<MTPStickerSet> &data, int32 hash); void SetsReceived(const QVector<MTPStickerSet> &data, int32 hash);

View File

@ -1000,7 +1000,11 @@ ImagePtr DocumentData::getStickerThumb() {
Data::FileOrigin DocumentData::stickerSetOrigin() const { Data::FileOrigin DocumentData::stickerSetOrigin() const {
if (const auto data = sticker()) { if (const auto data = sticker()) {
return data->setOrigin(); if (const auto result = data->setOrigin()) {
return result;
} else if (Stickers::IsFaved(this)) {
return Data::FileOriginStickerSet(Stickers::FavedSetId, 0);
}
} }
return Data::FileOrigin(); return Data::FileOrigin();
} }

View File

@ -1408,6 +1408,8 @@ StorageImage *getImage(const StorageImageLocation &location, int32 size) {
StorageImages::const_iterator i = storageImages.constFind(key); StorageImages::const_iterator i = storageImages.constFind(key);
if (i == storageImages.cend()) { if (i == storageImages.cend()) {
i = storageImages.insert(key, new StorageImage(location, size)); i = storageImages.insert(key, new StorageImage(location, size));
} else {
i.value()->refreshFileReference(location.fileReference());
} }
return i.value(); return i.value();
} }
@ -1418,11 +1420,14 @@ StorageImage *getImage(const StorageImageLocation &location, const QByteArray &b
if (i == storageImages.cend()) { if (i == storageImages.cend()) {
QByteArray bytesArr(bytes); QByteArray bytesArr(bytes);
i = storageImages.insert(key, new StorageImage(location, bytesArr)); i = storageImages.insert(key, new StorageImage(location, bytesArr));
} else if (!i.value()->loaded()) { } else {
QByteArray bytesArr(bytes); i.value()->refreshFileReference(location.fileReference());
i.value()->setData(bytesArr); if (!i.value()->loaded()) {
if (!location.isNull()) { QByteArray bytesArr(bytes);
Local::writeImage(key, StorageImageSaved(bytes)); i.value()->setData(bytesArr);
if (!location.isNull()) {
Local::writeImage(key, StorageImageSaved(bytes));
}
} }
} }
return i.value(); return i.value();

View File

@ -153,7 +153,9 @@ public:
return _fileReference; return _fileReference;
} }
void refreshFileReference(const QByteArray &data) { void refreshFileReference(const QByteArray &data) {
_fileReference = data; if (!data.isEmpty()) {
_fileReference = data;
}
} }
static StorageImageLocation FromMTP( static StorageImageLocation FromMTP(
@ -511,6 +513,9 @@ public:
const StorageImageLocation &location() const override { const StorageImageLocation &location() const override {
return _location; return _location;
} }
void refreshFileReference(const QByteArray &data) {
_location.refreshFileReference(data);
}
protected: protected:
void setInformation(int32 size, int32 width, int32 height) override; void setInformation(int32 size, int32 width, int32 height) override;