mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
102 lines
2.2 KiB
C++
102 lines
2.2 KiB
C++
#include "providers/twitch/PubsubHelpers.hpp"
|
|
|
|
#include "providers/twitch/PubsubActions.hpp"
|
|
#include "providers/twitch/TwitchAccount.hpp"
|
|
#include "util/RapidjsonHelpers.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
const rapidjson::Value &getArgs(const rapidjson::Value &data)
|
|
{
|
|
if (!data.HasMember("args"))
|
|
{
|
|
throw std::runtime_error("Missing member args");
|
|
}
|
|
|
|
const auto &args = data["args"];
|
|
|
|
if (!args.IsArray())
|
|
{
|
|
throw std::runtime_error("args must be an array");
|
|
}
|
|
|
|
return args;
|
|
}
|
|
|
|
const rapidjson::Value &getMsgID(const rapidjson::Value &data)
|
|
{
|
|
if (!data.HasMember("msg_id"))
|
|
{
|
|
throw std::runtime_error("Missing member msg_id");
|
|
}
|
|
|
|
const auto &msgID = data["msg_id"];
|
|
|
|
return msgID;
|
|
}
|
|
|
|
bool getCreatedByUser(const rapidjson::Value &data, ActionUser &user)
|
|
{
|
|
return rj::getSafe(data, "created_by", user.name) &&
|
|
rj::getSafe(data, "created_by_user_id", user.id);
|
|
}
|
|
|
|
bool getTargetUser(const rapidjson::Value &data, ActionUser &user)
|
|
{
|
|
return rj::getSafe(data, "target_user_id", user.id);
|
|
}
|
|
|
|
rapidjson::Document createListenMessage(
|
|
const std::vector<std::string> &topicsVec,
|
|
std::shared_ptr<TwitchAccount> account)
|
|
{
|
|
rapidjson::Document msg(rapidjson::kObjectType);
|
|
auto &a = msg.GetAllocator();
|
|
|
|
rj::set(msg, "type", "LISTEN");
|
|
|
|
rapidjson::Value data(rapidjson::kObjectType);
|
|
|
|
if (account)
|
|
{
|
|
rj::set(data, "auth_token", account->getOAuthToken(), a);
|
|
}
|
|
|
|
rapidjson::Value topics(rapidjson::kArrayType);
|
|
for (const auto &topic : topicsVec)
|
|
{
|
|
rj::add(topics, topic, a);
|
|
}
|
|
|
|
rj::set(data, "topics", topics, a);
|
|
|
|
rj::set(msg, "data", data);
|
|
|
|
return msg;
|
|
}
|
|
|
|
rapidjson::Document createUnlistenMessage(
|
|
const std::vector<std::string> &topicsVec)
|
|
{
|
|
rapidjson::Document msg(rapidjson::kObjectType);
|
|
auto &a = msg.GetAllocator();
|
|
|
|
rj::set(msg, "type", "UNLISTEN");
|
|
|
|
rapidjson::Value data(rapidjson::kObjectType);
|
|
|
|
rapidjson::Value topics(rapidjson::kArrayType);
|
|
for (const auto &topic : topicsVec)
|
|
{
|
|
rj::add(topics, topic, a);
|
|
}
|
|
|
|
rj::set(data, "topics", topics, a);
|
|
|
|
rj::set(msg, "data", data);
|
|
|
|
return msg;
|
|
}
|
|
|
|
} // namespace chatterino
|