mastodonpp/include/connection.hpp

82 lines
2.0 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/>.
*/
#ifndef MASTODONPP_CONNECTION_HPP
#define MASTODONPP_CONNECTION_HPP
2020-01-03 12:42:10 +01:00
#include "answer.hpp"
#include "api.hpp"
#include "curl_wrapper.hpp"
2020-01-03 12:42:10 +01:00
#include "instance.hpp"
#include <string>
2020-01-05 10:35:38 +01:00
#include <string_view>
2020-01-03 12:42:10 +01:00
namespace mastodonpp
{
using std::string;
2020-01-05 10:35:38 +01:00
using std::string_view;
2020-01-03 13:05:00 +01:00
/*!
* @brief Represents a connection to an instance. Used for requests.
2020-01-03 13:05:00 +01:00
*
* @since 0.1.0
2020-01-04 12:04:47 +01:00
*
* @headerfile connection.hpp mastodonpp/connection.hpp
2020-01-03 13:05:00 +01:00
*/
class Connection : public CURLWrapper
2020-01-03 12:42:10 +01:00
{
public:
2020-01-03 13:05:00 +01:00
/*!
* @brief Construct a new Connection object.
2020-01-03 13:05:00 +01:00
*
* @param instance An Instance with the access data.
*
* @since 0.1.0
*/
explicit Connection(Instance &instance);
2020-01-03 12:42:10 +01:00
/*!
* @brief Make a HTTP GET call.
*
* @param endpoint Endpoint as API::endpoint_type, for example:
* `mastodonpp::API::v1::instance`.
*
* @since 0.1.0
*/
2020-01-04 13:31:22 +01:00
[[nodiscard]]
2020-01-05 10:35:38 +01:00
answer_type get(const API::endpoint_type &endpoint);
/*!
* @brief Make a HTTP GET call.
*
* @param endpoint Endpoint as string, for example: "/api/v1/instance".
*
* @since 0.1.0
*/
[[nodiscard]]
2020-01-05 10:35:38 +01:00
answer_type get(const string_view &endpoint);
2020-01-03 12:42:10 +01:00
private:
Instance &_instance;
2020-01-05 10:35:38 +01:00
const string_view _baseuri;
2020-01-03 12:42:10 +01:00
};
} // namespace mastodonpp
#endif // MASTODONPP_CONNECTION_HPP