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/>.
|
|
|
|
*/
|
|
|
|
|
2020-01-05 09:38:13 +01:00
|
|
|
#ifndef MASTODONPP_CONNECTION_HPP
|
|
|
|
#define MASTODONPP_CONNECTION_HPP
|
2020-01-03 12:42:10 +01:00
|
|
|
|
2020-01-06 14:43:10 +01:00
|
|
|
#include "answer.hpp"
|
2020-01-04 11:38:58 +01:00
|
|
|
#include "api.hpp"
|
2020-01-04 18:11:24 +01:00
|
|
|
#include "curl_wrapper.hpp"
|
2020-01-03 12:42:10 +01:00
|
|
|
#include "instance.hpp"
|
2020-01-04 11:38:58 +01:00
|
|
|
|
|
|
|
#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
|
|
|
|
{
|
|
|
|
|
2020-01-04 11:38:58 +01:00
|
|
|
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;
|
|
|
|
|
2020-01-08 16:46:27 +01:00
|
|
|
/*!
|
|
|
|
* @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-04 11:38:58 +01:00
|
|
|
|
2020-01-03 13:05:00 +01:00
|
|
|
/*!
|
2020-01-05 09:38:13 +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
|
|
|
*
|
2020-01-05 09:38:13 +01:00
|
|
|
* @headerfile connection.hpp mastodonpp/connection.hpp
|
2020-01-03 13:05:00 +01:00
|
|
|
*/
|
2020-01-05 09:38:13 +01:00
|
|
|
class Connection : public CURLWrapper
|
2020-01-03 12:42:10 +01:00
|
|
|
{
|
|
|
|
public:
|
2020-01-03 13:05:00 +01:00
|
|
|
/*!
|
2020-01-05 09:38:13 +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
|
|
|
|
*/
|
2020-01-05 09:38:13 +01:00
|
|
|
explicit Connection(Instance &instance);
|
2020-01-03 12:42:10 +01:00
|
|
|
|
2020-01-04 11:38:58 +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
|
|
|
|
*
|
2020-01-08 16:46:27 +01:00
|
|
|
* @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.
|
2020-01-04 11:38:58 +01:00
|
|
|
*
|
2020-01-04 18:11:24 +01:00
|
|
|
*
|
2020-01-04 11:38:58 +01:00
|
|
|
* @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 ¶meters);
|
2020-01-04 11:38:58 +01:00
|
|
|
|
2020-01-04 18:11:24 +01:00
|
|
|
/*!
|
|
|
|
* @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
|
2020-01-04 18:11:24 +01:00
|
|
|
*
|
2020-01-08 16:46:27 +01:00
|
|
|
* @param endpoint Endpoint as API::endpoint_type or `std::string_view`.
|
2020-01-04 18:11:24 +01:00
|
|
|
*
|
|
|
|
* @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-04 18:11:24 +01:00
|
|
|
|
2020-01-08 21:27:27 +01:00
|
|
|
/*!
|
2020-01-08 21:56:54 +01:00
|
|
|
* @brief Copy new stream contents and delete the “original”.
|
|
|
|
*
|
|
|
|
* Note that the last event is not necessarily complete, it could happen
|
|
|
|
* that you are calling this function mid-transfer. You have to check the
|
|
|
|
* data integrity yourself.
|
2020-01-08 21:27:27 +01:00
|
|
|
*
|
|
|
|
* @since 0.1.0
|
|
|
|
*/
|
|
|
|
string get_new_stream_contents();
|
|
|
|
|
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
|
|
|
|
|
2020-01-05 09:38:13 +01:00
|
|
|
#endif // MASTODONPP_CONNECTION_HPP
|