2023-08-24 16:04:32 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Iv {
|
|
|
|
|
|
|
|
struct Source;
|
|
|
|
|
|
|
|
struct Options {
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Prepared {
|
2024-03-12 09:00:51 +00:00
|
|
|
QString name;
|
2023-12-04 19:06:44 +00:00
|
|
|
QByteArray content;
|
2023-12-07 10:37:58 +00:00
|
|
|
QByteArray script;
|
2023-12-05 13:25:26 +00:00
|
|
|
QString url;
|
2023-12-05 07:54:46 +00:00
|
|
|
QString hash;
|
2023-08-24 16:04:32 +00:00
|
|
|
base::flat_map<QByteArray, QByteArray> embeds;
|
2023-12-04 19:06:44 +00:00
|
|
|
base::flat_set<QByteArray> channelIds;
|
|
|
|
bool rtl = false;
|
|
|
|
bool hasCode = false;
|
|
|
|
bool hasEmbeds = false;
|
2023-08-24 16:04:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Geo {
|
|
|
|
float64 lat = 0.;
|
|
|
|
float64 lon = 0.;
|
|
|
|
uint64 access = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
[[nodiscard]] QByteArray GeoPointId(Geo point);
|
|
|
|
[[nodiscard]] Geo GeoPointFromId(QByteArray data);
|
|
|
|
|
|
|
|
class Data final {
|
|
|
|
public:
|
|
|
|
Data(const MTPDwebPage &webpage, const MTPPage &page);
|
|
|
|
~Data();
|
|
|
|
|
|
|
|
[[nodiscard]] QString id() const;
|
2024-03-11 12:59:11 +00:00
|
|
|
[[nodiscard]] bool partial() const;
|
2023-08-24 16:04:32 +00:00
|
|
|
|
|
|
|
void prepare(const Options &options, Fn<void(Prepared)> done) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const std::unique_ptr<Source> _source;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2024-03-12 09:00:51 +00:00
|
|
|
[[nodiscard]] QString SiteNameFromUrl(const QString &url);
|
|
|
|
|
2024-03-12 14:17:43 +00:00
|
|
|
[[nodiscard]] bool ShowButton();
|
|
|
|
|
|
|
|
void RecordShowFailure();
|
|
|
|
[[nodiscard]] bool FailedToShow();
|
|
|
|
|
2023-08-24 16:04:32 +00:00
|
|
|
} // namespace Iv
|