2023-06-27 08:38:02 +00:00
|
|
|
/*
|
|
|
|
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 "data/data_story.h"
|
|
|
|
|
|
|
|
#include "base/unixtime.h"
|
|
|
|
#include "api/api_text_entities.h"
|
|
|
|
#include "data/data_document.h"
|
2023-07-05 17:02:57 +00:00
|
|
|
#include "data/data_changes.h"
|
2023-09-05 14:17:19 +00:00
|
|
|
#include "data/data_channel.h"
|
2023-06-27 08:38:02 +00:00
|
|
|
#include "data/data_file_origin.h"
|
|
|
|
#include "data/data_photo.h"
|
|
|
|
#include "data/data_photo_media.h"
|
|
|
|
#include "data/data_user.h"
|
|
|
|
#include "data/data_session.h"
|
2023-07-05 17:02:57 +00:00
|
|
|
#include "data/data_stories.h"
|
2023-06-27 08:38:02 +00:00
|
|
|
#include "data/data_thread.h"
|
2023-07-05 17:02:57 +00:00
|
|
|
#include "history/history_item.h"
|
2023-06-27 08:38:02 +00:00
|
|
|
#include "lang/lang_keys.h"
|
|
|
|
#include "main/main_session.h"
|
|
|
|
#include "media/streaming/media_streaming_reader.h"
|
|
|
|
#include "storage/download_manager_mtproto.h"
|
2023-07-25 16:50:21 +00:00
|
|
|
#include "storage/file_download.h" // kMaxFileInMemory
|
2023-06-27 08:38:02 +00:00
|
|
|
#include "ui/text/text_utilities.h"
|
|
|
|
|
|
|
|
namespace Data {
|
2023-07-05 17:02:57 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
using UpdateFlag = StoryUpdate::Flag;
|
|
|
|
|
2023-08-04 16:33:31 +00:00
|
|
|
[[nodiscard]] StoryArea ParseArea(const MTPMediaAreaCoordinates &area) {
|
|
|
|
const auto &data = area.data();
|
2023-08-07 09:21:03 +00:00
|
|
|
const auto center = QPointF(data.vx().v, data.vy().v);
|
|
|
|
const auto size = QSizeF(data.vw().v, data.vh().v);
|
|
|
|
const auto corner = center - QPointF(size.width(), size.height()) / 2.;
|
2023-08-04 16:33:31 +00:00
|
|
|
return {
|
2023-08-07 09:21:03 +00:00
|
|
|
.geometry = { corner / 100., size / 100. },
|
2023-08-04 16:33:31 +00:00
|
|
|
.rotation = data.vrotation().v,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-09-28 19:48:45 +00:00
|
|
|
[[nodiscard]] TextWithEntities StripLinks(TextWithEntities text) {
|
|
|
|
const auto link = [&](const EntityInText &entity) {
|
|
|
|
return (entity.type() == EntityType::CustomUrl)
|
|
|
|
|| (entity.type() == EntityType::Url)
|
|
|
|
|| (entity.type() == EntityType::Mention)
|
|
|
|
|| (entity.type() == EntityType::Hashtag);
|
|
|
|
};
|
|
|
|
text.entities.erase(
|
|
|
|
ranges::remove_if(text.entities, link),
|
|
|
|
text.entities.end());
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
2023-08-04 16:33:31 +00:00
|
|
|
[[nodiscard]] auto ParseLocation(const MTPMediaArea &area)
|
|
|
|
-> std::optional<StoryLocation> {
|
|
|
|
auto result = std::optional<StoryLocation>();
|
|
|
|
area.match([&](const MTPDmediaAreaVenue &data) {
|
|
|
|
data.vgeo().match([&](const MTPDgeoPoint &geo) {
|
|
|
|
result.emplace(StoryLocation{
|
|
|
|
.area = ParseArea(data.vcoordinates()),
|
|
|
|
.point = Data::LocationPoint(geo),
|
|
|
|
.title = qs(data.vtitle()),
|
|
|
|
.address = qs(data.vaddress()),
|
|
|
|
.provider = qs(data.vprovider()),
|
|
|
|
.venueId = qs(data.vvenue_id()),
|
|
|
|
.venueType = qs(data.vvenue_type()),
|
|
|
|
});
|
|
|
|
}, [](const MTPDgeoPointEmpty &) {
|
|
|
|
});
|
|
|
|
}, [&](const MTPDmediaAreaGeoPoint &data) {
|
|
|
|
data.vgeo().match([&](const MTPDgeoPoint &geo) {
|
|
|
|
result.emplace(StoryLocation{
|
|
|
|
.area = ParseArea(data.vcoordinates()),
|
|
|
|
.point = Data::LocationPoint(geo),
|
|
|
|
});
|
|
|
|
}, [](const MTPDgeoPointEmpty &) {
|
|
|
|
});
|
2023-08-31 08:58:34 +00:00
|
|
|
}, [&](const MTPDmediaAreaSuggestedReaction &data) {
|
|
|
|
}, [&](const MTPDinputMediaAreaVenue &data) {
|
|
|
|
LOG(("API Error: Unexpected inputMediaAreaVenue in API data."));
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] auto ParseSuggestedReaction(const MTPMediaArea &area)
|
|
|
|
-> std::optional<SuggestedReaction> {
|
|
|
|
auto result = std::optional<SuggestedReaction>();
|
|
|
|
area.match([&](const MTPDmediaAreaVenue &data) {
|
|
|
|
}, [&](const MTPDmediaAreaGeoPoint &data) {
|
|
|
|
}, [&](const MTPDmediaAreaSuggestedReaction &data) {
|
|
|
|
result.emplace(SuggestedReaction{
|
|
|
|
.area = ParseArea(data.vcoordinates()),
|
|
|
|
.reaction = Data::ReactionFromMTP(data.vreaction()),
|
|
|
|
.flipped = data.is_flipped(),
|
|
|
|
.dark = data.is_dark(),
|
|
|
|
});
|
2023-08-04 16:33:31 +00:00
|
|
|
}, [&](const MTPDinputMediaAreaVenue &data) {
|
|
|
|
LOG(("API Error: Unexpected inputMediaAreaVenue in API data."));
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-07-05 17:02:57 +00:00
|
|
|
} // namespace
|
2023-06-27 08:38:02 +00:00
|
|
|
|
|
|
|
class StoryPreload::LoadTask final : private Storage::DownloadMtprotoTask {
|
|
|
|
public:
|
|
|
|
LoadTask(
|
|
|
|
FullStoryId id,
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
Fn<void(QByteArray)> done);
|
|
|
|
~LoadTask();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool readyToRequest() const override;
|
|
|
|
int64 takeNextRequestOffset() override;
|
|
|
|
bool feedPart(int64 offset, const QByteArray &bytes) override;
|
|
|
|
void cancelOnFail() override;
|
|
|
|
bool setWebFileSizeHook(int64 size) override;
|
|
|
|
|
|
|
|
base::flat_map<uint32, QByteArray> _parts;
|
|
|
|
Fn<void(QByteArray)> _done;
|
|
|
|
base::flat_set<int> _requestedOffsets;
|
|
|
|
int64 _full = 0;
|
|
|
|
int _nextRequestOffset = 0;
|
|
|
|
bool _finished = false;
|
|
|
|
bool _failed = false;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
StoryPreload::LoadTask::LoadTask(
|
|
|
|
FullStoryId id,
|
|
|
|
not_null<DocumentData*> document,
|
|
|
|
Fn<void(QByteArray)> done)
|
|
|
|
: DownloadMtprotoTask(
|
|
|
|
&document->session().downloader(),
|
|
|
|
document->videoPreloadLocation(),
|
|
|
|
FileOriginStory(id.peer, id.story))
|
|
|
|
, _done(std::move(done))
|
|
|
|
, _full(document->size) {
|
|
|
|
const auto prefix = document->videoPreloadPrefix();
|
|
|
|
Assert(prefix > 0 && prefix <= document->size);
|
|
|
|
const auto part = Storage::kDownloadPartSize;
|
|
|
|
const auto parts = (prefix + part - 1) / part;
|
|
|
|
for (auto i = 0; i != parts; ++i) {
|
|
|
|
_parts.emplace(i * part, QByteArray());
|
|
|
|
}
|
|
|
|
addToQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
StoryPreload::LoadTask::~LoadTask() {
|
|
|
|
if (!_finished && !_failed) {
|
|
|
|
cancelAllRequests();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StoryPreload::LoadTask::readyToRequest() const {
|
|
|
|
const auto part = Storage::kDownloadPartSize;
|
|
|
|
return !_failed && (_nextRequestOffset < _parts.size() * part);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64 StoryPreload::LoadTask::takeNextRequestOffset() {
|
|
|
|
Expects(readyToRequest());
|
|
|
|
|
|
|
|
_requestedOffsets.emplace(_nextRequestOffset);
|
|
|
|
_nextRequestOffset += Storage::kDownloadPartSize;
|
|
|
|
return _requestedOffsets.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StoryPreload::LoadTask::feedPart(
|
|
|
|
int64 offset,
|
|
|
|
const QByteArray &bytes) {
|
|
|
|
Expects(offset < _parts.size() * Storage::kDownloadPartSize);
|
|
|
|
Expects(_requestedOffsets.contains(int(offset)));
|
|
|
|
Expects(bytes.size() <= Storage::kDownloadPartSize);
|
|
|
|
|
|
|
|
const auto part = Storage::kDownloadPartSize;
|
|
|
|
_requestedOffsets.remove(int(offset));
|
|
|
|
_parts[offset] = bytes;
|
|
|
|
if ((_nextRequestOffset + part >= _parts.size() * part)
|
|
|
|
&& _requestedOffsets.empty()) {
|
|
|
|
_finished = true;
|
|
|
|
removeFromQueue();
|
2023-07-05 17:02:57 +00:00
|
|
|
auto result = ::Media::Streaming::SerializeComplexPartsMap(_parts);
|
2023-06-27 08:38:02 +00:00
|
|
|
if (result.size() == _full) {
|
|
|
|
// Make sure it is parsed as a complex map.
|
|
|
|
result.push_back(char(0));
|
|
|
|
}
|
|
|
|
_done(result);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StoryPreload::LoadTask::cancelOnFail() {
|
|
|
|
_failed = true;
|
|
|
|
cancelAllRequests();
|
|
|
|
_done({});
|
|
|
|
}
|
|
|
|
|
|
|
|
bool StoryPreload::LoadTask::setWebFileSizeHook(int64 size) {
|
|
|
|
_failed = true;
|
|
|
|
cancelAllRequests();
|
|
|
|
_done({});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Story::Story(
|
|
|
|
StoryId id,
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
StoryMedia media,
|
2023-07-05 17:02:57 +00:00
|
|
|
const MTPDstoryItem &data,
|
|
|
|
TimeId now)
|
2023-06-27 08:38:02 +00:00
|
|
|
: _id(id)
|
|
|
|
, _peer(peer)
|
2023-07-05 17:02:57 +00:00
|
|
|
, _date(data.vdate().v)
|
|
|
|
, _expires(data.vexpire_date().v) {
|
|
|
|
applyFields(std::move(media), data, now, true);
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Session &Story::owner() const {
|
|
|
|
return _peer->owner();
|
|
|
|
}
|
|
|
|
|
|
|
|
Main::Session &Story::session() const {
|
|
|
|
return _peer->session();
|
|
|
|
}
|
|
|
|
|
|
|
|
not_null<PeerData*> Story::peer() const {
|
|
|
|
return _peer;
|
|
|
|
}
|
|
|
|
|
|
|
|
StoryId Story::id() const {
|
|
|
|
return _id;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::mine() const {
|
|
|
|
return _peer->isSelf();
|
|
|
|
}
|
|
|
|
|
|
|
|
StoryIdDates Story::idDates() const {
|
|
|
|
return { _id, _date, _expires };
|
|
|
|
}
|
|
|
|
|
|
|
|
FullStoryId Story::fullId() const {
|
|
|
|
return { _peer->id, _id };
|
|
|
|
}
|
|
|
|
|
|
|
|
TimeId Story::date() const {
|
|
|
|
return _date;
|
|
|
|
}
|
|
|
|
|
|
|
|
TimeId Story::expires() const {
|
|
|
|
return _expires;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::expired(TimeId now) const {
|
|
|
|
return _expires <= (now ? now : base::unixtime::now());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::unsupported() const {
|
|
|
|
return v::is_null(_media.data);
|
|
|
|
}
|
|
|
|
|
|
|
|
const StoryMedia &Story::media() const {
|
|
|
|
return _media;
|
|
|
|
}
|
|
|
|
|
|
|
|
PhotoData *Story::photo() const {
|
|
|
|
const auto result = std::get_if<not_null<PhotoData*>>(&_media.data);
|
|
|
|
return result ? result->get() : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
DocumentData *Story::document() const {
|
|
|
|
const auto result = std::get_if<not_null<DocumentData*>>(&_media.data);
|
|
|
|
return result ? result->get() : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::hasReplyPreview() const {
|
|
|
|
return v::match(_media.data, [](not_null<PhotoData*> photo) {
|
|
|
|
return !photo->isNull();
|
|
|
|
}, [](not_null<DocumentData*> document) {
|
|
|
|
return document->hasThumbnail();
|
|
|
|
}, [](v::null_t) {
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Image *Story::replyPreview() const {
|
|
|
|
return v::match(_media.data, [&](not_null<PhotoData*> photo) {
|
|
|
|
return photo->getReplyPreview(
|
|
|
|
Data::FileOriginStory(_peer->id, _id),
|
|
|
|
_peer,
|
|
|
|
false);
|
|
|
|
}, [&](not_null<DocumentData*> document) {
|
|
|
|
return document->getReplyPreview(
|
|
|
|
Data::FileOriginStory(_peer->id, _id),
|
|
|
|
_peer,
|
|
|
|
false);
|
|
|
|
}, [](v::null_t) {
|
|
|
|
return (Image*)nullptr;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
TextWithEntities Story::inReplyText() const {
|
|
|
|
const auto type = tr::lng_in_dlg_story(tr::now);
|
|
|
|
return _caption.text.isEmpty()
|
2023-10-03 13:50:33 +00:00
|
|
|
? Ui::Text::Colorized(type)
|
2023-06-27 08:38:02 +00:00
|
|
|
: tr::lng_dialogs_text_media(
|
|
|
|
tr::now,
|
|
|
|
lt_media_part,
|
|
|
|
tr::lng_dialogs_text_media_wrapped(
|
|
|
|
tr::now,
|
|
|
|
lt_media,
|
2023-10-03 13:50:33 +00:00
|
|
|
Ui::Text::Colorized(type),
|
2023-06-27 08:38:02 +00:00
|
|
|
Ui::Text::WithEntities),
|
|
|
|
lt_caption,
|
|
|
|
_caption,
|
|
|
|
Ui::Text::WithEntities);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Story::setPinned(bool pinned) {
|
|
|
|
_pinned = pinned;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::pinned() const {
|
|
|
|
return _pinned;
|
|
|
|
}
|
|
|
|
|
2023-07-19 08:30:34 +00:00
|
|
|
StoryPrivacy Story::privacy() const {
|
|
|
|
return _privacyPublic
|
|
|
|
? StoryPrivacy::Public
|
|
|
|
: _privacyCloseFriends
|
|
|
|
? StoryPrivacy::CloseFriends
|
|
|
|
: _privacyContacts
|
|
|
|
? StoryPrivacy::Contacts
|
|
|
|
: _privacySelectedContacts
|
|
|
|
? StoryPrivacy::SelectedContacts
|
|
|
|
: StoryPrivacy::Other;
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
2023-06-29 10:48:14 +00:00
|
|
|
bool Story::forbidsForward() const {
|
|
|
|
return _noForwards;
|
|
|
|
}
|
|
|
|
|
2023-07-05 12:18:55 +00:00
|
|
|
bool Story::edited() const {
|
|
|
|
return _edited;
|
|
|
|
}
|
|
|
|
|
2023-08-31 08:58:34 +00:00
|
|
|
bool Story::out() const {
|
|
|
|
return _out;
|
|
|
|
}
|
|
|
|
|
2023-08-02 19:41:58 +00:00
|
|
|
bool Story::canDownloadIfPremium() const {
|
|
|
|
return !forbidsForward() || _peer->isSelf();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::canDownloadChecked() const {
|
|
|
|
return _peer->isSelf()
|
|
|
|
|| (canDownloadIfPremium() && _peer->session().premium());
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::canShare() const {
|
2023-07-19 08:30:34 +00:00
|
|
|
return _privacyPublic && !forbidsForward() && (pinned() || !expired());
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::canDelete() const {
|
2023-09-05 14:17:19 +00:00
|
|
|
if (const auto channel = _peer->asChannel()) {
|
|
|
|
return channel->canDeleteStories()
|
|
|
|
|| (out() && channel->canPostStories());
|
|
|
|
}
|
2023-06-27 08:38:02 +00:00
|
|
|
return _peer->isSelf();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::canReport() const {
|
|
|
|
return !_peer->isSelf();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Story::hasDirectLink() const {
|
2023-07-19 08:30:34 +00:00
|
|
|
if (!_privacyPublic || (!_pinned && expired())) {
|
2023-06-27 08:38:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
2023-09-25 13:53:02 +00:00
|
|
|
return !_peer->userName().isEmpty();
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<QString> Story::errorTextForForward(
|
|
|
|
not_null<Thread*> to) const {
|
|
|
|
const auto peer = to->peer();
|
|
|
|
const auto holdsPhoto = v::is<not_null<PhotoData*>>(_media.data);
|
|
|
|
const auto first = holdsPhoto
|
|
|
|
? ChatRestriction::SendPhotos
|
|
|
|
: ChatRestriction::SendVideos;
|
|
|
|
const auto second = holdsPhoto
|
|
|
|
? ChatRestriction::SendVideos
|
|
|
|
: ChatRestriction::SendPhotos;
|
|
|
|
if (const auto error = Data::RestrictionError(peer, first)) {
|
|
|
|
return *error;
|
|
|
|
} else if (const auto error = Data::RestrictionError(peer, second)) {
|
|
|
|
return *error;
|
|
|
|
} else if (!Data::CanSend(to, first, false)
|
|
|
|
|| !Data::CanSend(to, second, false)) {
|
|
|
|
return tr::lng_forward_cant(tr::now);
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
void Story::setCaption(TextWithEntities &&caption) {
|
|
|
|
_caption = std::move(caption);
|
|
|
|
}
|
|
|
|
|
|
|
|
const TextWithEntities &Story::caption() const {
|
|
|
|
static const auto empty = TextWithEntities();
|
|
|
|
return unsupported() ? empty : _caption;
|
|
|
|
}
|
|
|
|
|
2023-08-08 08:55:12 +00:00
|
|
|
Data::ReactionId Story::sentReactionId() const {
|
|
|
|
return _sentReactionId;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Story::setReactionId(Data::ReactionId id) {
|
|
|
|
if (_sentReactionId != id) {
|
2023-09-13 06:30:16 +00:00
|
|
|
const auto wasEmpty = _sentReactionId.empty();
|
2023-09-14 08:29:14 +00:00
|
|
|
changeSuggestedReactionCount(_sentReactionId, -1);
|
2023-08-08 08:55:12 +00:00
|
|
|
_sentReactionId = id;
|
2023-09-14 08:29:14 +00:00
|
|
|
changeSuggestedReactionCount(id, 1);
|
|
|
|
|
2023-09-13 06:30:16 +00:00
|
|
|
if (_views.known && _sentReactionId.empty() != wasEmpty) {
|
|
|
|
const auto delta = wasEmpty ? 1 : -1;
|
|
|
|
if (_views.reactions + delta >= 0) {
|
|
|
|
_views.reactions += delta;
|
|
|
|
}
|
|
|
|
}
|
2023-09-14 08:29:14 +00:00
|
|
|
session().changes().storyUpdated(this, UpdateFlag::Reaction);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Story::changeSuggestedReactionCount(Data::ReactionId id, int delta) {
|
|
|
|
if (id.empty() || !_peer->isChannel()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (auto &suggested : _suggestedReactions) {
|
|
|
|
if (suggested.reaction == id && suggested.count + delta >= 0) {
|
|
|
|
suggested.count += delta;
|
|
|
|
}
|
2023-08-08 08:55:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-27 08:38:02 +00:00
|
|
|
const std::vector<not_null<PeerData*>> &Story::recentViewers() const {
|
|
|
|
return _recentViewers;
|
|
|
|
}
|
|
|
|
|
2023-08-04 14:49:58 +00:00
|
|
|
const StoryViews &Story::viewsList() const {
|
|
|
|
return _views;
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int Story::views() const {
|
2023-08-04 14:49:58 +00:00
|
|
|
return _views.total;
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
2023-08-04 15:30:49 +00:00
|
|
|
int Story::reactions() const {
|
|
|
|
return _views.reactions;
|
|
|
|
}
|
|
|
|
|
2023-06-27 08:38:02 +00:00
|
|
|
void Story::applyViewsSlice(
|
2023-08-04 14:49:58 +00:00
|
|
|
const QString &offset,
|
|
|
|
const StoryViews &slice) {
|
2023-08-04 15:30:49 +00:00
|
|
|
const auto changed = (_views.reactions != slice.reactions)
|
|
|
|
|| (_views.total != slice.total);
|
|
|
|
_views.reactions = slice.reactions;
|
2023-08-04 14:49:58 +00:00
|
|
|
_views.total = slice.total;
|
2023-09-13 06:30:16 +00:00
|
|
|
_views.known = true;
|
2023-08-04 14:49:58 +00:00
|
|
|
if (offset.isEmpty()) {
|
|
|
|
_views = slice;
|
|
|
|
} else if (_views.nextOffset == offset) {
|
|
|
|
_views.list.insert(
|
|
|
|
end(_views.list),
|
|
|
|
begin(slice.list),
|
|
|
|
end(slice.list));
|
|
|
|
_views.nextOffset = slice.nextOffset;
|
|
|
|
if (_views.nextOffset.isEmpty()) {
|
|
|
|
_views.total = int(_views.list.size());
|
2023-08-04 15:30:49 +00:00
|
|
|
_views.reactions = _views.total
|
|
|
|
- ranges::count(
|
|
|
|
_views.list,
|
|
|
|
Data::ReactionId(),
|
|
|
|
&StoryView::reaction);
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
}
|
2023-08-04 14:49:58 +00:00
|
|
|
const auto known = int(_views.list.size());
|
2023-07-05 17:02:57 +00:00
|
|
|
if (known >= _recentViewers.size()) {
|
|
|
|
const auto take = std::min(known, kRecentViewersMax);
|
2023-08-04 14:49:58 +00:00
|
|
|
auto viewers = _views.list
|
2023-07-05 17:02:57 +00:00
|
|
|
| ranges::views::take(take)
|
|
|
|
| ranges::views::transform(&StoryView::peer)
|
|
|
|
| ranges::to_vector;
|
|
|
|
if (_recentViewers != viewers) {
|
|
|
|
_recentViewers = std::move(viewers);
|
|
|
|
if (!changed) {
|
|
|
|
// Count not changed, but list of recent viewers changed.
|
|
|
|
_peer->session().changes().storyUpdated(
|
|
|
|
this,
|
2023-09-13 06:30:16 +00:00
|
|
|
UpdateFlag::ViewsChanged);
|
2023-07-05 17:02:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (changed) {
|
|
|
|
_peer->session().changes().storyUpdated(
|
|
|
|
this,
|
2023-09-13 06:30:16 +00:00
|
|
|
UpdateFlag::ViewsChanged);
|
2023-07-05 17:02:57 +00:00
|
|
|
}
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
|
2023-08-04 16:33:31 +00:00
|
|
|
const std::vector<StoryLocation> &Story::locations() const {
|
|
|
|
return _locations;
|
|
|
|
}
|
|
|
|
|
2023-08-31 08:58:34 +00:00
|
|
|
const std::vector<SuggestedReaction> &Story::suggestedReactions() const {
|
|
|
|
return _suggestedReactions;
|
|
|
|
}
|
|
|
|
|
2023-07-05 17:02:57 +00:00
|
|
|
void Story::applyChanges(
|
2023-07-05 15:52:22 +00:00
|
|
|
StoryMedia media,
|
|
|
|
const MTPDstoryItem &data,
|
|
|
|
TimeId now) {
|
2023-07-05 17:02:57 +00:00
|
|
|
applyFields(std::move(media), data, now, false);
|
|
|
|
}
|
|
|
|
|
2023-09-15 16:41:36 +00:00
|
|
|
Story::ViewsCounts Story::parseViewsCounts(
|
|
|
|
const MTPDstoryViews &data,
|
|
|
|
const Data::ReactionId &mine) {
|
|
|
|
auto result = ViewsCounts{
|
|
|
|
.views = data.vviews_count().v,
|
|
|
|
.reactions = data.vreactions_count().value_or_empty(),
|
|
|
|
};
|
|
|
|
if (const auto list = data.vrecent_viewers()) {
|
|
|
|
result.viewers.reserve(list->v.size());
|
|
|
|
auto &owner = _peer->owner();
|
|
|
|
auto &&cut = list->v
|
|
|
|
| ranges::views::take(kRecentViewersMax);
|
|
|
|
for (const auto &id : cut) {
|
|
|
|
result.viewers.push_back(owner.peer(peerFromUser(id)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto total = 0;
|
|
|
|
if (const auto list = data.vreactions()
|
|
|
|
; list && _peer->isChannel()) {
|
|
|
|
result.reactionsCounts.reserve(list->v.size());
|
|
|
|
for (const auto &reaction : list->v) {
|
|
|
|
const auto &data = reaction.data();
|
|
|
|
const auto id = Data::ReactionFromMTP(data.vreaction());
|
|
|
|
const auto count = data.vcount().v;
|
|
|
|
result.reactionsCounts[id] = count;
|
|
|
|
total += count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!mine.empty()) {
|
|
|
|
if (auto &count = result.reactionsCounts[mine]; !count) {
|
|
|
|
count = 1;
|
|
|
|
++total;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result.reactions < total) {
|
|
|
|
result.reactions = total;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-07-05 17:02:57 +00:00
|
|
|
void Story::applyFields(
|
|
|
|
StoryMedia media,
|
|
|
|
const MTPDstoryItem &data,
|
|
|
|
TimeId now,
|
|
|
|
bool initial) {
|
2023-07-05 15:52:22 +00:00
|
|
|
_lastUpdateTime = now;
|
|
|
|
|
2023-09-14 06:58:29 +00:00
|
|
|
const auto reaction = data.is_min()
|
|
|
|
? _sentReactionId
|
|
|
|
: data.vsent_reaction()
|
2023-08-08 08:55:12 +00:00
|
|
|
? Data::ReactionFromMTP(*data.vsent_reaction())
|
|
|
|
: Data::ReactionId();
|
2023-06-27 08:38:02 +00:00
|
|
|
const auto pinned = data.is_pinned();
|
2023-07-05 12:18:55 +00:00
|
|
|
const auto edited = data.is_edited();
|
2023-07-19 08:30:34 +00:00
|
|
|
const auto privacy = data.is_public()
|
|
|
|
? StoryPrivacy::Public
|
|
|
|
: data.is_close_friends()
|
|
|
|
? StoryPrivacy::CloseFriends
|
|
|
|
: data.is_contacts()
|
|
|
|
? StoryPrivacy::Contacts
|
|
|
|
: data.is_selected_contacts()
|
|
|
|
? StoryPrivacy::SelectedContacts
|
|
|
|
: StoryPrivacy::Other;
|
2023-06-29 10:48:14 +00:00
|
|
|
const auto noForwards = data.is_noforwards();
|
2023-08-31 08:58:34 +00:00
|
|
|
const auto out = data.is_min() ? _out : data.is_out();
|
2023-06-27 08:38:02 +00:00
|
|
|
auto caption = TextWithEntities{
|
|
|
|
data.vcaption().value_or_empty(),
|
|
|
|
Api::EntitiesFromMTP(
|
|
|
|
&owner().session(),
|
|
|
|
data.ventities().value_or_empty()),
|
|
|
|
};
|
2023-09-28 19:48:45 +00:00
|
|
|
if (const auto user = _peer->asUser()) {
|
|
|
|
if (!user->isVerified() && !user->isPremium()) {
|
|
|
|
caption = StripLinks(std::move(caption));
|
|
|
|
}
|
|
|
|
}
|
2023-09-15 16:41:36 +00:00
|
|
|
auto counts = ViewsCounts();
|
2023-09-13 06:30:16 +00:00
|
|
|
auto viewsKnown = _views.known;
|
2023-09-14 06:58:29 +00:00
|
|
|
if (const auto info = data.vviews()) {
|
2023-09-15 16:41:36 +00:00
|
|
|
counts = parseViewsCounts(info->data(), reaction);
|
2023-09-13 06:30:16 +00:00
|
|
|
viewsKnown = true;
|
2023-09-14 06:58:29 +00:00
|
|
|
} else {
|
2023-09-15 16:41:36 +00:00
|
|
|
counts.views = _views.total;
|
|
|
|
counts.reactions = _views.reactions;
|
|
|
|
counts.viewers = _recentViewers;
|
2023-09-14 08:29:14 +00:00
|
|
|
for (const auto &suggested : _suggestedReactions) {
|
|
|
|
if (const auto count = suggested.count) {
|
2023-09-15 16:41:36 +00:00
|
|
|
counts.reactionsCounts[suggested.reaction] = count;
|
2023-09-14 08:29:14 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
2023-08-04 16:33:31 +00:00
|
|
|
auto locations = std::vector<StoryLocation>();
|
2023-08-31 08:58:34 +00:00
|
|
|
auto suggestedReactions = std::vector<SuggestedReaction>();
|
2023-08-04 16:33:31 +00:00
|
|
|
if (const auto areas = data.vmedia_areas()) {
|
|
|
|
locations.reserve(areas->v.size());
|
2023-08-31 08:58:34 +00:00
|
|
|
suggestedReactions.reserve(areas->v.size());
|
2023-08-04 16:33:31 +00:00
|
|
|
for (const auto &area : areas->v) {
|
2023-08-29 09:45:15 +00:00
|
|
|
if (const auto location = ParseLocation(area)) {
|
|
|
|
locations.push_back(*location);
|
2023-09-14 08:29:14 +00:00
|
|
|
} else if (auto reaction = ParseSuggestedReaction(area)) {
|
2023-09-15 16:41:36 +00:00
|
|
|
const auto i = counts.reactionsCounts.find(
|
|
|
|
reaction->reaction);
|
|
|
|
if (i != end(counts.reactionsCounts)) {
|
2023-09-14 08:29:14 +00:00
|
|
|
reaction->count = i->second;
|
|
|
|
}
|
2023-08-31 08:58:34 +00:00
|
|
|
suggestedReactions.push_back(*reaction);
|
2023-08-04 16:33:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-27 08:38:02 +00:00
|
|
|
|
2023-07-05 17:02:57 +00:00
|
|
|
const auto pinnedChanged = (_pinned != pinned);
|
|
|
|
const auto editedChanged = (_edited != edited);
|
|
|
|
const auto mediaChanged = (_media != media);
|
|
|
|
const auto captionChanged = (_caption != caption);
|
2023-08-04 16:33:31 +00:00
|
|
|
const auto locationsChanged = (_locations != locations);
|
2023-08-31 08:58:34 +00:00
|
|
|
const auto suggestedReactionsChanged
|
|
|
|
= (_suggestedReactions != suggestedReactions);
|
2023-08-08 08:55:12 +00:00
|
|
|
const auto reactionChanged = (_sentReactionId != reaction);
|
2023-07-05 17:02:57 +00:00
|
|
|
|
2023-08-31 08:58:34 +00:00
|
|
|
_out = out;
|
2023-07-19 08:30:34 +00:00
|
|
|
_privacyPublic = (privacy == StoryPrivacy::Public);
|
|
|
|
_privacyCloseFriends = (privacy == StoryPrivacy::CloseFriends);
|
|
|
|
_privacyContacts = (privacy == StoryPrivacy::Contacts);
|
|
|
|
_privacySelectedContacts = (privacy == StoryPrivacy::SelectedContacts);
|
2023-07-05 12:18:55 +00:00
|
|
|
_edited = edited;
|
2023-06-27 08:38:02 +00:00
|
|
|
_pinned = pinned;
|
2023-06-29 10:48:14 +00:00
|
|
|
_noForwards = noForwards;
|
2023-07-05 17:02:57 +00:00
|
|
|
if (mediaChanged) {
|
|
|
|
_media = std::move(media);
|
|
|
|
}
|
|
|
|
if (captionChanged) {
|
|
|
|
_caption = std::move(caption);
|
|
|
|
}
|
2023-08-04 16:33:31 +00:00
|
|
|
if (locationsChanged) {
|
|
|
|
_locations = std::move(locations);
|
|
|
|
}
|
2023-08-31 08:58:34 +00:00
|
|
|
if (suggestedReactionsChanged) {
|
|
|
|
_suggestedReactions = std::move(suggestedReactions);
|
|
|
|
}
|
2023-08-08 08:55:12 +00:00
|
|
|
if (reactionChanged) {
|
|
|
|
_sentReactionId = reaction;
|
|
|
|
}
|
2023-09-15 16:41:36 +00:00
|
|
|
updateViewsCounts(std::move(counts), viewsKnown, initial);
|
2023-07-05 17:02:57 +00:00
|
|
|
|
2023-08-04 16:33:31 +00:00
|
|
|
const auto changed = editedChanged
|
|
|
|
|| captionChanged
|
|
|
|
|| mediaChanged
|
2023-09-15 16:41:36 +00:00
|
|
|
|| locationsChanged;
|
|
|
|
const auto reactionsChanged = reactionChanged
|
2023-08-31 08:58:34 +00:00
|
|
|
|| suggestedReactionsChanged;
|
2023-09-15 16:41:36 +00:00
|
|
|
if (!initial && (changed || reactionsChanged)) {
|
2023-07-05 17:02:57 +00:00
|
|
|
_peer->session().changes().storyUpdated(this, UpdateFlag()
|
|
|
|
| (changed ? UpdateFlag::Edited : UpdateFlag())
|
2023-09-15 16:41:36 +00:00
|
|
|
| (reactionsChanged ? UpdateFlag::Reaction : UpdateFlag()));
|
2023-07-05 17:02:57 +00:00
|
|
|
}
|
|
|
|
if (!initial && (captionChanged || mediaChanged)) {
|
|
|
|
if (const auto item = _peer->owner().stories().lookupItem(this)) {
|
|
|
|
item->applyChanges(this);
|
|
|
|
}
|
|
|
|
_peer->owner().refreshStoryItemViews(fullId());
|
|
|
|
}
|
|
|
|
if (pinnedChanged) {
|
|
|
|
_peer->owner().stories().savedStateChanged(this);
|
2023-06-27 08:38:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-15 16:41:36 +00:00
|
|
|
void Story::updateViewsCounts(ViewsCounts &&counts, bool known, bool initial) {
|
|
|
|
const auto viewsChanged = (_views.total != counts.views)
|
|
|
|
|| (_views.reactions != counts.reactions)
|
|
|
|
|| (_recentViewers != counts.viewers);
|
|
|
|
if (_views.reactions != counts.reactions
|
|
|
|
|| _views.total != counts.views
|
|
|
|
|| _views.known != known) {
|
|
|
|
_views = StoryViews{
|
|
|
|
.reactions = counts.reactions,
|
|
|
|
.total = counts.views,
|
|
|
|
.known = known,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
if (viewsChanged) {
|
|
|
|
_recentViewers = std::move(counts.viewers);
|
|
|
|
_peer->session().changes().storyUpdated(
|
|
|
|
this,
|
|
|
|
UpdateFlag::ViewsChanged);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Story::applyViewsCounts(const MTPDstoryViews &data) {
|
|
|
|
auto counts = parseViewsCounts(data, _sentReactionId);
|
|
|
|
auto suggestedCountsChanged = false;
|
|
|
|
for (auto &suggested : _suggestedReactions) {
|
|
|
|
const auto i = counts.reactionsCounts.find(suggested.reaction);
|
|
|
|
const auto v = (i != end(counts.reactionsCounts)) ? i->second : 0;
|
|
|
|
if (suggested.count != v) {
|
|
|
|
suggested.count = v;
|
|
|
|
suggestedCountsChanged = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateViewsCounts(std::move(counts), true, false);
|
|
|
|
if (suggestedCountsChanged) {
|
|
|
|
_peer->session().changes().storyUpdated(this, UpdateFlag::Reaction);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 15:52:22 +00:00
|
|
|
TimeId Story::lastUpdateTime() const {
|
|
|
|
return _lastUpdateTime;
|
|
|
|
}
|
|
|
|
|
2023-06-27 08:38:02 +00:00
|
|
|
StoryPreload::StoryPreload(not_null<Story*> story, Fn<void()> done)
|
|
|
|
: _story(story)
|
|
|
|
, _done(std::move(done)) {
|
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
|
|
|
StoryPreload::~StoryPreload() {
|
|
|
|
if (_photo) {
|
|
|
|
base::take(_photo)->owner()->cancel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FullStoryId StoryPreload::id() const {
|
|
|
|
return _story->fullId();
|
|
|
|
}
|
|
|
|
|
|
|
|
not_null<Story*> StoryPreload::story() const {
|
|
|
|
return _story;
|
|
|
|
}
|
|
|
|
|
|
|
|
void StoryPreload::start() {
|
|
|
|
const auto origin = FileOriginStory(
|
|
|
|
_story->peer()->id,
|
|
|
|
_story->id());
|
|
|
|
if (const auto photo = _story->photo()) {
|
|
|
|
_photo = photo->createMediaView();
|
|
|
|
if (_photo->loaded()) {
|
|
|
|
callDone();
|
|
|
|
} else {
|
|
|
|
_photo->automaticLoad(origin, _story->peer());
|
|
|
|
photo->session().downloaderTaskFinished(
|
|
|
|
) | rpl::filter([=] {
|
|
|
|
return _photo->loaded();
|
|
|
|
}) | rpl::start_with_next([=] { callDone(); }, _lifetime);
|
|
|
|
}
|
|
|
|
} else if (const auto video = _story->document()) {
|
|
|
|
if (video->canBeStreamed(nullptr) && video->videoPreloadPrefix()) {
|
|
|
|
const auto key = video->bigFileBaseCacheKey();
|
|
|
|
if (key) {
|
|
|
|
const auto weak = base::make_weak(this);
|
|
|
|
video->owner().cacheBigFile().get(key, [weak](
|
|
|
|
const QByteArray &result) {
|
|
|
|
if (!result.isEmpty()) {
|
|
|
|
crl::on_main([weak] {
|
|
|
|
if (const auto strong = weak.get()) {
|
|
|
|
strong->callDone();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
crl::on_main([weak] {
|
|
|
|
if (const auto strong = weak.get()) {
|
|
|
|
strong->load();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
callDone();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
callDone();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
callDone();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void StoryPreload::load() {
|
|
|
|
Expects(_story->document() != nullptr);
|
|
|
|
|
|
|
|
const auto video = _story->document();
|
|
|
|
const auto valid = video->videoPreloadLocation().valid();
|
|
|
|
const auto prefix = video->videoPreloadPrefix();
|
|
|
|
const auto key = video->bigFileBaseCacheKey();
|
|
|
|
if (!valid || prefix <= 0 || prefix > video->size || !key) {
|
|
|
|
callDone();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_task = std::make_unique<LoadTask>(id(), video, [=](QByteArray data) {
|
|
|
|
if (!data.isEmpty()) {
|
2023-07-25 16:50:21 +00:00
|
|
|
Assert(data.size() < Storage::kMaxFileInMemory);
|
2023-06-27 08:38:02 +00:00
|
|
|
_story->owner().cacheBigFile().putIfEmpty(
|
|
|
|
key,
|
|
|
|
Storage::Cache::Database::TaggedValue(std::move(data), 0));
|
|
|
|
}
|
|
|
|
callDone();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void StoryPreload::callDone() {
|
|
|
|
if (const auto onstack = _done) {
|
|
|
|
onstack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Data
|