2023-04-26 20:05:12 +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 "api/api_statistics.h"
|
|
|
|
|
|
|
|
#include "apiwrap.h"
|
2023-04-26 20:58:03 +00:00
|
|
|
#include "data/data_channel.h"
|
2023-04-26 20:05:12 +00:00
|
|
|
#include "data/data_peer.h"
|
|
|
|
#include "main/main_session.h"
|
2023-05-02 14:33:17 +00:00
|
|
|
#include "statistics/statistics_data_deserialize.h"
|
2023-04-26 20:05:12 +00:00
|
|
|
|
|
|
|
namespace Api {
|
|
|
|
namespace {
|
2023-04-26 20:58:03 +00:00
|
|
|
|
2023-05-02 14:33:17 +00:00
|
|
|
[[nodiscard]] Data::StatisticalGraph StatisticalGraphFromTL(
|
|
|
|
const MTPStatsGraph &tl) {
|
|
|
|
return tl.match([&](const MTPDstatsGraph &d) {
|
|
|
|
using namespace Statistic;
|
2023-07-27 04:03:53 +00:00
|
|
|
const auto zoomToken = d.vzoom_token().has_value()
|
|
|
|
? qs(*d.vzoom_token()).toUtf8()
|
|
|
|
: QByteArray();
|
2023-05-02 14:33:17 +00:00
|
|
|
return Data::StatisticalGraph{
|
|
|
|
StatisticalChartFromJSON(qs(d.vjson().data().vdata()).toUtf8()),
|
2023-07-27 04:03:53 +00:00
|
|
|
zoomToken,
|
2023-05-02 14:33:17 +00:00
|
|
|
};
|
|
|
|
}, [&](const MTPDstatsGraphAsync &data) {
|
2023-07-27 04:03:53 +00:00
|
|
|
return Data::StatisticalGraph{
|
|
|
|
.zoomToken = qs(data.vtoken()).toUtf8(),
|
|
|
|
};
|
2023-05-02 14:33:17 +00:00
|
|
|
}, [&](const MTPDstatsGraphError &data) {
|
|
|
|
return Data::StatisticalGraph{ Data::StatisticalChart() };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:58:03 +00:00
|
|
|
[[nodiscard]] Data::StatisticalValue StatisticalValueFromTL(
|
|
|
|
const MTPStatsAbsValueAndPrev &tl) {
|
|
|
|
const auto current = tl.data().vcurrent().v;
|
|
|
|
const auto previous = tl.data().vprevious().v;
|
|
|
|
return Data::StatisticalValue{
|
|
|
|
.value = current,
|
|
|
|
.previousValue = previous,
|
|
|
|
.growthRatePercentage = previous
|
|
|
|
? std::abs((current - previous) / float64(previous) * 100.)
|
|
|
|
: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] Data::ChannelStatistics ChannelStatisticsFromTL(
|
|
|
|
const MTPDstats_broadcastStats &data) {
|
|
|
|
const auto &tlUnmuted = data.venabled_notifications().data();
|
|
|
|
const auto unmuted = (!tlUnmuted.vtotal().v)
|
|
|
|
? 0.
|
|
|
|
: std::clamp(
|
|
|
|
tlUnmuted.vpart().v / tlUnmuted.vtotal().v * 100.,
|
|
|
|
0.,
|
|
|
|
100.);
|
|
|
|
using Recent = MTPMessageInteractionCounters;
|
|
|
|
auto recentMessages = ranges::views::all(
|
|
|
|
data.vrecent_message_interactions().v
|
|
|
|
) | ranges::views::transform([&](const Recent &tl) {
|
|
|
|
return Data::StatisticsMessageInteractionInfo{
|
|
|
|
.messageId = tl.data().vmsg_id().v,
|
|
|
|
.viewsCount = tl.data().vviews().v,
|
|
|
|
.forwardsCount = tl.data().vforwards().v,
|
|
|
|
};
|
|
|
|
}) | ranges::to_vector;
|
2023-05-02 14:33:17 +00:00
|
|
|
|
2023-04-26 20:58:03 +00:00
|
|
|
return {
|
|
|
|
.startDate = data.vperiod().data().vmin_date().v,
|
|
|
|
.endDate = data.vperiod().data().vmax_date().v,
|
|
|
|
|
|
|
|
.memberCount = StatisticalValueFromTL(data.vfollowers()),
|
|
|
|
.meanViewCount = StatisticalValueFromTL(data.vviews_per_post()),
|
|
|
|
.meanShareCount = StatisticalValueFromTL(data.vshares_per_post()),
|
|
|
|
|
|
|
|
.enabledNotificationsPercentage = unmuted,
|
|
|
|
|
2023-05-02 14:33:17 +00:00
|
|
|
.memberCountGraph = StatisticalGraphFromTL(
|
|
|
|
data.vgrowth_graph()),
|
|
|
|
|
|
|
|
.joinGraph = StatisticalGraphFromTL(
|
|
|
|
data.vfollowers_graph()),
|
|
|
|
|
|
|
|
.muteGraph = StatisticalGraphFromTL(
|
|
|
|
data.vmute_graph()),
|
|
|
|
|
|
|
|
.viewCountByHourGraph = StatisticalGraphFromTL(
|
|
|
|
data.vtop_hours_graph()),
|
|
|
|
|
|
|
|
.viewCountBySourceGraph = StatisticalGraphFromTL(
|
|
|
|
data.vviews_by_source_graph()),
|
|
|
|
|
|
|
|
.joinBySourceGraph = StatisticalGraphFromTL(
|
|
|
|
data.vnew_followers_by_source_graph()),
|
|
|
|
|
|
|
|
.languageGraph = StatisticalGraphFromTL(
|
|
|
|
data.vlanguages_graph()),
|
|
|
|
|
|
|
|
.messageInteractionGraph = StatisticalGraphFromTL(
|
|
|
|
data.vinteractions_graph()),
|
|
|
|
|
|
|
|
.instantViewInteractionGraph = StatisticalGraphFromTL(
|
|
|
|
data.viv_interactions_graph()),
|
|
|
|
|
2023-04-26 20:58:03 +00:00
|
|
|
.recentMessageInteractions = std::move(recentMessages),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:05:12 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
Statistics::Statistics(not_null<ApiWrap*> api)
|
|
|
|
: _api(&api->instance()) {
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:58:03 +00:00
|
|
|
rpl::producer<rpl::no_value, QString> Statistics::request(
|
|
|
|
not_null<PeerData*> peer) {
|
|
|
|
return [=](auto consumer) {
|
|
|
|
auto lifetime = rpl::lifetime();
|
|
|
|
const auto channel = peer->asChannel();
|
|
|
|
if (!channel) {
|
|
|
|
return lifetime;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!channel->isMegagroup()) {
|
|
|
|
_api.request(MTPstats_GetBroadcastStats(
|
|
|
|
MTP_flags(MTPstats_GetBroadcastStats::Flags(0)),
|
|
|
|
channel->inputChannel
|
|
|
|
)).done([=](const MTPstats_BroadcastStats &result) {
|
|
|
|
_channelStats = ChannelStatisticsFromTL(result.data());
|
|
|
|
consumer.put_done();
|
|
|
|
}).fail([=](const MTP::Error &error) {
|
|
|
|
consumer.put_error_copy(error.type());
|
|
|
|
}).send();
|
|
|
|
}
|
|
|
|
|
|
|
|
return lifetime;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-07-27 04:03:53 +00:00
|
|
|
rpl::producer<Data::StatisticalGraph, QString> Statistics::requestZoom(
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
const QString &token,
|
|
|
|
float64 x) {
|
|
|
|
return [=](auto consumer) {
|
|
|
|
auto lifetime = rpl::lifetime();
|
|
|
|
const auto channel = peer->asChannel();
|
|
|
|
if (!channel) {
|
|
|
|
return lifetime;
|
|
|
|
}
|
|
|
|
|
|
|
|
_api.request(MTPstats_LoadAsyncGraph(
|
|
|
|
MTP_flags(x
|
|
|
|
? MTPstats_LoadAsyncGraph::Flag::f_x
|
|
|
|
: MTPstats_LoadAsyncGraph::Flag(0)),
|
|
|
|
MTP_string(token),
|
|
|
|
MTP_long(x)
|
|
|
|
)).done([=](const MTPStatsGraph &result) {
|
|
|
|
consumer.put_next(StatisticalGraphFromTL(result));
|
|
|
|
consumer.put_done();
|
|
|
|
}).fail([=](const MTP::Error &error) {
|
|
|
|
consumer.put_error_copy(error.type());
|
|
|
|
}).send();
|
|
|
|
|
|
|
|
return lifetime;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-04-26 20:58:03 +00:00
|
|
|
Data::ChannelStatistics Statistics::channelStats() const {
|
|
|
|
return _channelStats;
|
2023-04-26 20:05:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Api
|