mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-11-26 11:07:17 +01:00
72 lines
3.4 KiB
C++
72 lines
3.4 KiB
C++
/************************************************************************************
|
|
*
|
|
* D++, A Lightweight C++ library for Discord
|
|
*
|
|
* Copyright 2021 Craig Edwards and D++ contributors
|
|
* (https://github.com/brainboxdotcc/DPP/graphs/contributors)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
************************************************************************************/
|
|
#include <dpp/scheduled_event.h>
|
|
#include <dpp/restrequest.h>
|
|
|
|
namespace dpp {
|
|
|
|
void cluster::guild_events_get(snowflake guild_id, command_completion_event_t callback) {
|
|
rest_request_list<scheduled_event>(this, API_PATH "/guilds", std::to_string(guild_id), "/scheduled-events?with_user_count=true", m_get, "", callback);
|
|
}
|
|
|
|
void cluster::guild_event_users_get(snowflake guild_id, snowflake event_id, command_completion_event_t callback, uint8_t limit, snowflake before, snowflake after) {
|
|
std::string append = utility::make_url_parameters({
|
|
{"before", before},
|
|
{"after", after},
|
|
});
|
|
this->post_rest(API_PATH "/guilds", std::to_string(guild_id), "/scheduled-events/" + std::to_string(event_id) + "/users?with_member=true&limit=" + std::to_string(limit) + append, m_get, "", [this, callback, guild_id](json &j, const http_request_completion_t& http) {
|
|
if (callback) {
|
|
event_member_map users;
|
|
confirmation_callback_t e(this, confirmation(), http);
|
|
if (!e.is_error()) {
|
|
if (j.is_array()) {
|
|
for (auto & curr_user : j) {
|
|
event_member e;
|
|
e.user = user().fill_from_json(&(curr_user["user"]));
|
|
e.member = guild_member().fill_from_json(&(curr_user["user"]), guild_id, e.user.id);
|
|
e.guild_scheduled_event_id = snowflake_not_null(&curr_user, "guild_scheduled_event_id");
|
|
users[e.user.id] = e;
|
|
}
|
|
}
|
|
}
|
|
callback(confirmation_callback_t(this, users, http));
|
|
}
|
|
});
|
|
}
|
|
|
|
void cluster::guild_event_create(const scheduled_event& event, command_completion_event_t callback) {
|
|
rest_request<scheduled_event>(this, API_PATH "/guilds", std::to_string(event.guild_id), "/scheduled-events", m_post, event.build_json(false), callback);
|
|
}
|
|
|
|
void cluster::guild_event_delete(snowflake event_id, snowflake guild_id, command_completion_event_t callback) {
|
|
rest_request<confirmation>(this, API_PATH "/guilds", std::to_string(guild_id), "/scheduled-events/" + std::to_string(event_id), m_delete, "", callback);
|
|
}
|
|
|
|
void cluster::guild_event_edit(const scheduled_event& event, command_completion_event_t callback) {
|
|
rest_request<scheduled_event>(this, API_PATH "/guilds", std::to_string(event.guild_id), "/scheduled-events/" + std::to_string(event.id), m_patch, event.build_json(true), callback);
|
|
}
|
|
|
|
void cluster::guild_event_get(snowflake guild_id, snowflake event_id, command_completion_event_t callback) {
|
|
rest_request<scheduled_event>(this, API_PATH "/guilds", std::to_string(guild_id), "/scheduled-events/" + std::to_string(event_id) + "?with_user_count=true", m_get, "", callback);
|
|
}
|
|
|
|
};
|