mirror of
https://github.com/ars3niy/tdlib-purple
synced 2025-08-22 01:49:29 +00:00
54 lines
2.3 KiB
C++
54 lines
2.3 KiB
C++
#ifndef _FILE_TRANSFER_H
|
|
#define _FILE_TRANSFER_H
|
|
|
|
#include "account-data.h"
|
|
|
|
enum {
|
|
FILE_DOWNLOAD_PRIORITY = 1,
|
|
};
|
|
|
|
bool saveImage(int id, char **fileName);
|
|
void startDocumentUpload(ChatId chatId, const std::string &filename, PurpleXfer *xfer,
|
|
TdTransceiver &transceiver, TdAccountData &account,
|
|
TdTransceiver::ResponseCb response);
|
|
void uploadResponseError(PurpleXfer *xfer, const std::string &message, TdAccountData &account);
|
|
void startDocumentUploadProgress(ChatId chatId, PurpleXfer *xfer, const td::td_api::file &file,
|
|
TdTransceiver &transceiver, TdAccountData &account,
|
|
TdTransceiver::ResponseCb sendMessageResponse);
|
|
void downloadFileInline(int32_t fileId, ChatId chatId, TgMessageInfo &message,
|
|
const std::string &fileDescription,
|
|
td::td_api::object_ptr<td::td_api::file> thumbnail,
|
|
TdTransceiver &transceiver, TdAccountData &account);
|
|
void updateFileTransferProgress(const td::td_api::file &file, TdTransceiver &transceiver,
|
|
TdAccountData &account, TdTransceiver::ResponseCb sendMessageResponse);
|
|
|
|
void requestStandardDownload(ChatId chatId, const TgMessageInfo &message, const std::string &fileName,
|
|
const td::td_api::file &file, TdTransceiver &transceiver, TdAccountData &account);
|
|
std::string getDownloadPath(const td::td_api::object_ptr<td::td_api::Object> &downloadResponse);
|
|
|
|
unsigned getFileSize(const td::td_api::file &file);
|
|
unsigned getFileSizeKb(const td::td_api::file &file);
|
|
|
|
template<typename DocumentType>
|
|
std::string makeDocumentDescription(const DocumentType *document)
|
|
{
|
|
if (!document)
|
|
// Unlikely error message not worth translating
|
|
return "(faulty file)";
|
|
return document->file_name_ + " [" + document->mime_type_ + "]";
|
|
}
|
|
|
|
template<typename DocumentType>
|
|
std::string getFileName(const DocumentType *document)
|
|
{
|
|
return document->file_name_;
|
|
}
|
|
|
|
std::string getFileName(const td::td_api::voiceNote *document);
|
|
std::string getFileName(const td::td_api::videoNote *document);
|
|
|
|
std::string makeDocumentDescription(const td::td_api::voiceNote *document);
|
|
std::string makeDocumentDescription(const td::td_api::videoNote *document);
|
|
|
|
#endif
|