2018-01-24 18:52:24 +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 "macros.hpp"
|
|
|
|
#include "mastodon-cpp.hpp"
|
|
|
|
|
|
|
|
using namespace Mastodon;
|
|
|
|
|
2018-04-02 01:47:44 +02:00
|
|
|
const uint_fast16_t API::put(const Mastodon::API::v1 &call,
|
2018-01-24 18:52:24 +01:00
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
string strcall = "";
|
2018-04-19 00:20:43 +02:00
|
|
|
string strid = "";
|
|
|
|
|
|
|
|
// The ID is part of the path
|
|
|
|
const auto &it = parameters.find("id");
|
|
|
|
if (it != parameters.end())
|
|
|
|
{
|
|
|
|
strid = it->second[0];
|
|
|
|
}
|
2018-01-24 18:52:24 +01:00
|
|
|
|
|
|
|
switch (call)
|
|
|
|
{
|
|
|
|
case v1::lists_id:
|
2018-04-19 00:20:43 +02:00
|
|
|
strcall = "/api/v1/lists/" + strid;
|
|
|
|
break;
|
|
|
|
case v1::media_id:
|
|
|
|
strcall = "/api/v1/media/" + strid;
|
2018-01-24 18:52:24 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ttdebug << "ERROR: Invalid call.\n";
|
2018-02-28 22:37:30 +01:00
|
|
|
return 11;
|
2018-01-24 18:52:24 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-04-19 00:20:43 +02:00
|
|
|
return put(strcall, parameters, answer);
|
2018-01-24 18:52:24 +01:00
|
|
|
}
|
|
|
|
|
2018-04-02 01:47:44 +02:00
|
|
|
const uint_fast16_t API::put(const string &call,
|
2018-01-24 18:52:24 +01:00
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
|
2018-03-13 14:37:44 +01:00
|
|
|
return _http.request(http::method::PUT, call,
|
|
|
|
maptoformdata(parameters), answer);
|
2018-01-24 18:52:24 +01:00
|
|
|
}
|
2018-04-19 00:20:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
// ↓↓ DEPRECATED ↓↓
|
|
|
|
const uint_fast16_t API::put(const Mastodon::API::v1 &call,
|
|
|
|
const string &argument,
|
|
|
|
const parametermap ¶meters, string &answer)
|
|
|
|
{
|
|
|
|
parametermap newparameters = parameters;
|
|
|
|
|
|
|
|
// Emulate old behaviour
|
|
|
|
switch (call)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
newparameters["id"] = { argument };
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return put(call, newparameters, answer);
|
|
|
|
}
|