mastodonpp/src/instance.cpp

67 lines
2.1 KiB
C++
Raw Normal View History

2020-01-03 12:42:10 +01:00
/* This file is part of mastodonpp.
* Copyright © 2020 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "instance.hpp"
2020-01-05 11:06:50 +01:00
#include "log.hpp"
#include "return_types.hpp"
2020-01-03 12:42:10 +01:00
namespace mastodonpp
{
2020-01-05 20:10:54 +01:00
using std::stoull;
2020-01-03 12:42:10 +01:00
2020-01-06 09:11:32 +01:00
Instance::Instance(const string_view &hostname, const string_view &access_token)
: _hostname{hostname}
, _baseuri{"https://" + _hostname}
2020-01-06 09:11:32 +01:00
, _access_token{access_token}
2020-01-05 11:06:50 +01:00
, _max_chars{500}
{
try
{
2020-01-05 20:47:34 +01:00
debuglog << "Querying " << _hostname << " for max_toot_chars…\n";
2020-01-05 11:06:50 +01:00
const auto answer{make_request(http_method::GET,
_baseuri + "/api/v1/instance")};
2020-01-05 20:47:34 +01:00
if (!answer)
2020-01-05 11:06:50 +01:00
{
2020-01-05 20:47:34 +01:00
return;
}
_max_chars = [&answer]
{
auto &body{answer.body};
size_t pos_start{body.find("max_toot_chars")};
if (pos_start == string::npos)
2020-01-05 11:06:50 +01:00
{
2020-01-05 20:47:34 +01:00
debuglog << "max_toot_chars not found.\n";
return static_cast<uint64_t>(500);
}
pos_start = body.find(':', pos_start) + 1;
const size_t pos_end{body.find(',', pos_start)};
2020-01-05 11:06:50 +01:00
2020-01-05 20:47:34 +01:00
const auto max_toot_chars{body.substr(pos_start,
pos_end - pos_start)};
return static_cast<uint64_t>(stoull(max_toot_chars));
}();
debuglog << "Set _max_chars to: " << _max_chars << '\n';
2020-01-05 11:06:50 +01:00
}
catch (const std::exception &e)
{
debuglog << "Unexpected exception: " << e.what() << '\n';
}
}
2020-01-03 12:42:10 +01:00
} // namespace mastodonpp