From a51a54bc5979a2491f152abc47ad54e6b63f27c8 Mon Sep 17 00:00:00 2001 From: Dylam De La Torre Date: Tue, 23 Nov 2021 05:21:56 +0100 Subject: Restructure source and resource files (#46) importantly, res is now res/res and css is now res/css --- src/discord/invite.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/discord/invite.cpp (limited to 'src/discord/invite.cpp') diff --git a/src/discord/invite.cpp b/src/discord/invite.cpp new file mode 100644 index 0000000..63043a1 --- /dev/null +++ b/src/discord/invite.cpp @@ -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()); + } +} + +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); + } +} -- cgit v1.2.3