2019-05-14 01:03:05 +02:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2019-05-14 01:03:05 +02: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/net/NetType.h"
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2022-06-27 12:30:18 +02:00
|
|
|
#include "td/utils/Promise.h"
|
2019-05-14 01:03:05 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class Td;
|
|
|
|
|
|
|
|
class AutoDownloadSettings {
|
|
|
|
public:
|
|
|
|
int32 max_photo_file_size = 0;
|
2022-05-10 16:13:16 +02:00
|
|
|
int64 max_video_file_size = 0;
|
|
|
|
int64 max_other_file_size = 0;
|
2019-12-25 18:59:19 +01:00
|
|
|
int32 video_upload_bitrate = 0;
|
2019-05-14 01:03:05 +02:00
|
|
|
bool is_enabled = false;
|
|
|
|
bool preload_large_videos = false;
|
|
|
|
bool preload_next_audio = false;
|
|
|
|
bool use_less_data_for_calls = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
AutoDownloadSettings get_auto_download_settings(const td_api::object_ptr<td_api::autoDownloadSettings> &settings);
|
|
|
|
|
|
|
|
void get_auto_download_settings_presets(Td *td,
|
|
|
|
Promise<td_api::object_ptr<td_api::autoDownloadSettingsPresets>> &&promise);
|
|
|
|
|
|
|
|
void set_auto_download_settings(Td *td, NetType type, AutoDownloadSettings settings, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
} // namespace td
|