2020-10-25 18:58:02 +00:00
|
|
|
/*
|
2021-03-24 19:04:03 +00:00
|
|
|
* Sailfin: a Jellyfin client written using Qt
|
|
|
|
* Copyright (C) 2021 Chris Josten and the Sailfin contributes
|
|
|
|
*
|
|
|
|
* 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
|
2020-10-25 18:58:02 +00:00
|
|
|
*/
|
|
|
|
#include "JellyfinQt/jellyfin.h"
|
2021-09-04 20:23:54 +00:00
|
|
|
|
|
|
|
#include "JellyfinQt/model/item.h"
|
|
|
|
#include "JellyfinQt/dto/itemfields.h"
|
|
|
|
#include "JellyfinQt/dto/mediastream.h"
|
|
|
|
#include "JellyfinQt/dto/nameguidpair.h"
|
|
|
|
#include "JellyfinQt/dto/userdto.h"
|
|
|
|
#include "JellyfinQt/dto/useritemdatadto.h"
|
|
|
|
|
|
|
|
#include "JellyfinQt/apiclient.h"
|
|
|
|
#include "JellyfinQt/apimodel.h"
|
2021-09-09 00:18:10 +00:00
|
|
|
#include "JellyfinQt/eventbus.h"
|
2021-09-04 20:23:54 +00:00
|
|
|
#include "JellyfinQt/serverdiscoverymodel.h"
|
|
|
|
#include "JellyfinQt/websocket.h"
|
2022-12-28 20:20:04 +00:00
|
|
|
#include "JellyfinQt/model/controllablesession.h"
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
#include "JellyfinQt/model/player.h"
|
2021-09-04 20:23:54 +00:00
|
|
|
#include "JellyfinQt/viewmodel/item.h"
|
|
|
|
#include "JellyfinQt/viewmodel/itemmodel.h"
|
|
|
|
#include "JellyfinQt/viewmodel/loader.h"
|
|
|
|
#include "JellyfinQt/viewmodel/mediastream.h"
|
|
|
|
#include "JellyfinQt/viewmodel/modelstatus.h"
|
|
|
|
#include "JellyfinQt/viewmodel/platformmediacontrol.h"
|
|
|
|
#include "JellyfinQt/viewmodel/playbackmanager.h"
|
|
|
|
#include "JellyfinQt/viewmodel/playlist.h"
|
2022-12-28 20:20:04 +00:00
|
|
|
#include "JellyfinQt/viewmodel/remotedevice.h"
|
2021-09-04 20:23:54 +00:00
|
|
|
#include "JellyfinQt/viewmodel/settings.h"
|
|
|
|
#include "JellyfinQt/viewmodel/userdata.h"
|
|
|
|
#include "JellyfinQt/viewmodel/usermodel.h"
|
|
|
|
#include "JellyfinQt/viewmodel/user.h"
|
|
|
|
|
2020-10-08 01:00:08 +00:00
|
|
|
namespace Jellyfin {
|
|
|
|
|
2021-09-04 20:23:54 +00:00
|
|
|
void JellyfinPlugin::registerTypes(const char *uri) {
|
2021-03-24 19:04:03 +00:00
|
|
|
qmlRegisterType<ApiClient>(uri, 1, 0, "ApiClient");
|
|
|
|
qmlRegisterType<ServerDiscoveryModel>(uri, 1, 0, "ServerDiscoveryModel");
|
2021-03-29 21:48:16 +00:00
|
|
|
qmlRegisterType<ViewModel::PlaybackManager>(uri, 1, 0, "PlaybackManager");
|
2021-08-30 23:29:51 +00:00
|
|
|
qmlRegisterType<ViewModel::PlatformMediaControl>(uri, 1, 0, "PlatformMediaControl");
|
2021-03-29 21:48:16 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::Item>(uri, 1, 0, "Item", "Acquire one via ItemLoader or exposed properties");
|
2021-08-17 22:04:27 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::User>(uri, 1, 0, "User", "Acquire one via UserLoader or exposed properties");
|
2021-05-21 13:46:30 +00:00
|
|
|
qmlRegisterUncreatableType<EventBus>(uri, 1, 0, "EventBus", "Obtain one via your ApiClient");
|
2021-03-29 21:48:16 +00:00
|
|
|
qmlRegisterUncreatableType<WebSocket>(uri, 1, 0, "WebSocket", "Obtain one via your ApiClient");
|
2022-07-29 23:16:40 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::NameGuidPair>(uri, 1, 0, "NameGuidPair", "Obbtain one via an Item");
|
2021-08-22 23:48:35 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::MediaStream>(uri, 1, 0, "MediaStream", "Obtain one via an Item");
|
2021-09-03 01:47:25 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::Settings>(uri, 1, 0, "Settings", "Obtain one via your ApiClient");
|
2021-08-17 14:43:17 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::UserData>(uri, 1, 0, "UserData", "Obtain one via an Item");
|
2021-03-25 16:32:00 +00:00
|
|
|
|
2021-03-29 21:48:16 +00:00
|
|
|
// AbstractItemModels
|
2021-03-26 20:27:35 +00:00
|
|
|
qmlRegisterUncreatableType<BaseApiModel>(uri, 1, 0, "BaseApiModel", "Please use one of its subclasses");
|
|
|
|
qmlRegisterUncreatableType<BaseModelLoader>(uri, 1, 0, "BaseModelLoader", "Please use one of its subclasses");
|
|
|
|
qmlRegisterType<ViewModel::ItemModel>(uri, 1, 0, "ItemModel");
|
2021-08-17 22:04:27 +00:00
|
|
|
qmlRegisterType<ViewModel::UserModel>(uri, 1, 0, "UserModel");
|
2021-08-21 20:01:13 +00:00
|
|
|
qmlRegisterUncreatableType<ViewModel::Playlist>(uri, 1, 0, "Playlist", "Available via PlaybackManager");
|
2022-12-28 20:20:04 +00:00
|
|
|
qmlRegisterType<ViewModel::RemoteDeviceList>(uri, 1, 0, "RemoteDeviceList");
|
2021-03-25 16:32:00 +00:00
|
|
|
|
2021-03-29 21:48:16 +00:00
|
|
|
// Loaders
|
|
|
|
qmlRegisterUncreatableType<ViewModel::LoaderBase>(uri, 1, 0, "LoaderBase", "Use one of its subclasses");
|
|
|
|
qmlRegisterType<ViewModel::ItemLoader>(uri, 1, 0, "ItemLoader");
|
2021-08-17 22:04:27 +00:00
|
|
|
qmlRegisterType<ViewModel::UserLoader>(uri, 1, 0, "UserLoader");
|
2021-03-29 21:48:16 +00:00
|
|
|
qmlRegisterType<ViewModel::LatestMediaLoader>(uri, 1, 0, "LatestMediaLoader");
|
|
|
|
qmlRegisterType<ViewModel::UserItemsLoader>(uri, 1, 0, "UserItemsLoader");
|
|
|
|
qmlRegisterType<ViewModel::UserViewsLoader>(uri, 1, 0, "UsersViewsLoader");
|
2021-08-11 21:35:33 +00:00
|
|
|
qmlRegisterType<ViewModel::ResumeItemsLoader>(uri, 1, 0, "ResumeItemsLoader");
|
|
|
|
qmlRegisterType<ViewModel::ShowSeasonsLoader>(uri, 1, 0, "ShowSeasonsLoader");
|
|
|
|
qmlRegisterType<ViewModel::ShowEpisodesLoader>(uri, 1, 0, "ShowEpisodesLoader");
|
2021-09-09 03:57:41 +00:00
|
|
|
qmlRegisterType<ViewModel::NextUpLoader>(uri, 1, 0, "NextUpLoader");
|
2021-08-17 22:04:27 +00:00
|
|
|
qmlRegisterType<ViewModel::PublicUsersLoader>(uri, 1, 0, "PublicUsersLoader");
|
2022-07-29 12:26:25 +00:00
|
|
|
qmlRegisterType<ViewModel::AlbumArtistLoader>(uri, 1, 0, "AlbumArtistLoader");
|
2024-06-03 20:11:10 +00:00
|
|
|
qmlRegisterType<ViewModel::LiveTvChannelsLoader>(uri, 1, 0, "LiveTvChannelsLoader");
|
2020-10-08 01:00:08 +00:00
|
|
|
|
2021-03-29 21:48:16 +00:00
|
|
|
// Enumerations
|
2021-07-31 13:06:17 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::DTO::GeneralCommandTypeClass>(uri, 1, 0, "GeneralCommandType", "Is an enum");
|
|
|
|
qmlRegisterUncreatableType<Jellyfin::ViewModel::ModelStatusClass>(uri, 1, 0, "ModelStatus", "Is an enum");
|
|
|
|
qmlRegisterUncreatableType<Jellyfin::DTO::PlayMethodClass>(uri, 1, 0, "PlayMethod", "Is an enum");
|
2021-08-11 21:35:33 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::DTO::ItemFieldsClass>(uri, 1, 0, "ItemFields", "Is an enum");
|
2021-08-22 23:48:35 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::DTO::ImageTypeClass>(uri, 1, 0, "ImageType", "Is an enum");
|
2021-08-21 20:01:13 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::ViewModel::NowPlayingSection>(uri, 1, 0, "NowPlayingSection", "Is an enum");
|
core: Split PlaybackManager up into smaller parts
The PlaybackManager was a giant class that handled UI bindings, fetching
stream URLS, playback logic.
It now has been split up into:
- ViewModel::PlaybackManager, which handles UI interfacing and allowing
to swap out the Model::Playback implementation on the fly.
- Model::PlaybackManager, which is an interface for what a
PlaybackManager must do, handling queues/playlists, and controlling a
player.
- Model::LocalPlaybackManager, which is an Model::PlaybackManager
implementation for playing back Jellyfin media within the application.
- Model::PlaybackReporter, which reports the current playback state to
the Jellyfin server, for keeping track of played items.
- Model::Player, which handles playing back media from an URL and
the usual play/pause et cetera.
In a future commit, this would allow for introducing a
Model::RemoteJellyfinPlaybackManager, to control other Jellyfin
instances.
2022-01-05 20:24:52 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::Model::PlayerStateClass>(uri, 1, 0, "PlayerState", "Is an enum");
|
|
|
|
qmlRegisterUncreatableType<Jellyfin::Model::MediaStatusClass>(uri, 1, 0, "MediaStatus", "Is an enum");
|
2022-12-28 20:20:04 +00:00
|
|
|
qmlRegisterUncreatableType<Jellyfin::Model::DeviceTypeClass>(uri, 1, 0, "DeviceType", "Is an enum");
|
2021-03-29 21:48:16 +00:00
|
|
|
|
2021-07-31 13:06:17 +00:00
|
|
|
qRegisterMetaType<Jellyfin::DTO::PlayMethodClass::Value>();
|
2020-10-08 01:00:08 +00:00
|
|
|
}
|
|
|
|
}
|