1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-06 06:22:42 +00:00
harbour-sailfin/core/src/dto/itemcounts.cpp
Henk Kalkwater 357ac89330
Fix sending of DeviceProfileInfo
Due to some errors within DeviceProfile and how nullables were
serialized, an invalid request was made and the
/Sessions/Capabilities/Full would give an 400 response back.

Besides that, ApiClient would generate a DeviceProfile before all
properties from QML were read. This has been fixed by implementing
QQmlParserStatus and only generating the device profile after all
properties are set.
2021-09-08 23:20:12 +02:00

201 lines
6.8 KiB
C++

/*
* Sailfin: a Jellyfin client written using Qt
* Copyright (C) 2021 Chris Josten and the Sailfin Contributors.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET
* OVERWRITTEN AT SOME POINT!
*
* If there is a bug in this file, please fix the code generator used to generate this file found in
* core/openapigenerator.d.
*
* This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that
* file with a newer file if needed instead of manually updating the files.
*/
#include <JellyfinQt/dto/itemcounts.h>
namespace Jellyfin {
namespace DTO {
ItemCounts::ItemCounts() {}
ItemCounts::ItemCounts(const ItemCounts &other) :
m_movieCount(other.m_movieCount),
m_seriesCount(other.m_seriesCount),
m_episodeCount(other.m_episodeCount),
m_artistCount(other.m_artistCount),
m_programCount(other.m_programCount),
m_trailerCount(other.m_trailerCount),
m_songCount(other.m_songCount),
m_albumCount(other.m_albumCount),
m_musicVideoCount(other.m_musicVideoCount),
m_boxSetCount(other.m_boxSetCount),
m_bookCount(other.m_bookCount),
m_itemCount(other.m_itemCount){}
void ItemCounts::replaceData(ItemCounts &other) {
m_movieCount = other.m_movieCount;
m_seriesCount = other.m_seriesCount;
m_episodeCount = other.m_episodeCount;
m_artistCount = other.m_artistCount;
m_programCount = other.m_programCount;
m_trailerCount = other.m_trailerCount;
m_songCount = other.m_songCount;
m_albumCount = other.m_albumCount;
m_musicVideoCount = other.m_musicVideoCount;
m_boxSetCount = other.m_boxSetCount;
m_bookCount = other.m_bookCount;
m_itemCount = other.m_itemCount;
}
ItemCounts ItemCounts::fromJson(QJsonObject source) {
ItemCounts instance;
instance.setFromJson(source);
return instance;
}
void ItemCounts::setFromJson(QJsonObject source) {
m_movieCount = Jellyfin::Support::fromJsonValue<qint32>(source["MovieCount"]);
m_seriesCount = Jellyfin::Support::fromJsonValue<qint32>(source["SeriesCount"]);
m_episodeCount = Jellyfin::Support::fromJsonValue<qint32>(source["EpisodeCount"]);
m_artistCount = Jellyfin::Support::fromJsonValue<qint32>(source["ArtistCount"]);
m_programCount = Jellyfin::Support::fromJsonValue<qint32>(source["ProgramCount"]);
m_trailerCount = Jellyfin::Support::fromJsonValue<qint32>(source["TrailerCount"]);
m_songCount = Jellyfin::Support::fromJsonValue<qint32>(source["SongCount"]);
m_albumCount = Jellyfin::Support::fromJsonValue<qint32>(source["AlbumCount"]);
m_musicVideoCount = Jellyfin::Support::fromJsonValue<qint32>(source["MusicVideoCount"]);
m_boxSetCount = Jellyfin::Support::fromJsonValue<qint32>(source["BoxSetCount"]);
m_bookCount = Jellyfin::Support::fromJsonValue<qint32>(source["BookCount"]);
m_itemCount = Jellyfin::Support::fromJsonValue<qint32>(source["ItemCount"]);
}
QJsonObject ItemCounts::toJson() const {
QJsonObject result;
result["MovieCount"] = Jellyfin::Support::toJsonValue<qint32>(m_movieCount);
result["SeriesCount"] = Jellyfin::Support::toJsonValue<qint32>(m_seriesCount);
result["EpisodeCount"] = Jellyfin::Support::toJsonValue<qint32>(m_episodeCount);
result["ArtistCount"] = Jellyfin::Support::toJsonValue<qint32>(m_artistCount);
result["ProgramCount"] = Jellyfin::Support::toJsonValue<qint32>(m_programCount);
result["TrailerCount"] = Jellyfin::Support::toJsonValue<qint32>(m_trailerCount);
result["SongCount"] = Jellyfin::Support::toJsonValue<qint32>(m_songCount);
result["AlbumCount"] = Jellyfin::Support::toJsonValue<qint32>(m_albumCount);
result["MusicVideoCount"] = Jellyfin::Support::toJsonValue<qint32>(m_musicVideoCount);
result["BoxSetCount"] = Jellyfin::Support::toJsonValue<qint32>(m_boxSetCount);
result["BookCount"] = Jellyfin::Support::toJsonValue<qint32>(m_bookCount);
result["ItemCount"] = Jellyfin::Support::toJsonValue<qint32>(m_itemCount);
return result;
}
qint32 ItemCounts::movieCount() const { return m_movieCount; }
void ItemCounts::setMovieCount(qint32 newMovieCount) {
m_movieCount = newMovieCount;
}
qint32 ItemCounts::seriesCount() const { return m_seriesCount; }
void ItemCounts::setSeriesCount(qint32 newSeriesCount) {
m_seriesCount = newSeriesCount;
}
qint32 ItemCounts::episodeCount() const { return m_episodeCount; }
void ItemCounts::setEpisodeCount(qint32 newEpisodeCount) {
m_episodeCount = newEpisodeCount;
}
qint32 ItemCounts::artistCount() const { return m_artistCount; }
void ItemCounts::setArtistCount(qint32 newArtistCount) {
m_artistCount = newArtistCount;
}
qint32 ItemCounts::programCount() const { return m_programCount; }
void ItemCounts::setProgramCount(qint32 newProgramCount) {
m_programCount = newProgramCount;
}
qint32 ItemCounts::trailerCount() const { return m_trailerCount; }
void ItemCounts::setTrailerCount(qint32 newTrailerCount) {
m_trailerCount = newTrailerCount;
}
qint32 ItemCounts::songCount() const { return m_songCount; }
void ItemCounts::setSongCount(qint32 newSongCount) {
m_songCount = newSongCount;
}
qint32 ItemCounts::albumCount() const { return m_albumCount; }
void ItemCounts::setAlbumCount(qint32 newAlbumCount) {
m_albumCount = newAlbumCount;
}
qint32 ItemCounts::musicVideoCount() const { return m_musicVideoCount; }
void ItemCounts::setMusicVideoCount(qint32 newMusicVideoCount) {
m_musicVideoCount = newMusicVideoCount;
}
qint32 ItemCounts::boxSetCount() const { return m_boxSetCount; }
void ItemCounts::setBoxSetCount(qint32 newBoxSetCount) {
m_boxSetCount = newBoxSetCount;
}
qint32 ItemCounts::bookCount() const { return m_bookCount; }
void ItemCounts::setBookCount(qint32 newBookCount) {
m_bookCount = newBookCount;
}
qint32 ItemCounts::itemCount() const { return m_itemCount; }
void ItemCounts::setItemCount(qint32 newItemCount) {
m_itemCount = newItemCount;
}
} // NS DTO
namespace Support {
using ItemCounts = Jellyfin::DTO::ItemCounts;
template <>
ItemCounts fromJsonValue(const QJsonValue &source, convertType<ItemCounts>) {
if (!source.isObject()) throw ParseException("Expected JSON Object");
return ItemCounts::fromJson(source.toObject());
}
template<>
QJsonValue toJsonValue(const ItemCounts &source, convertType<ItemCounts>) {
return source.toJson();
}
} // NS DTO
} // NS Jellyfin