197 lines
		
	
	
	
		
			5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			197 lines
		
	
	
	
		
			5 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 <rpl/event_stream.h>
 | |
| #include <rpl/filter.h>
 | |
| #include <rpl/variable.h>
 | |
| #include "base/timer.h"
 | |
| 
 | |
| class ApiWrap;
 | |
| 
 | |
| namespace Api {
 | |
| class Updates;
 | |
| class SendProgressManager;
 | |
| } // namespace Api
 | |
| 
 | |
| namespace MTP {
 | |
| class Instance;
 | |
| struct ConfigFields;
 | |
| } // namespace MTP
 | |
| 
 | |
| namespace Support {
 | |
| class Helper;
 | |
| class Templates;
 | |
| } // namespace Support
 | |
| 
 | |
| namespace Data {
 | |
| class Session;
 | |
| class Changes;
 | |
| class CloudImageView;
 | |
| } // namespace Data
 | |
| 
 | |
| namespace Storage {
 | |
| class DownloadManagerMtproto;
 | |
| class Uploader;
 | |
| class Facade;
 | |
| class Account;
 | |
| class Domain;
 | |
| } // namespace Storage
 | |
| 
 | |
| namespace Window {
 | |
| class SessionController;
 | |
| struct TermsLock;
 | |
| } // namespace Window
 | |
| 
 | |
| namespace Stickers {
 | |
| class EmojiPack;
 | |
| class DicePacks;
 | |
| } // namespace Stickers;
 | |
| 
 | |
| namespace Main {
 | |
| 
 | |
| class Account;
 | |
| class Domain;
 | |
| class SessionSettings;
 | |
| 
 | |
| class Session final
 | |
| 	: public base::has_weak_ptr
 | |
| 	, private base::Subscriber {
 | |
| public:
 | |
| 	Session(
 | |
| 		not_null<Account*> account,
 | |
| 		const MTPUser &user,
 | |
| 		std::unique_ptr<SessionSettings> settings);
 | |
| 	~Session();
 | |
| 
 | |
| 	Session(const Session &other) = delete;
 | |
| 	Session &operator=(const Session &other) = delete;
 | |
| 
 | |
| 	[[nodiscard]] Account &account() const;
 | |
| 	[[nodiscard]] Storage::Account &local() const;
 | |
| 	[[nodiscard]] Domain &domain() const;
 | |
| 	[[nodiscard]] Storage::Domain &domainLocal() const;
 | |
| 
 | |
| 	[[nodiscard]] uint64 uniqueId() const; // userId() with TestDC shift.
 | |
| 	[[nodiscard]] UserId userId() const;
 | |
| 	[[nodiscard]] PeerId userPeerId() const;
 | |
| 	[[nodiscard]] not_null<UserData*> user() const {
 | |
| 		return _user;
 | |
| 	}
 | |
| 	bool validateSelf(const MTPUser &user);
 | |
| 
 | |
| 	[[nodiscard]] Api::Updates &updates() const {
 | |
| 		return *_updates;
 | |
| 	}
 | |
| 	[[nodiscard]] Api::SendProgressManager &sendProgressManager() const {
 | |
| 		return *_sendProgressManager;
 | |
| 	}
 | |
| 	[[nodiscard]] Storage::DownloadManagerMtproto &downloader() const {
 | |
| 		return *_downloader;
 | |
| 	}
 | |
| 	[[nodiscard]] Storage::Uploader &uploader() const {
 | |
| 		return *_uploader;
 | |
| 	}
 | |
| 	[[nodiscard]] Storage::Facade &storage() const {
 | |
| 		return *_storage;
 | |
| 	}
 | |
| 	[[nodiscard]] Stickers::EmojiPack &emojiStickersPack() const {
 | |
| 		return *_emojiStickersPack;
 | |
| 	}
 | |
| 	[[nodiscard]] Stickers::DicePacks &diceStickersPacks() const {
 | |
| 		return *_diceStickersPacks;
 | |
| 	}
 | |
| 	[[nodiscard]] Data::Changes &changes() const {
 | |
| 		return *_changes;
 | |
| 	}
 | |
| 	[[nodiscard]] Data::Session &data() const {
 | |
| 		return *_data;
 | |
| 	}
 | |
| 	[[nodiscard]] SessionSettings &settings() const {
 | |
| 		return *_settings;
 | |
| 	}
 | |
| 
 | |
| 	void saveSettings();
 | |
| 	void saveSettingsDelayed(crl::time delay = kDefaultSaveDelay);
 | |
| 	void saveSettingsNowIfNeeded();
 | |
| 
 | |
| 	void addWindow(not_null<Window::SessionController*> controller);
 | |
| 	[[nodiscard]] auto windows() const
 | |
| 		-> const base::flat_set<not_null<Window::SessionController*>> &;
 | |
| 
 | |
| 	// Shortcuts.
 | |
| 	void notifyDownloaderTaskFinished();
 | |
| 	[[nodiscard]] rpl::producer<> downloaderTaskFinished() const;
 | |
| 	[[nodiscard]] MTP::DcId mainDcId() const;
 | |
| 	[[nodiscard]] MTP::Instance &mtp() const;
 | |
| 	[[nodiscard]] const MTP::ConfigFields &serverConfig() const;
 | |
| 	[[nodiscard]] ApiWrap &api() {
 | |
| 		return *_api;
 | |
| 	}
 | |
| 
 | |
| 	// Terms lock.
 | |
| 	void lockByTerms(const Window::TermsLock &data);
 | |
| 	void unlockTerms();
 | |
| 	void termsDeleteNow();
 | |
| 	[[nodiscard]] std::optional<Window::TermsLock> termsLocked() const;
 | |
| 	rpl::producer<bool> termsLockChanges() const;
 | |
| 	rpl::producer<bool> termsLockValue() const;
 | |
| 
 | |
| 	[[nodiscard]] QString createInternalLink(const QString &query) const;
 | |
| 	[[nodiscard]] QString createInternalLinkFull(const QString &query) const;
 | |
| 
 | |
| 	// Can be called only right before ~Session.
 | |
| 	void finishLogout();
 | |
| 
 | |
| 	[[nodiscard]] rpl::lifetime &lifetime() {
 | |
| 		return _lifetime;
 | |
| 	}
 | |
| 
 | |
| 	base::Observable<DocumentData*> documentUpdated;
 | |
| 
 | |
| 	bool supportMode() const;
 | |
| 	Support::Helper &supportHelper() const;
 | |
| 	Support::Templates &supportTemplates() const;
 | |
| 
 | |
| private:
 | |
| 	static constexpr auto kDefaultSaveDelay = crl::time(1000);
 | |
| 
 | |
| 	const not_null<Account*> _account;
 | |
| 
 | |
| 	const std::unique_ptr<SessionSettings> _settings;
 | |
| 	const std::unique_ptr<ApiWrap> _api;
 | |
| 	const std::unique_ptr<Api::Updates> _updates;
 | |
| 	const std::unique_ptr<Api::SendProgressManager> _sendProgressManager;
 | |
| 	const std::unique_ptr<Storage::DownloadManagerMtproto> _downloader;
 | |
| 	const std::unique_ptr<Storage::Uploader> _uploader;
 | |
| 	const std::unique_ptr<Storage::Facade> _storage;
 | |
| 
 | |
| 	// _data depends on _downloader / _uploader.
 | |
| 	const std::unique_ptr<Data::Changes> _changes;
 | |
| 	const std::unique_ptr<Data::Session> _data;
 | |
| 	const not_null<UserData*> _user;
 | |
| 
 | |
| 	// _emojiStickersPack depends on _data.
 | |
| 	const std::unique_ptr<Stickers::EmojiPack> _emojiStickersPack;
 | |
| 	const std::unique_ptr<Stickers::DicePacks> _diceStickersPacks;
 | |
| 
 | |
| 	const std::unique_ptr<Support::Helper> _supportHelper;
 | |
| 
 | |
| 	std::shared_ptr<Data::CloudImageView> _selfUserpicView;
 | |
| 
 | |
| 	rpl::event_stream<bool> _termsLockChanges;
 | |
| 	std::unique_ptr<Window::TermsLock> _termsLock;
 | |
| 
 | |
| 	base::flat_set<not_null<Window::SessionController*>> _windows;
 | |
| 	base::Timer _saveSettingsTimer;
 | |
| 
 | |
| 	rpl::lifetime _lifetime;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Main
 | 
