680 lines
		
	
	
	
		
			17 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			680 lines
		
	
	
	
		
			17 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 "data/data_story.h"
 | 
						|
 | 
						|
#include "base/unixtime.h"
 | 
						|
#include "api/api_text_entities.h"
 | 
						|
#include "data/data_document.h"
 | 
						|
#include "data/data_changes.h"
 | 
						|
#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"
 | 
						|
#include "data/data_stories.h"
 | 
						|
#include "data/data_thread.h"
 | 
						|
#include "history/history_item.h"
 | 
						|
#include "lang/lang_keys.h"
 | 
						|
#include "main/main_session.h"
 | 
						|
#include "media/streaming/media_streaming_reader.h"
 | 
						|
#include "storage/download_manager_mtproto.h"
 | 
						|
#include "storage/file_download.h" // kMaxFileInMemory
 | 
						|
#include "ui/text/text_utilities.h"
 | 
						|
 | 
						|
namespace Data {
 | 
						|
namespace {
 | 
						|
 | 
						|
using UpdateFlag = StoryUpdate::Flag;
 | 
						|
 | 
						|
[[nodiscard]] StoryArea ParseArea(const MTPMediaAreaCoordinates &area) {
 | 
						|
	const auto &data = area.data();
 | 
						|
	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.;
 | 
						|
	return {
 | 
						|
		.geometry = { corner / 100., size / 100. },
 | 
						|
		.rotation = data.vrotation().v,
 | 
						|
	};
 | 
						|
}
 | 
						|
 | 
						|
[[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 &) {
 | 
						|
		});
 | 
						|
	}, [&](const MTPDinputMediaAreaVenue &data) {
 | 
						|
		LOG(("API Error: Unexpected inputMediaAreaVenue in API data."));
 | 
						|
	});
 | 
						|
	return result;
 | 
						|
}
 | 
						|
 | 
						|
} // namespace
 | 
						|
 | 
						|
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();
 | 
						|
		auto result = ::Media::Streaming::SerializeComplexPartsMap(_parts);
 | 
						|
		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,
 | 
						|
	const MTPDstoryItem &data,
 | 
						|
	TimeId now)
 | 
						|
: _id(id)
 | 
						|
, _peer(peer)
 | 
						|
, _date(data.vdate().v)
 | 
						|
, _expires(data.vexpire_date().v) {
 | 
						|
	applyFields(std::move(media), data, now, true);
 | 
						|
}
 | 
						|
 | 
						|
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()
 | 
						|
		? Ui::Text::PlainLink(type)
 | 
						|
		: tr::lng_dialogs_text_media(
 | 
						|
			tr::now,
 | 
						|
			lt_media_part,
 | 
						|
			tr::lng_dialogs_text_media_wrapped(
 | 
						|
				tr::now,
 | 
						|
				lt_media,
 | 
						|
				Ui::Text::PlainLink(type),
 | 
						|
				Ui::Text::WithEntities),
 | 
						|
			lt_caption,
 | 
						|
			_caption,
 | 
						|
			Ui::Text::WithEntities);
 | 
						|
}
 | 
						|
 | 
						|
void Story::setPinned(bool pinned) {
 | 
						|
	_pinned = pinned;
 | 
						|
}
 | 
						|
 | 
						|
bool Story::pinned() const {
 | 
						|
	return _pinned;
 | 
						|
}
 | 
						|
 | 
						|
StoryPrivacy Story::privacy() const {
 | 
						|
	return _privacyPublic
 | 
						|
		? StoryPrivacy::Public
 | 
						|
		: _privacyCloseFriends
 | 
						|
		? StoryPrivacy::CloseFriends
 | 
						|
		: _privacyContacts
 | 
						|
		? StoryPrivacy::Contacts
 | 
						|
		: _privacySelectedContacts
 | 
						|
		? StoryPrivacy::SelectedContacts
 | 
						|
		: StoryPrivacy::Other;
 | 
						|
}
 | 
						|
 | 
						|
bool Story::forbidsForward() const {
 | 
						|
	return _noForwards;
 | 
						|
}
 | 
						|
 | 
						|
bool Story::edited() const {
 | 
						|
	return _edited;
 | 
						|
}
 | 
						|
 | 
						|
bool Story::canDownloadIfPremium() const {
 | 
						|
	return !forbidsForward() || _peer->isSelf();
 | 
						|
}
 | 
						|
 | 
						|
bool Story::canDownloadChecked() const {
 | 
						|
	return _peer->isSelf()
 | 
						|
		|| (canDownloadIfPremium() && _peer->session().premium());
 | 
						|
}
 | 
						|
 | 
						|
bool Story::canShare() const {
 | 
						|
	return _privacyPublic && !forbidsForward() && (pinned() || !expired());
 | 
						|
}
 | 
						|
 | 
						|
bool Story::canDelete() const {
 | 
						|
	return _peer->isSelf();
 | 
						|
}
 | 
						|
 | 
						|
bool Story::canReport() const {
 | 
						|
	return !_peer->isSelf();
 | 
						|
}
 | 
						|
 | 
						|
bool Story::hasDirectLink() const {
 | 
						|
	if (!_privacyPublic || (!_pinned && expired())) {
 | 
						|
		return false;
 | 
						|
	}
 | 
						|
	const auto user = _peer->asUser();
 | 
						|
	return user && !user->username().isEmpty();
 | 
						|
}
 | 
						|
 | 
						|
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;
 | 
						|
}
 | 
						|
 | 
						|
Data::ReactionId Story::sentReactionId() const {
 | 
						|
	return _sentReactionId;
 | 
						|
}
 | 
						|
 | 
						|
void Story::setReactionId(Data::ReactionId id) {
 | 
						|
	if (_sentReactionId != id) {
 | 
						|
		_sentReactionId = id;
 | 
						|
		session().changes().storyUpdated(this, UpdateFlag::Reaction);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
const std::vector<not_null<PeerData*>> &Story::recentViewers() const {
 | 
						|
	return _recentViewers;
 | 
						|
}
 | 
						|
 | 
						|
const StoryViews &Story::viewsList() const {
 | 
						|
	return _views;
 | 
						|
}
 | 
						|
 | 
						|
int Story::views() const {
 | 
						|
	return _views.total;
 | 
						|
}
 | 
						|
 | 
						|
int Story::reactions() const {
 | 
						|
	return _views.reactions;
 | 
						|
}
 | 
						|
 | 
						|
void Story::applyViewsSlice(
 | 
						|
		const QString &offset,
 | 
						|
		const StoryViews &slice) {
 | 
						|
	const auto changed = (_views.reactions != slice.reactions)
 | 
						|
		|| (_views.total != slice.total);
 | 
						|
	_views.reactions = slice.reactions;
 | 
						|
	_views.total = slice.total;
 | 
						|
	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());
 | 
						|
			_views.reactions = _views.total
 | 
						|
				- ranges::count(
 | 
						|
					_views.list,
 | 
						|
					Data::ReactionId(),
 | 
						|
					&StoryView::reaction);
 | 
						|
		}
 | 
						|
	}
 | 
						|
	const auto known = int(_views.list.size());
 | 
						|
	if (known >= _recentViewers.size()) {
 | 
						|
		const auto take = std::min(known, kRecentViewersMax);
 | 
						|
		auto viewers = _views.list
 | 
						|
			| 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,
 | 
						|
					UpdateFlag::ViewsAdded);
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if (changed) {
 | 
						|
		_peer->session().changes().storyUpdated(
 | 
						|
			this,
 | 
						|
			UpdateFlag::ViewsAdded);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
const std::vector<StoryLocation> &Story::locations() const {
 | 
						|
	return _locations;
 | 
						|
}
 | 
						|
 | 
						|
void Story::applyChanges(
 | 
						|
		StoryMedia media,
 | 
						|
		const MTPDstoryItem &data,
 | 
						|
		TimeId now) {
 | 
						|
	applyFields(std::move(media), data, now, false);
 | 
						|
}
 | 
						|
 | 
						|
void Story::applyFields(
 | 
						|
		StoryMedia media,
 | 
						|
		const MTPDstoryItem &data,
 | 
						|
		TimeId now,
 | 
						|
		bool initial) {
 | 
						|
	_lastUpdateTime = now;
 | 
						|
 | 
						|
	const auto reaction = data.is_min()
 | 
						|
		? _sentReactionId
 | 
						|
		: data.vsent_reaction()
 | 
						|
		? Data::ReactionFromMTP(*data.vsent_reaction())
 | 
						|
		: Data::ReactionId();
 | 
						|
	const auto pinned = data.is_pinned();
 | 
						|
	const auto edited = data.is_edited();
 | 
						|
	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;
 | 
						|
	const auto noForwards = data.is_noforwards();
 | 
						|
	auto caption = TextWithEntities{
 | 
						|
		data.vcaption().value_or_empty(),
 | 
						|
		Api::EntitiesFromMTP(
 | 
						|
			&owner().session(),
 | 
						|
			data.ventities().value_or_empty()),
 | 
						|
	};
 | 
						|
	auto views = _views.total;
 | 
						|
	auto reactions = _views.reactions;
 | 
						|
	auto viewers = std::vector<not_null<PeerData*>>();
 | 
						|
	if (const auto info = data.vviews()) {
 | 
						|
		views = info->data().vviews_count().v;
 | 
						|
		reactions = info->data().vreactions_count().v;
 | 
						|
		if (const auto list = info->data().vrecent_viewers()) {
 | 
						|
			viewers.reserve(list->v.size());
 | 
						|
			auto &owner = _peer->owner();
 | 
						|
			auto &&cut = list->v
 | 
						|
				| ranges::views::take(kRecentViewersMax);
 | 
						|
			for (const auto &id : cut) {
 | 
						|
				viewers.push_back(owner.peer(peerFromUser(id)));
 | 
						|
			}
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		viewers = _recentViewers;
 | 
						|
	}
 | 
						|
	auto locations = std::vector<StoryLocation>();
 | 
						|
	if (const auto areas = data.vmedia_areas()) {
 | 
						|
		locations.reserve(areas->v.size());
 | 
						|
		for (const auto &area : areas->v) {
 | 
						|
			if (const auto location = ParseLocation(area)) {
 | 
						|
				locations.push_back(*location);
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	const auto pinnedChanged = (_pinned != pinned);
 | 
						|
	const auto editedChanged = (_edited != edited);
 | 
						|
	const auto mediaChanged = (_media != media);
 | 
						|
	const auto captionChanged = (_caption != caption);
 | 
						|
	const auto viewsChanged = (_views.total != views)
 | 
						|
		|| (_views.reactions != reactions)
 | 
						|
		|| (_recentViewers != viewers);
 | 
						|
	const auto locationsChanged = (_locations != locations);
 | 
						|
	const auto reactionChanged = (_sentReactionId != reaction);
 | 
						|
 | 
						|
	_privacyPublic = (privacy == StoryPrivacy::Public);
 | 
						|
	_privacyCloseFriends = (privacy == StoryPrivacy::CloseFriends);
 | 
						|
	_privacyContacts = (privacy == StoryPrivacy::Contacts);
 | 
						|
	_privacySelectedContacts = (privacy == StoryPrivacy::SelectedContacts);
 | 
						|
	_noForwards = noForwards;
 | 
						|
	_edited = edited;
 | 
						|
	_pinned = pinned;
 | 
						|
	_noForwards = noForwards;
 | 
						|
	if (_views.reactions != reactions || _views.total != views) {
 | 
						|
		_views = StoryViews{ .reactions = reactions, .total = views };
 | 
						|
	}
 | 
						|
	if (viewsChanged) {
 | 
						|
		_recentViewers = std::move(viewers);
 | 
						|
	}
 | 
						|
	if (mediaChanged) {
 | 
						|
		_media = std::move(media);
 | 
						|
	}
 | 
						|
	if (captionChanged) {
 | 
						|
		_caption = std::move(caption);
 | 
						|
	}
 | 
						|
	if (locationsChanged) {
 | 
						|
		_locations = std::move(locations);
 | 
						|
	}
 | 
						|
	if (reactionChanged) {
 | 
						|
		_sentReactionId = reaction;
 | 
						|
	}
 | 
						|
 | 
						|
	const auto changed = editedChanged
 | 
						|
		|| captionChanged
 | 
						|
		|| mediaChanged
 | 
						|
		|| locationsChanged;
 | 
						|
	if (!initial && (changed || viewsChanged || reactionChanged)) {
 | 
						|
		_peer->session().changes().storyUpdated(this, UpdateFlag()
 | 
						|
			| (changed ? UpdateFlag::Edited : UpdateFlag())
 | 
						|
			| (viewsChanged ? UpdateFlag::ViewsAdded : UpdateFlag())
 | 
						|
			| (reactionChanged ? UpdateFlag::Reaction : UpdateFlag()));
 | 
						|
	}
 | 
						|
	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);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
TimeId Story::lastUpdateTime() const {
 | 
						|
	return _lastUpdateTime;
 | 
						|
}
 | 
						|
 | 
						|
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()) {
 | 
						|
			Assert(data.size() < Storage::kMaxFileInMemory);
 | 
						|
			_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
 |