2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 02:37:11 +00:00
tdesktop/Telegram/SourceFiles/main/main_app_config.cpp

98 lines
2.3 KiB
C++
Raw Normal View History

2019-08-01 15:50:24 +01:00
/*
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
*/
#include "main/main_app_config.h"
2019-11-27 12:45:23 +03:00
#include "main/main_account.h"
2019-09-26 13:55:35 +03:00
#include "base/call_delayed.h"
2019-08-01 15:50:24 +01:00
#include "apiwrap.h"
namespace Main {
namespace {
2019-08-08 16:27:30 +01:00
constexpr auto kRefreshTimeout = 3600 * crl::time(1000);
2019-08-01 15:50:24 +01:00
} // namespace
2019-11-27 12:45:23 +03:00
AppConfig::AppConfig(not_null<Account*> account) : _account(account) {
account->mtpValue(
) | rpl::start_with_next([=](MTP::Instance *instance) {
if (instance) {
_api.emplace(instance);
refresh();
} else {
_api.reset();
_requestId = 0;
}
}, _lifetime);
2019-08-01 15:50:24 +01:00
refresh();
}
void AppConfig::refresh() {
2019-11-27 12:45:23 +03:00
if (_requestId || !_api) {
2019-08-01 15:50:24 +01:00
return;
}
2019-11-27 12:45:23 +03:00
_requestId = _api->request(MTPhelp_GetAppConfig(
2019-08-01 15:50:24 +01:00
)).done([=](const MTPJSONValue &result) {
_requestId = 0;
refreshDelayed();
if (result.type() == mtpc_jsonObject) {
for (const auto &element : result.c_jsonObject().vvalue().v) {
element.match([&](const MTPDjsonObjectValue &data) {
_data.emplace_or_assign(qs(data.vkey()), data.vvalue());
});
}
}
2019-11-27 12:45:23 +03:00
_refreshed.fire({});
2019-08-01 15:50:24 +01:00
}).fail([=](const RPCError &error) {
_requestId = 0;
refreshDelayed();
}).send();
}
void AppConfig::refreshDelayed() {
2019-11-27 12:45:23 +03:00
base::call_delayed(kRefreshTimeout, _account, [=] {
2019-08-01 15:50:24 +01:00
refresh();
});
}
2019-11-27 12:45:23 +03:00
rpl::producer<> AppConfig::refreshed() const {
return _refreshed.events();
}
template <typename Extractor>
auto AppConfig::getValue(const QString &key, Extractor &&extractor) const {
2019-08-01 15:50:24 +01:00
const auto i = _data.find(key);
2019-11-27 12:45:23 +03:00
return extractor((i != end(_data))
? i->second
: MTPJSONValue(MTP_jsonNull()));
}
double AppConfig::getDouble(const QString &key, double fallback) const {
return getValue(key, [&](const MTPJSONValue &value) {
return value.match([&](const MTPDjsonNumber &data) {
return data.vvalue().v;
}, [&](const auto &data) {
return fallback;
});
});
}
QString AppConfig::getString(
const QString &key,
const QString &fallback) const {
return getValue(key, [&](const MTPJSONValue &value) {
return value.match([&](const MTPDjsonString &data) {
return qs(data.vvalue());
}, [&](const auto &data) {
return fallback;
});
2019-08-01 15:50:24 +01:00
});
}
} // namespace Main