2021-03-26 20:27:35 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
#ifndef JELLYFIN_VIEWMODEL_ITEMMODEL_H
|
|
|
|
#define JELLYFIN_VIEWMODEL_ITEMMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QObject>
|
2021-03-28 02:00:00 +00:00
|
|
|
#include <QScopedPointer>
|
2021-03-26 20:27:35 +00:00
|
|
|
|
|
|
|
#include "../dto/baseitemdto.h"
|
|
|
|
#include "../dto/baseitemdtoqueryresult.h"
|
|
|
|
#include "../loader/http/getuserviews.h"
|
|
|
|
#include "../loader/requesttypes.h"
|
|
|
|
#include "../model/item.h"
|
2021-08-17 14:43:17 +00:00
|
|
|
#include "../viewmodel/item.h"
|
2021-03-26 20:27:35 +00:00
|
|
|
#include "../apimodel.h"
|
2021-03-29 12:27:37 +00:00
|
|
|
#include "modelstatus.h"
|
|
|
|
#include "propertyhelper.h"
|
2021-03-26 20:27:35 +00:00
|
|
|
|
|
|
|
// Jellyfin Forward Read/Write Property
|
|
|
|
#define FWDPROP(type, propName, propSetName) JF_FWD_RW_PROP(type, propName, propSetName, this->m_parameters)
|
|
|
|
|
|
|
|
namespace Jellyfin {
|
|
|
|
|
|
|
|
namespace ViewModel {
|
|
|
|
|
|
|
|
// JellyFinRoleName
|
|
|
|
#define JFRN(name) {RoleNames::name, #name}
|
|
|
|
|
|
|
|
// This file contains all models that expose a Model::Item
|
|
|
|
|
2021-03-29 21:48:16 +00:00
|
|
|
/**
|
|
|
|
* @brief Class intended for models which have a mandatory userId property, which can be extracted from the
|
|
|
|
* ApiClient.
|
|
|
|
*/
|
|
|
|
template <class T, class D, class R, class P>
|
|
|
|
class AbstractUserParameterLoader : public LoaderModelLoader<T, D, R, P> {
|
|
|
|
public:
|
|
|
|
explicit AbstractUserParameterLoader(Support::Loader<R, P> *loader, QObject *parent = nullptr)
|
|
|
|
: LoaderModelLoader<T, D, R, P>(loader, parent) {
|
|
|
|
this->connect(this, &BaseModelLoader::apiClientChanged, this, &AbstractUserParameterLoader<T, D, R, P>::apiClientChanged);
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
virtual bool canReload() const override {
|
|
|
|
return BaseModelLoader::canReload() && !this->m_parameters.userId().isNull();
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
void apiClientChanged(ApiClient *newApiClient) {
|
|
|
|
if (this->m_apiClient != nullptr) {
|
|
|
|
this->disconnect(this->m_apiClient, &ApiClient::userIdChanged, this, &AbstractUserParameterLoader<T, D, R, P>::userIdChanged);
|
|
|
|
}
|
|
|
|
if (newApiClient != nullptr) {
|
|
|
|
this->connect(newApiClient, &ApiClient::userIdChanged, this, &AbstractUserParameterLoader<T, D, R, P>::userIdChanged);
|
|
|
|
if (!newApiClient->userId().isNull()) {
|
|
|
|
this->m_parameters.setUserId(newApiClient->userId());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void userIdChanged(const QString &newUserId) {
|
|
|
|
this->m_parameters.setUserId(newUserId);
|
|
|
|
this->autoReloadIfNeeded();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the views of an user, such as "Videos", "Music" and so on.
|
|
|
|
*/
|
|
|
|
using UserViewsLoaderBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, DTO::BaseItemDtoQueryResult, Jellyfin::Loader::GetUserViewsParams>;
|
2021-03-26 20:27:35 +00:00
|
|
|
class UserViewsLoader : public UserViewsLoaderBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit UserViewsLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
FWDPROP(bool, includeExternalContent, IncludeExternalContent)
|
|
|
|
FWDPROP(bool, includeHidden, IncludeHidden)
|
|
|
|
FWDPROP(QStringList, presetViews, PresetViews)
|
|
|
|
};
|
|
|
|
|
2021-03-29 21:48:16 +00:00
|
|
|
using LatestMediaBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, QList<DTO::BaseItemDto>, Jellyfin::Loader::GetLatestMediaParams>;
|
|
|
|
class LatestMediaLoader : public LatestMediaBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LatestMediaLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
// Optional
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ImageTypeClass::Value>, enableImageTypes, EnableImageTypes)
|
|
|
|
FWDPROP(bool, enableImages, EnableImages)
|
|
|
|
FWDPROP(bool, enableUserData, EnableUserData)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFieldsClass::Value>, fields, Fields)
|
|
|
|
FWDPROP(bool, groupItems, GroupItems)
|
|
|
|
FWDPROP(qint32, imageTypeLimit, ImageTypeLimit)
|
|
|
|
FWDPROP(QStringList, includeItemTypes, IncludeItemTypes)
|
|
|
|
FWDPROP(bool, isPlayed, IsPlayed)
|
|
|
|
FWDPROP(QString, parentId, ParentId)
|
|
|
|
};
|
|
|
|
|
|
|
|
using UserItemsLoaderBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, DTO::BaseItemDtoQueryResult, Jellyfin::Loader::GetItemsByUserIdParams>;
|
2021-03-26 20:27:35 +00:00
|
|
|
class UserItemsLoader : public UserItemsLoaderBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit UserItemsLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
FWDPROP(QString, adjacentTo, AdjacentTo)
|
|
|
|
FWDPROP(QStringList, albumArtistIds, AlbumArtistIds)
|
|
|
|
FWDPROP(QStringList, albumIds, AlbumIds)
|
|
|
|
FWDPROP(QStringList, albums, Albums)
|
|
|
|
FWDPROP(QStringList, artistIds, ArtistIds)
|
|
|
|
FWDPROP(QStringList, artists, Artists)
|
2021-03-29 21:48:16 +00:00
|
|
|
FWDPROP(bool, collapseBoxSetItems, CollapseBoxSetItems)
|
|
|
|
FWDPROP(QStringList, contributingArtistIds, ContributingArtistIds)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ImageTypeClass::Value>, enableImageTypes, EnableImageTypes);
|
|
|
|
FWDPROP(bool, enableImages, EnableImages)
|
|
|
|
FWDPROP(bool, enableTotalRecordCount, EnableTotalRecordCount)
|
|
|
|
FWDPROP(bool, enableUserData, EnableUserData)
|
|
|
|
FWDPROP(QStringList, excludeArtistIds, ExcludeArtistIds)
|
|
|
|
FWDPROP(QStringList, excludeItemIds, ExcludeItemIds)
|
|
|
|
FWDPROP(QStringList, excludeItemTypes, ExcludeItemTypes)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::LocationTypeClass::Value>, excludeLocationTypes, ExcludeLocationTypes)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFieldsClass::Value>, fields, Fields)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFilterClass::Value>, filters, Filters)
|
2021-08-11 21:35:33 +00:00
|
|
|
FWDPROP(QStringList, genreIds, GenreIds)
|
|
|
|
FWDPROP(QStringList, genres, Genres)
|
|
|
|
FWDPROP(bool, hasImdbId, HasImdbId)
|
|
|
|
FWDPROP(bool, hasOfficialRating, HasOfficialRating)
|
|
|
|
FWDPROP(bool, hasOverview, HasOverview)
|
|
|
|
FWDPROP(bool, hasParentalRating, HasParentalRating)
|
|
|
|
FWDPROP(bool, hasSpecialFeature, HasSpecialFeature)
|
|
|
|
FWDPROP(bool, hasSubtitles, HasSubtitles)
|
|
|
|
FWDPROP(bool, hasThemeSong, HasThemeSong)
|
|
|
|
FWDPROP(bool, hasThemeVideo, HasThemeVideo)
|
|
|
|
FWDPROP(bool, hasTmdbId, HasTmdbId)
|
|
|
|
FWDPROP(bool, hasTrailer, HasTrailer)
|
|
|
|
FWDPROP(bool, hasTvdbId, HasTvdbId)
|
|
|
|
FWDPROP(QStringList, ids, Ids)
|
|
|
|
FWDPROP(qint32, imageTypeLimit, ImageTypeLimit)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ImageTypeClass::Value>, imageTypes, ImageTypes)
|
|
|
|
FWDPROP(QStringList, includeItemTypes, IncludeItemTypes)
|
|
|
|
FWDPROP(bool, is3D, Is3D)
|
|
|
|
FWDPROP(bool, is4K, Is4K)
|
|
|
|
FWDPROP(bool, isFavorite, IsFavorite)
|
|
|
|
FWDPROP(bool, isHd, IsHd)
|
|
|
|
FWDPROP(bool, isLocked, IsLocked)
|
|
|
|
FWDPROP(bool, isMissing, IsMissing)
|
|
|
|
FWDPROP(bool, isPlaceHolder, IsPlaceHolder)
|
|
|
|
FWDPROP(bool, isPlayed, IsPlayed)
|
|
|
|
FWDPROP(bool, isUnaired, IsUnaired)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::LocationTypeClass::Value>, locationTypes, LocationTypes)
|
|
|
|
FWDPROP(qint32, maxHeight, MaxHeight)
|
|
|
|
FWDPROP(QString, maxOfficialRating, MaxOfficialRating)
|
|
|
|
FWDPROP(QDateTime, maxPremiereDate, MaxPremiereDate)
|
|
|
|
FWDPROP(qint32, maxWidth, MaxWidth)
|
|
|
|
FWDPROP(QStringList, mediaTypes, MediaTypes)
|
|
|
|
FWDPROP(qint32, minHeight, MinHeight)
|
|
|
|
FWDPROP(QString, minOfficialRating, MinOfficialRating)
|
|
|
|
FWDPROP(QDateTime, minPremiereDate, MinPremiereDate)
|
|
|
|
FWDPROP(qint32, minWidth, MinWidth)
|
|
|
|
FWDPROP(QString, sortBy, SortBy)
|
|
|
|
FWDPROP(QString, sortOrder, SortOrder)
|
|
|
|
FWDPROP(QStringList, tags, Tags)
|
|
|
|
FWDPROP(QList<qint32>, years, Years)
|
2021-03-29 21:48:16 +00:00
|
|
|
|
|
|
|
FWDPROP(QString, parentId, ParentId)
|
2021-03-26 20:27:35 +00:00
|
|
|
FWDPROP(bool, recursive, Recursive)
|
2021-08-11 21:35:33 +00:00
|
|
|
FWDPROP(QString, searchTerm, SearchTerm)
|
2021-03-26 20:27:35 +00:00
|
|
|
//FWDPROP(bool, collapseBoxSetItems)
|
|
|
|
};
|
2021-03-29 21:48:16 +00:00
|
|
|
|
2021-08-11 21:35:33 +00:00
|
|
|
using ResumeItemsLoaderBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, DTO::BaseItemDtoQueryResult, Jellyfin::Loader::GetResumeItemsParams>;
|
|
|
|
class ResumeItemsLoader : public ResumeItemsLoaderBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ResumeItemsLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ImageTypeClass::Value>, enableImageTypes, EnableImageTypes);
|
|
|
|
FWDPROP(bool, enableImages, EnableImages)
|
|
|
|
FWDPROP(bool, enableTotalRecordCount, EnableTotalRecordCount)
|
|
|
|
FWDPROP(bool, enableUserData, EnableUserData)
|
|
|
|
FWDPROP(QStringList, excludeItemTypes, ExcludeItemTypes)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFieldsClass::Value>, fields, Fields)
|
|
|
|
FWDPROP(qint32, imageTypeLimit, ImageTypeLimit)
|
|
|
|
FWDPROP(QStringList, includeItemTypes, IncludeItemTypes)
|
|
|
|
FWDPROP(QStringList, mediaTypes, MediaTypes)
|
|
|
|
FWDPROP(QString, parentId, ParentId)
|
|
|
|
FWDPROP(QString, searchTerm, SearchTerm)
|
|
|
|
};
|
|
|
|
|
|
|
|
using ShowSeasonsLoaderBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, DTO::BaseItemDtoQueryResult, Jellyfin::Loader::GetSeasonsParams>;
|
|
|
|
class ShowSeasonsLoader : public ShowSeasonsLoaderBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ShowSeasonsLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
FWDPROP(QString, seriesId, SeriesId)
|
|
|
|
FWDPROP(QString, adjacentTo, AdjacentTo)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ImageTypeClass::Value>, enableImageTypes, EnableImageTypes)
|
|
|
|
FWDPROP(bool, enableImages, EnableImages)
|
|
|
|
FWDPROP(bool, enableUserData, EnableUserData)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFieldsClass::Value>, fields, Fields)
|
|
|
|
FWDPROP(qint32, imageTypeLimit, ImageTypeLimit)
|
|
|
|
FWDPROP(bool, isMissing, IsMissing)
|
|
|
|
FWDPROP(bool, isSpecialSeason, IsSpecialSeason)
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
using ShowEpisodesLoaderBase = AbstractUserParameterLoader<Model::Item, DTO::BaseItemDto, DTO::BaseItemDtoQueryResult, Jellyfin::Loader::GetEpisodesParams>;
|
|
|
|
class ShowEpisodesLoader : public ShowEpisodesLoaderBase {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ShowEpisodesLoader(QObject *parent = nullptr);
|
|
|
|
|
|
|
|
FWDPROP(QString, seriesId, SeriesId)
|
|
|
|
FWDPROP(QString, adjacentTo, AdjacentTo)
|
|
|
|
FWDPROP(bool, enableImages, EnableImages)
|
|
|
|
FWDPROP(bool, enableUserData, EnableUserData)
|
|
|
|
FWDPROP(QList<Jellyfin::DTO::ItemFieldsClass::Value>, fields, Fields)
|
|
|
|
FWDPROP(qint32, imageTypeLimit, ImageTypeLimit)
|
|
|
|
FWDPROP(bool, isMissing, IsMissing)
|
|
|
|
FWDPROP(qint32, season, Season)
|
|
|
|
FWDPROP(QString, seasonId, SeasonId)
|
|
|
|
FWDPROP(QString, sortBy, SortBy)
|
|
|
|
FWDPROP(QString, startItemId, StartItemId)
|
|
|
|
};
|
2021-03-29 21:48:16 +00:00
|
|
|
|
|
|
|
|
2021-03-26 20:27:35 +00:00
|
|
|
/**
|
|
|
|
* @brief Base class for each model that works with items.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ItemModel : public ApiModel<Model::Item> {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum RoleNames {
|
|
|
|
jellyfinId = Qt::UserRole + 1,
|
|
|
|
name,
|
|
|
|
originalTitle,
|
|
|
|
serverId,
|
|
|
|
etag,
|
|
|
|
sourceType,
|
|
|
|
playlistItemId,
|
|
|
|
dateCreated,
|
|
|
|
dateLastMediaAdded,
|
2021-03-29 21:48:16 +00:00
|
|
|
extraType,
|
|
|
|
|
|
|
|
// Hand-picked, important ones
|
2021-05-21 13:46:30 +00:00
|
|
|
imageTags,
|
2021-07-31 13:06:17 +00:00
|
|
|
imageBlurHashes,
|
|
|
|
mediaType,
|
|
|
|
type,
|
|
|
|
collectionType,
|
2021-08-11 21:35:33 +00:00
|
|
|
indexNumber,
|
|
|
|
runTimeTicks,
|
|
|
|
artists,
|
|
|
|
isFolder,
|
|
|
|
parentIndexNumber,
|
2021-08-17 14:43:17 +00:00
|
|
|
userDataRating,
|
|
|
|
userDataPlayedPercentage,
|
|
|
|
userDataUnplayedItemCount,
|
|
|
|
userDataPlaybackPositionTicks,
|
|
|
|
userDataPlayCount,
|
|
|
|
userDataFavorite,
|
|
|
|
userDataLikes,
|
|
|
|
userDataLastPlayedDate,
|
|
|
|
userDataPlayed,
|
|
|
|
userDataKey,
|
2021-05-21 13:46:30 +00:00
|
|
|
|
|
|
|
jellyfinExtendModelAfterHere = Qt::UserRole + 300 // Should be enough for now
|
2021-03-26 20:27:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
explicit ItemModel (QObject *parent = nullptr);
|
|
|
|
|
2021-05-21 13:46:30 +00:00
|
|
|
virtual QHash<int, QByteArray> roleNames() const override {
|
2021-03-26 20:27:35 +00:00
|
|
|
return {
|
|
|
|
JFRN(jellyfinId),
|
|
|
|
JFRN(name),
|
|
|
|
JFRN(originalTitle),
|
|
|
|
JFRN(serverId),
|
|
|
|
JFRN(etag),
|
|
|
|
JFRN(sourceType),
|
|
|
|
JFRN(playlistItemId),
|
|
|
|
JFRN(dateCreated),
|
|
|
|
JFRN(dateLastMediaAdded),
|
2021-03-29 21:48:16 +00:00
|
|
|
JFRN(extraType),
|
|
|
|
// Handpicked, important ones
|
|
|
|
JFRN(imageTags),
|
2021-07-31 13:06:17 +00:00
|
|
|
JFRN(imageBlurHashes),
|
|
|
|
JFRN(mediaType),
|
|
|
|
JFRN(type),
|
|
|
|
JFRN(collectionType),
|
2021-08-11 21:35:33 +00:00
|
|
|
JFRN(indexNumber),
|
|
|
|
JFRN(runTimeTicks),
|
|
|
|
JFRN(artists),
|
|
|
|
JFRN(isFolder),
|
|
|
|
JFRN(parentIndexNumber),
|
2021-08-17 14:43:17 +00:00
|
|
|
JFRN(userDataRating),
|
|
|
|
JFRN(userDataPlayedPercentage),
|
|
|
|
JFRN(userDataUnplayedItemCount),
|
|
|
|
JFRN(userDataPlaybackPositionTicks),
|
|
|
|
JFRN(userDataPlayCount),
|
|
|
|
JFRN(userDataFavorite),
|
|
|
|
JFRN(userDataLikes),
|
|
|
|
JFRN(userDataLastPlayedDate),
|
|
|
|
JFRN(userDataPlayed),
|
|
|
|
JFRN(userDataKey),
|
2021-03-26 20:27:35 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
2021-07-31 13:06:17 +00:00
|
|
|
QSharedPointer<Model::Item> itemAt(int index);
|
2021-03-26 20:27:35 +00:00
|
|
|
};
|
|
|
|
#undef JFRN
|
|
|
|
|
|
|
|
} // NS Jellyfin
|
|
|
|
} // NS ViewModel
|
|
|
|
|
|
|
|
#undef FWDPROP
|
|
|
|
|
|
|
|
#endif // JELLYFIN_VIEWMODEL_ITEMMODEL_H
|