232 lines
		
	
	
	
		
			6.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			232 lines
		
	
	
	
		
			6.2 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
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "data/data_peer.h"
 | 
						|
#include "data/data_chat_participant_status.h"
 | 
						|
#include "data/data_peer_bot_commands.h"
 | 
						|
 | 
						|
enum class ChatAdminRight;
 | 
						|
 | 
						|
enum class ChatDataFlag {
 | 
						|
	Left = (1 << 0),
 | 
						|
	//Kicked = (1 << 1),
 | 
						|
	Creator = (1 << 2),
 | 
						|
	Deactivated = (1 << 3),
 | 
						|
	Forbidden = (1 << 4),
 | 
						|
	CallActive = (1 << 5),
 | 
						|
	CallNotEmpty = (1 << 6),
 | 
						|
	CanSetUsername = (1 << 7),
 | 
						|
	NoForwards = (1 << 8),
 | 
						|
};
 | 
						|
inline constexpr bool is_flag_type(ChatDataFlag) { return true; };
 | 
						|
using ChatDataFlags = base::flags<ChatDataFlag>;
 | 
						|
 | 
						|
class ChatData final : public PeerData {
 | 
						|
public:
 | 
						|
	using Flag = ChatDataFlag;
 | 
						|
	using Flags = Data::Flags<ChatDataFlags>;
 | 
						|
 | 
						|
	ChatData(not_null<Data::Session*> owner, PeerId id);
 | 
						|
 | 
						|
	void setName(const QString &newName);
 | 
						|
	void setPhoto(const MTPChatPhoto &photo);
 | 
						|
 | 
						|
	void invalidateParticipants();
 | 
						|
	[[nodiscard]] bool noParticipantInfo() const {
 | 
						|
		return (count > 0 || amIn()) && participants.empty();
 | 
						|
	}
 | 
						|
 | 
						|
	void setFlags(ChatDataFlags which) {
 | 
						|
		_flags.set(which);
 | 
						|
	}
 | 
						|
	void addFlags(ChatDataFlags which) {
 | 
						|
		_flags.add(which);
 | 
						|
	}
 | 
						|
	void removeFlags(ChatDataFlags which) {
 | 
						|
		_flags.remove(which);
 | 
						|
	}
 | 
						|
	[[nodiscard]] auto flags() const {
 | 
						|
		return _flags.current();
 | 
						|
	}
 | 
						|
	[[nodiscard]] auto flagsValue() const {
 | 
						|
		return _flags.value();
 | 
						|
	}
 | 
						|
 | 
						|
	[[nodiscard]] auto adminRights() const {
 | 
						|
		return _adminRights.current();
 | 
						|
	}
 | 
						|
	[[nodiscard]] auto adminRightsValue() const {
 | 
						|
		return _adminRights.value();
 | 
						|
	}
 | 
						|
	void setAdminRights(ChatAdminRights rights);
 | 
						|
	[[nodiscard]] bool hasAdminRights() const {
 | 
						|
		return (adminRights() != 0);
 | 
						|
	}
 | 
						|
 | 
						|
	[[nodiscard]] auto defaultRestrictions() const {
 | 
						|
		return _defaultRestrictions.current();
 | 
						|
	}
 | 
						|
	[[nodiscard]] auto defaultRestrictionsValue() const {
 | 
						|
		return _defaultRestrictions.value();
 | 
						|
	}
 | 
						|
	void setDefaultRestrictions(ChatRestrictions rights);
 | 
						|
 | 
						|
	[[nodiscard]] bool isForbidden() const {
 | 
						|
		return flags() & Flag::Forbidden;
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool amIn() const {
 | 
						|
		return !isForbidden() && !isDeactivated() && !haveLeft();
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool haveLeft() const {
 | 
						|
		return flags() & ChatDataFlag::Left;
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool amCreator() const {
 | 
						|
		return flags() & ChatDataFlag::Creator;
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool isDeactivated() const {
 | 
						|
		return flags() & ChatDataFlag::Deactivated;
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool isMigrated() const {
 | 
						|
		return (_migratedTo != nullptr);
 | 
						|
	}
 | 
						|
 | 
						|
	[[nodiscard]] ChatAdminRightsInfo defaultAdminRights(
 | 
						|
		not_null<UserData*> user);
 | 
						|
 | 
						|
	// Like in ChannelData.
 | 
						|
	[[nodiscard]] bool canWrite() const;
 | 
						|
	[[nodiscard]] bool allowsForwarding() const;
 | 
						|
	[[nodiscard]] bool canEditInformation() const;
 | 
						|
	[[nodiscard]] bool canEditPermissions() const;
 | 
						|
	[[nodiscard]] bool canEditUsername() const;
 | 
						|
	[[nodiscard]] bool canEditPreHistoryHidden() const;
 | 
						|
	[[nodiscard]] bool canDeleteMessages() const;
 | 
						|
	[[nodiscard]] bool canAddMembers() const;
 | 
						|
	[[nodiscard]] bool canAddAdmins() const;
 | 
						|
	[[nodiscard]] bool canBanMembers() const;
 | 
						|
	[[nodiscard]] bool canSendPolls() const;
 | 
						|
	[[nodiscard]] bool anyoneCanAddMembers() const;
 | 
						|
 | 
						|
	void applyEditAdmin(not_null<UserData*> user, bool isAdmin);
 | 
						|
 | 
						|
	void setInviteLink(const QString &newInviteLink);
 | 
						|
	[[nodiscard]] QString inviteLink() const {
 | 
						|
		return _inviteLink;
 | 
						|
	}
 | 
						|
	[[nodiscard]] bool canHaveInviteLink() const;
 | 
						|
	void refreshBotStatus();
 | 
						|
 | 
						|
	enum class UpdateStatus {
 | 
						|
		Good,
 | 
						|
		TooOld,
 | 
						|
		Skipped,
 | 
						|
	};
 | 
						|
	int version() const {
 | 
						|
		return _version;
 | 
						|
	}
 | 
						|
	void setVersion(int version) {
 | 
						|
		_version = version;
 | 
						|
	}
 | 
						|
	UpdateStatus applyUpdateVersion(int version);
 | 
						|
 | 
						|
	ChannelData *getMigrateToChannel() const;
 | 
						|
	void setMigrateToChannel(ChannelData *channel);
 | 
						|
 | 
						|
	[[nodiscard]] Data::GroupCall *groupCall() const {
 | 
						|
		return _call.get();
 | 
						|
	}
 | 
						|
	void setGroupCall(
 | 
						|
		const MTPInputGroupCall &call,
 | 
						|
		TimeId scheduleDate = 0,
 | 
						|
		bool rtmp = false);
 | 
						|
	void clearGroupCall();
 | 
						|
	void setGroupCallDefaultJoinAs(PeerId peerId);
 | 
						|
	[[nodiscard]] PeerId groupCallDefaultJoinAs() const;
 | 
						|
 | 
						|
	void setBotCommands(const std::vector<Data::BotCommands> &commands);
 | 
						|
	[[nodiscard]] const Data::ChatBotCommands &botCommands() const {
 | 
						|
		return _botCommands;
 | 
						|
	}
 | 
						|
 | 
						|
	[[nodiscard]] int pendingRequestsCount() const {
 | 
						|
		return _pendingRequestsCount;
 | 
						|
	}
 | 
						|
	[[nodiscard]] const std::vector<UserId> &recentRequesters() const {
 | 
						|
		return _recentRequesters;
 | 
						|
	}
 | 
						|
	void setPendingRequestsCount(
 | 
						|
		int count,
 | 
						|
		const QVector<MTPlong> &recentRequesters);
 | 
						|
	void setPendingRequestsCount(
 | 
						|
		int count,
 | 
						|
		std::vector<UserId> recentRequesters);
 | 
						|
 | 
						|
	void setAllowedReactions(Data::AllowedReactions value);
 | 
						|
	[[nodiscard]] const Data::AllowedReactions &allowedReactions() const;
 | 
						|
 | 
						|
	// Still public data members.
 | 
						|
	const MTPlong inputChat;
 | 
						|
 | 
						|
	int count = 0;
 | 
						|
	TimeId date = 0;
 | 
						|
	UserId creator = 0;
 | 
						|
 | 
						|
	base::flat_set<not_null<UserData*>> participants;
 | 
						|
	base::flat_set<not_null<UserData*>> invitedByMe;
 | 
						|
	base::flat_set<not_null<UserData*>> admins;
 | 
						|
	std::deque<not_null<UserData*>> lastAuthors;
 | 
						|
	base::flat_set<not_null<PeerData*>> markupSenders;
 | 
						|
	int botStatus = 0; // -1 - no bots, 0 - unknown, 1 - one bot, that sees all history, 2 - other
 | 
						|
 | 
						|
private:
 | 
						|
	Flags _flags;
 | 
						|
	QString _inviteLink;
 | 
						|
 | 
						|
	Data::Flags<ChatRestrictions> _defaultRestrictions;
 | 
						|
	Data::Flags<ChatAdminRights> _adminRights;
 | 
						|
	int _version = 0;
 | 
						|
	int _pendingRequestsCount = 0;
 | 
						|
	std::vector<UserId> _recentRequesters;
 | 
						|
 | 
						|
	Data::AllowedReactions _allowedReactions;
 | 
						|
 | 
						|
	std::unique_ptr<Data::GroupCall> _call;
 | 
						|
	PeerId _callDefaultJoinAs = 0;
 | 
						|
	Data::ChatBotCommands _botCommands;
 | 
						|
 | 
						|
	ChannelData *_migratedTo = nullptr;
 | 
						|
	rpl::lifetime _lifetime;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
namespace Data {
 | 
						|
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDupdateChatParticipants &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDupdateChatParticipantAdd &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDupdateChatParticipantDelete &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDupdateChatParticipantAdmin &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDupdateChatDefaultBannedRights &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPDchatFull &update);
 | 
						|
void ApplyChatUpdate(
 | 
						|
	not_null<ChatData*> chat,
 | 
						|
	const MTPChatParticipants &update);
 | 
						|
 | 
						|
} // namespace Data
 |