2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01: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
|
|
|
|
|
|
|
|
#include "td/telegram/files/FileId.h"
|
|
|
|
#include "td/telegram/SecretInputMedia.h"
|
2021-10-27 16:32:09 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2022-02-07 20:41:07 +01:00
|
|
|
#include "td/utils/FlatHashMap.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
class Td;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
class VoiceNotesManager {
|
|
|
|
public:
|
|
|
|
explicit VoiceNotesManager(Td *td);
|
|
|
|
|
2018-09-27 20:14:32 +02:00
|
|
|
int32 get_voice_note_duration(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-08-28 13:16:29 +02:00
|
|
|
tl_object_ptr<td_api::voiceNote> get_voice_note_object(FileId file_id) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void create_voice_note(FileId file_id, string mime_type, int32 duration, string waveform, bool replace);
|
|
|
|
|
|
|
|
tl_object_ptr<telegram_api::InputMedia> get_input_media(FileId file_id,
|
2018-01-30 18:06:54 +01:00
|
|
|
tl_object_ptr<telegram_api::InputFile> input_file) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
SecretInputMedia get_secret_input_media(FileId voice_file_id,
|
|
|
|
tl_object_ptr<telegram_api::InputEncryptedFile> input_file,
|
|
|
|
const string &caption) const;
|
|
|
|
|
|
|
|
FileId dup_voice_note(FileId new_id, FileId old_id);
|
|
|
|
|
2021-08-26 17:50:28 +02:00
|
|
|
void merge_voice_notes(FileId new_id, FileId old_id, bool can_delete_old);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class StorerT>
|
|
|
|
void store_voice_note(FileId file_id, StorerT &storer) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2019-02-21 18:54:20 +01:00
|
|
|
template <class ParserT>
|
|
|
|
FileId parse_voice_note(ParserT &parser);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
class VoiceNote {
|
|
|
|
public:
|
|
|
|
string mime_type;
|
|
|
|
int32 duration = 0;
|
|
|
|
string waveform;
|
|
|
|
|
|
|
|
FileId file_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
const VoiceNote *get_voice_note(FileId file_id) const;
|
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
FileId on_get_voice_note(unique_ptr<VoiceNote> new_voice_note, bool replace);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
Td *td_;
|
2022-02-07 20:41:07 +01:00
|
|
|
FlatHashMap<FileId, unique_ptr<VoiceNote>, FileIdHash> voice_notes_;
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|