2018-01-22 02:09:44 +01:00
|
|
|
/* This file is part of mastodon-cpp.
|
|
|
|
* Copyright © 2018 tastytea <tastytea@tastytea.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2018-02-22 03:04:15 +01:00
|
|
|
#include <curlpp/cURLpp.hpp>
|
2018-01-22 02:09:44 +01:00
|
|
|
#include "macros.hpp"
|
|
|
|
#include "mastodon-cpp.hpp"
|
|
|
|
|
|
|
|
using namespace Mastodon;
|
|
|
|
using std::string;
|
2018-01-24 18:52:24 +01:00
|
|
|
|
2018-01-22 02:09:44 +01:00
|
|
|
const std::uint16_t API::post(const Mastodon::API::v1 &call, string &answer)
|
|
|
|
{
|
|
|
|
const parametermap p;
|
|
|
|
return post(call, p, answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::uint16_t API::post(const Mastodon::API::v1 &call,
|
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
string strcall = "";
|
|
|
|
|
|
|
|
switch (call)
|
|
|
|
{
|
2018-01-26 00:24:00 +01:00
|
|
|
case v1::apps:
|
2018-01-22 02:09:44 +01:00
|
|
|
strcall = "/api/v1/apps";
|
|
|
|
break;
|
|
|
|
case v1::domain_blocks:
|
|
|
|
strcall = "/api/v1/domain_blocks";
|
|
|
|
break;
|
|
|
|
case v1::follows:
|
|
|
|
strcall = "/api/v1/follows";
|
|
|
|
break;
|
|
|
|
case v1::lists:
|
|
|
|
strcall = "/api/v1/lists";
|
|
|
|
break;
|
|
|
|
case v1::media:
|
|
|
|
strcall = "/api/v1/media";
|
|
|
|
break;
|
|
|
|
case v1::notifications_clear:
|
|
|
|
strcall = "/api/v1/notifications/clear";
|
|
|
|
break;
|
|
|
|
case v1::notifications_dismiss:
|
|
|
|
strcall = "/api/v1/notifications/dismiss";
|
|
|
|
break;
|
|
|
|
case v1::reports:
|
|
|
|
strcall = "/api/v1/reports";
|
|
|
|
break;
|
2018-01-22 04:45:12 +01:00
|
|
|
case v1::statuses:
|
|
|
|
strcall = "/api/v1/statuses";
|
|
|
|
break;
|
2018-01-22 02:09:44 +01:00
|
|
|
default:
|
|
|
|
ttdebug << "ERROR: Invalid call.\n";
|
2018-02-28 22:37:30 +01:00
|
|
|
return 11;
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _http.request_sync(http::method::POST, strcall,
|
|
|
|
maptoformdata(parameters), answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::uint16_t API::post(const Mastodon::API::v1 &call,
|
|
|
|
const string &argument, string &answer)
|
|
|
|
{
|
|
|
|
const parametermap p;
|
|
|
|
return post(call, argument, p, answer);
|
|
|
|
}
|
|
|
|
const std::uint16_t API::post(const Mastodon::API::v1 &call,
|
|
|
|
const string &argument,
|
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
string strcall = "";
|
2018-02-22 03:04:15 +01:00
|
|
|
const string argument_encoded = curlpp::escape(argument);
|
2018-01-22 02:09:44 +01:00
|
|
|
|
|
|
|
switch (call)
|
|
|
|
{
|
|
|
|
case v1::accounts_id_follow:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/follow";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::accounts_id_unfollow:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/unfollow";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::accounts_id_block:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/block";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::accounts_id_unblock:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/unblock";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::accounts_id_mute:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/mute";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::accounts_id_unmute:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/accounts/" + argument_encoded + "/unmute";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::follow_requests_id_authorize:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/folow_requests/" + argument_encoded + "/authorize";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::follow_requests_id_reject:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/folow_requests/" + argument_encoded + "/reject";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::lists_id_accounts:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/lists/" + argument_encoded + "/accounts";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_reblog:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/reblog";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_unreblog:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/unreblog";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_favourite:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/favourite";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_unfavourite:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/unfavourite";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_pin:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/pin";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_unpin:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/unpin";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_mute:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/mute";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
case v1::statuses_id_unmute:
|
2018-01-24 18:52:24 +01:00
|
|
|
strcall = "/api/v1/statuses/" + argument_encoded + "/unmute";
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ttdebug << "ERROR: Invalid call.\n";
|
2018-02-28 22:37:30 +01:00
|
|
|
return 11;
|
2018-01-22 02:09:44 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return _http.request_sync(http::method::POST, strcall,
|
|
|
|
maptoformdata(parameters), answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::uint16_t API::post(const std::string &call,
|
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
|
|
|
|
return _http.request_sync(http::method::POST, call,
|
|
|
|
maptoformdata(parameters), answer);
|
|
|
|
}
|