This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-cpp/src/api/get_stream.cpp

104 lines
3.1 KiB
C++
Raw Normal View History

2018-02-26 07:57:30 +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;
using std::cerr;
2018-12-04 11:26:28 +01:00
uint_fast16_t API::get_stream(const Mastodon::API::v1 &call,
const parametermap &parameters,
string &answer,
std::unique_ptr<Mastodon::API::http> &ptr)
2018-02-26 07:57:30 +01:00
{
string strcall = "";
switch (call)
{
case v1::streaming_user:
strcall = "/api/v1/streaming/user";
break;
case v1::streaming_public:
strcall = "/api/v1/streaming/public";
break;
case v1::streaming_public_local:
strcall = "/api/v1/streaming/public/local";
break;
2018-02-26 07:57:30 +01:00
case v1::streaming_hashtag:
strcall = "/api/v1/streaming/hashtag";
2018-02-26 07:57:30 +01:00
break;
case v1::streaming_list:
strcall = "/api/v1/streaming/list";
2018-02-26 07:57:30 +01:00
break;
default:
ttdebug << "ERROR: Invalid call.\n";
2018-02-28 22:37:30 +01:00
return 11;
2018-02-26 07:57:30 +01:00
break;
}
if (parameters.size() > 0)
{
strcall += maptostr(parameters);
}
return get_stream(strcall, answer, ptr);
}
2018-12-04 11:26:28 +01:00
uint_fast16_t API::get_stream(const Mastodon::API::v1 &call,
string &answer,
std::unique_ptr<Mastodon::API::http> &ptr)
{
parametermap p = {};
return get_stream(call, p, answer, ptr);
}
2018-12-04 11:26:28 +01:00
uint_fast16_t API::get_stream(const std::string &call, string &answer,
std::unique_ptr<http> &ptr)
{
2018-02-26 07:57:30 +01:00
ptr = std::make_unique<http>(*this, _instance, _access_token);
return ptr->request(http::method::GET_STREAM, call, answer);
2018-02-26 07:57:30 +01:00
}
// ↓↓ DEPRECATED ↓↓
2018-12-04 11:26:28 +01:00
uint_fast16_t API::get_stream(const Mastodon::API::v1 &call,
const string &argument,
string &answer,
std::unique_ptr<Mastodon::API::http> &ptr)
2018-02-26 07:57:30 +01:00
{
parametermap parameters;
2018-02-26 07:57:30 +01:00
// Emulate old behaviour
2018-02-26 07:57:30 +01:00
switch (call)
{
case v1::streaming_hashtag:
parameters["tag"] = { argument };
2018-02-26 07:57:30 +01:00
break;
case v1::streaming_list:
parameters["list"] = { argument };
2018-02-26 07:57:30 +01:00
break;
default:
ttdebug << "ERROR: Invalid call.\n";
2018-02-28 22:37:30 +01:00
return 11;
2018-02-26 07:57:30 +01:00
break;
}
return get_stream(call, parameters, answer, ptr);
2018-02-26 07:57:30 +01:00
}