mirror of
				https://github.com/telegramdesktop/tdesktop
				synced 2025-10-29 15:19:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.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 "mtproto/sender.h"
 | |
| 
 | |
| class ApiWrap;
 | |
| class PeerData;
 | |
| 
 | |
| namespace Main {
 | |
| class Session;
 | |
| } // namespace Main
 | |
| 
 | |
| namespace Api {
 | |
| 
 | |
| class Ringtones final {
 | |
| public:
 | |
| 	explicit Ringtones(not_null<ApiWrap*> api);
 | |
| 
 | |
| 	using Ids = std::vector<DocumentId>;
 | |
| 
 | |
| 	void requestList();
 | |
| 	void applyUpdate();
 | |
| 	void remove(DocumentId id);
 | |
| 
 | |
| 	void upload(
 | |
| 		const QString &filename,
 | |
| 		const QString &filemime,
 | |
| 		const QByteArray &content);
 | |
| 
 | |
| 	[[nodiscard]] const Ids &list() const;
 | |
| 	[[nodiscard]] rpl::producer<> listUpdates() const;
 | |
| 	[[nodiscard]] rpl::producer<QString> uploadFails() const;
 | |
| 	[[nodiscard]] rpl::producer<DocumentId> uploadDones() const;
 | |
| 
 | |
| 	[[nodiscard]] int64 maxSize() const;
 | |
| 	[[nodiscard]] int maxSavedCount() const;
 | |
| 	[[nodiscard]] crl::time maxDuration() const;
 | |
| 
 | |
| private:
 | |
| 	struct UploadedData {
 | |
| 		QString filename;
 | |
| 		QString filemime;
 | |
| 		QByteArray content;
 | |
| 	};
 | |
| 	void ready(const FullMsgId &msgId, const MTPInputFile &file);
 | |
| 
 | |
| 	const not_null<Main::Session*> _session;
 | |
| 	MTP::Sender _api;
 | |
| 
 | |
| 	base::flat_map<FullMsgId, UploadedData> _uploads;
 | |
| 	rpl::event_stream<QString> _uploadFails;
 | |
| 	rpl::event_stream<DocumentId> _uploadDones;
 | |
| 
 | |
| 	struct {
 | |
| 		uint64 hash = 0;
 | |
| 		Ids documents;
 | |
| 		rpl::event_stream<> updates;
 | |
| 		mtpRequestId requestId = 0;
 | |
| 	} _list;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace Api
 |