mirror of
https://github.com/brian8544/turtle-wow.git
synced 2025-01-05 22:34:35 +00:00
62 lines
1.9 KiB
C++
62 lines
1.9 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/dtemplate.h>
|
|
#include <dpp/discordevents.h>
|
|
#include <dpp/nlohmann/json.hpp>
|
|
|
|
using json = nlohmann::json;
|
|
|
|
namespace dpp {
|
|
|
|
dtemplate::dtemplate() : code(""), name(""), description(""), usage_count(0), creator_id(0), source_guild_id(0)
|
|
{
|
|
}
|
|
|
|
|
|
dtemplate& dtemplate::fill_from_json(nlohmann::json* j) {
|
|
code = string_not_null(j, "code");
|
|
name = string_not_null(j, "name");
|
|
description = string_not_null(j, "description");
|
|
usage_count = int32_not_null(j, "usage_count");
|
|
creator_id = snowflake_not_null(j, "creator_id");
|
|
created_at = ts_not_null(j, "created_at");
|
|
updated_at = ts_not_null(j, "updated_at");
|
|
source_guild_id = snowflake_not_null(j, "source_guild_id");
|
|
is_dirty = bool_not_null(j, "is_dirty");
|
|
return *this;
|
|
}
|
|
|
|
std::string dtemplate::build_json(bool with_id) const {
|
|
json j({
|
|
{"code", code},
|
|
{"name", name},
|
|
{"description", description},
|
|
{"usage_count", usage_count},
|
|
{"creator_id", creator_id},
|
|
{"updated_at", updated_at},
|
|
{"source_guild_id", source_guild_id,
|
|
"is_dirty", is_dirty}
|
|
});
|
|
return j.dump();
|
|
}
|
|
|
|
};
|