mastodonpp/include/connection.hpp

117 lines
3.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-08 12:56:16 +01:00
#include <variant>
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-08 12:56:16 +01:00
using std::variant;
/*!
* @brief An endpoint. Either API::endpoint_type or `std::string_view`.
*
* @since 0.1.0
*/
using endpoint_variant = variant<API::endpoint_type,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
/*!
2020-01-08 12:56:16 +01:00
* @brief Make a HTTP GET call with parameters.
*
* Example:
* @code
* auto answer{connection.get(mastodonpp::API::v1::accounts_id_followers,
* {
* {"id", "12"},
* {"limit", "10"}
* })};
* @endcode
*
* @param endpoint Endpoint as API::endpoint_type or `std::string_view`.
2020-01-08 12:56:16 +01:00
* @param parameters A map of parameters.
*
*
* @since 0.1.0
*/
2020-01-04 13:31:22 +01:00
[[nodiscard]]
2020-01-08 12:56:16 +01:00
answer_type get(const endpoint_variant &endpoint,
const parametermap &parameters);
/*!
* @brief Make a HTTP GET call.
2020-01-08 17:20:44 +01:00
*
2020-01-08 12:56:16 +01:00
* Example:
* @code
* auto answer{connection.get("/api/v1/instance")};
* @endcode
*
* @param endpoint Endpoint as API::endpoint_type or `std::string_view`.
*
* @since 0.1.0
*/
[[nodiscard]]
2020-01-08 12:56:16 +01:00
inline answer_type get(const endpoint_variant &endpoint)
{
return get(endpoint, {});
}
2020-01-08 17:16:15 +01:00
/*! @copydoc CURLWrapper::set_proxy(string_view)
*
* Sets also the proxy for the Instance you used to initialize this
* Connection.
*/
2020-01-08 17:38:27 +01:00
void set_proxy(string_view proxy);
2020-01-08 17:16:15 +01:00
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