tdlight/td/telegram/StoryViewer.h

85 lines
2.6 KiB
C
Raw Normal View History

2023-08-07 16:03:10 +03:00
//
2024-01-01 03:07:21 +03:00
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
2023-08-07 16:03:10 +03:00
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
2023-12-25 16:32:41 +03:00
#include "td/telegram/DialogId.h"
#include "td/telegram/MessageFullId.h"
2023-08-07 17:19:12 +03:00
#include "td/telegram/ReactionType.h"
#include "td/telegram/StoryId.h"
2023-08-07 16:03:10 +03:00
#include "td/telegram/td_api.h"
#include "td/telegram/telegram_api.h"
#include "td/telegram/UserId.h"
#include "td/utils/common.h"
#include "td/utils/StringBuilder.h"
namespace td {
class Td;
2023-08-07 16:03:10 +03:00
class StoryViewer {
enum class Type : int32 { None, View, Forward, Repost };
Type type_ = Type::None;
DialogId actor_dialog_id_;
2023-08-07 16:03:10 +03:00
int32 date_ = 0;
2023-08-07 17:19:12 +03:00
bool is_blocked_ = false;
bool is_blocked_for_stories_ = false;
ReactionType reaction_type_; // for View
MessageFullId message_full_id_; // for Forward
StoryId story_id_; // for Repost
2023-08-07 16:03:10 +03:00
friend StringBuilder &operator<<(StringBuilder &string_builder, const StoryViewer &viewer);
public:
2023-12-25 17:30:26 +03:00
StoryViewer(Td *td, telegram_api::object_ptr<telegram_api::StoryView> &&story_view_ptr);
2023-08-07 16:03:10 +03:00
2023-12-26 13:57:43 +03:00
StoryViewer(Td *td, telegram_api::object_ptr<telegram_api::StoryReaction> &&story_reaction_ptr);
2023-12-25 16:32:41 +03:00
UserId get_viewer_user_id() const {
return type_ == Type::View ? actor_dialog_id_.get_user_id() : UserId();
2023-08-07 16:03:10 +03:00
}
2023-12-25 16:32:41 +03:00
DialogId get_actor_dialog_id() const {
return actor_dialog_id_;
2023-12-25 16:32:41 +03:00
}
2023-12-25 16:34:38 +03:00
bool is_valid() const;
td_api::object_ptr<td_api::storyInteraction> get_story_interaction_object(Td *td) const;
2023-08-07 16:03:10 +03:00
};
StringBuilder &operator<<(StringBuilder &string_builder, const StoryViewer &viewer);
class StoryViewers {
2023-08-07 20:49:31 +03:00
int32 total_count_ = 0;
2023-12-25 15:10:48 +03:00
int32 total_forward_count_ = 0;
2023-08-16 13:45:10 +03:00
int32 total_reaction_count_ = 0;
2023-08-07 16:03:10 +03:00
vector<StoryViewer> story_viewers_;
2023-08-07 19:40:15 +03:00
string next_offset_;
2023-08-07 16:03:10 +03:00
friend StringBuilder &operator<<(StringBuilder &string_builder, const StoryViewers &viewers);
public:
StoryViewers(Td *td, int32 total_count, int32 total_forward_count, int32 total_reaction_count,
2023-12-05 12:30:12 +03:00
vector<telegram_api::object_ptr<telegram_api::StoryView>> &&story_views, string &&next_offset);
2023-08-07 16:03:10 +03:00
2023-12-26 13:57:43 +03:00
StoryViewers(Td *td, int32 total_count,
vector<telegram_api::object_ptr<telegram_api::StoryReaction>> &&story_reactions, string &&next_offset);
2023-12-25 16:32:41 +03:00
vector<UserId> get_viewer_user_ids() const;
vector<DialogId> get_actor_dialog_ids() const;
2023-08-07 16:03:10 +03:00
td_api::object_ptr<td_api::storyInteractions> get_story_interactions_object(Td *td) const;
2023-08-07 16:03:10 +03:00
};
StringBuilder &operator<<(StringBuilder &string_builder, const StoryViewers &viewers);
} // namespace td