| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * Copyright (c) 2023 Dennis Sädtler <[email protected]>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- #pragma once
- #include <string>
- #include <optional>
- #include <nlohmann/json.hpp>
- /* Ubuntu 22.04 be damned. */
- #ifndef NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT
- #define NLOHMANN_JSON_FROM_WITH_DEFAULT(v1) \
- nlohmann_json_t.v1 = \
- nlohmann_json_j.value(#v1, nlohmann_json_default_obj.v1);
- #define NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(Type, ...) \
- friend void to_json(nlohmann::json &nlohmann_json_j, \
- const Type &nlohmann_json_t) \
- { \
- NLOHMANN_JSON_EXPAND( \
- NLOHMANN_JSON_PASTE(NLOHMANN_JSON_TO, __VA_ARGS__)) \
- } \
- friend void from_json(const nlohmann::json &nlohmann_json_j, \
- Type &nlohmann_json_t) \
- { \
- Type nlohmann_json_default_obj; \
- NLOHMANN_JSON_EXPAND(NLOHMANN_JSON_PASTE( \
- NLOHMANN_JSON_FROM_WITH_DEFAULT, __VA_ARGS__)) \
- }
- #endif
- /*
- * Support for (de-)serialising std::optional
- * Adapted from https://github.com/nlohmann/json/issues/1749#issuecomment-1555093802
- */
- template<typename T> struct nlohmann::adl_serializer<std::optional<T>> {
- static std::optional<T> from_json(const json &json)
- {
- return json.is_null() ? std::nullopt
- : std::optional{json.get<T>()};
- }
- static void to_json(json &json, std::optional<T> t)
- {
- if (t)
- json = *t;
- else
- json = nullptr;
- }
- };
- struct WhatsNewPlatforms {
- bool windows = false;
- bool macos = false;
- bool linux = false;
- NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(WhatsNewPlatforms, windows,
- macos, linux)
- };
- struct WhatsNewItem {
- /* Target OBS version (patch is ignored) */
- std::string version;
- /* Beta/RC release to target */
- int Beta = 0;
- int RC = 0;
- /* URL of webpage to be displayed */
- std::string url;
- /* Increment for this version's item */
- int increment = 0;
- /* Optional OS filter */
- std::optional<WhatsNewPlatforms> os = std::nullopt;
- NLOHMANN_DEFINE_TYPE_INTRUSIVE_WITH_DEFAULT(WhatsNewItem, version, Beta,
- RC, url, increment, os)
- };
- using WhatsNewList = std::vector<WhatsNewItem>;
|