2018-01-24 18:52:24 +01:00
|
|
|
/* This file is part of mastodon-cpp.
|
|
|
|
* Copyright © 2018 tastytea <tastytea@tastytea.de>
|
2019-02-22 12:33:03 +01:00
|
|
|
*
|
2018-01-24 18:52:24 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2019-08-15 22:53:38 +02:00
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
2018-01-24 18:52:24 +01:00
|
|
|
* 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
|
2019-08-15 22:53:38 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-01-24 18:52:24 +01:00
|
|
|
*
|
2019-08-15 22:53:38 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2018-01-24 18:52:24 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
2019-02-22 11:35:06 +01:00
|
|
|
#include "debug.hpp"
|
2018-01-24 18:52:24 +01:00
|
|
|
#include "mastodon-cpp.hpp"
|
|
|
|
|
|
|
|
using namespace Mastodon;
|
|
|
|
|
2019-02-22 12:33:03 +01:00
|
|
|
return_call API::del(const Mastodon::API::v1 &call,
|
2019-04-12 01:10:33 +02:00
|
|
|
const parameters ¶ms)
|
2018-01-24 18:52:24 +01:00
|
|
|
{
|
|
|
|
string strcall = "";
|
2018-04-19 00:20:43 +02:00
|
|
|
string strid = "";
|
|
|
|
|
|
|
|
// The ID is part of the path
|
2019-04-20 00:39:52 +02:00
|
|
|
const parameters::const_iterator &it_id = params.find("id");
|
|
|
|
const parameters::const_iterator &it_aid = params.find("accountid");
|
|
|
|
if (it_id != params.end())
|
2018-04-19 00:20:43 +02:00
|
|
|
{
|
2019-04-20 00:39:52 +02:00
|
|
|
strid = it_id->values[0];
|
|
|
|
}
|
|
|
|
else if (it_aid != params.end())
|
|
|
|
{
|
|
|
|
strid = it_aid->values[0];
|
2018-04-19 00:20:43 +02:00
|
|
|
}
|
2018-01-24 18:52:24 +01:00
|
|
|
|
|
|
|
switch (call)
|
|
|
|
{
|
2019-04-19 04:39:46 +02:00
|
|
|
case v1::domain_blocks:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/domain_blocks";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case v1::lists_id:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/lists/" + strid;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case v1::lists_id_accounts:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/lists/" + strid + "/accounts";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case v1::statuses_id:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/statuses/" + strid;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case v1::push_subscription:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/push/subscription";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case v1::filters_id:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/filters/" + strid;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-20 00:39:52 +02:00
|
|
|
case v1::suggestions_accountid:
|
|
|
|
{
|
|
|
|
strcall = "/api/v1/suggestions/" + strid;
|
|
|
|
break;
|
|
|
|
}
|
2019-04-19 04:39:46 +02:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
ttdebug << "ERROR: Invalid argument.\n";
|
|
|
|
return { 22, "Invalid argument", 0, "" };
|
|
|
|
}
|
2018-01-24 18:52:24 +01:00
|
|
|
}
|
|
|
|
|
2019-04-12 01:10:33 +02:00
|
|
|
return del(strcall, params);
|
2018-04-19 00:20:43 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 01:10:33 +02:00
|
|
|
return_call API::del(const std::string &call, const parameters ¶ms)
|
2018-04-19 00:20:43 +02:00
|
|
|
{
|
|
|
|
|
2019-04-12 01:10:33 +02:00
|
|
|
return _http.request(http_method::DELETE, call, maptoformdata(params));
|
2018-01-24 18:52:24 +01:00
|
|
|
}
|