Restructure source and resource files (#46)

importantly, res is now res/res and css is now res/css
This commit is contained in:
Dylam De La Torre
2021-11-23 05:21:56 +01:00
committed by GitHub
parent d88079000a
commit a51a54bc59
216 changed files with 21 additions and 33 deletions

39
src/discord/invite.cpp Normal file
View File

@@ -0,0 +1,39 @@
#include "invite.hpp"
void from_json(const nlohmann::json &j, InviteChannelData &m) {
JS_D("id", m.ID);
JS_D("type", m.Type);
JS_ON("name", m.Name);
if (j.contains("recipients") && j.at("recipients").is_null()) {
m.RecipientUsernames.emplace();
for (const auto &x : j.at("recipients"))
m.RecipientUsernames->push_back(x.at("username").get<std::string>());
}
}
void from_json(const nlohmann::json &j, InviteData &m) {
JS_D("code", m.Code);
JS_O("guild", m.Guild);
JS_O("channel", m.Channel);
JS_O("inviter", m.Inviter);
JS_O("target_user", m.TargetUser);
JS_O("target_user_type", m.TargetUserType);
JS_O("approximate_presence_count", m.PresenceCount);
JS_O("approximate_member_count", m.MemberCount);
JS_O("uses", m.Uses);
JS_O("max_uses", m.MaxUses);
JS_O("max_age", m.MaxAge);
JS_O("temporary", m.IsTemporary);
JS_O("created_at", m.CreatedAt);
}
InviteChannelData::InviteChannelData(const ChannelData &c) {
ID = c.ID;
Type = c.Type;
Name = c.Name;
if (Type == ChannelType::GROUP_DM) {
RecipientUsernames.emplace();
for (const auto &r : c.GetDMRecipients())
RecipientUsernames->push_back(r.Username);
}
}