1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
* Copyright (C) 2015-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "MediaLibraryEvent.h"
#include "ServiceBroker.h"
#include "guilib/GUIComponent.h"
#include "guilib/GUIWindowManager.h"
#include "guilib/LocalizeStrings.h"
#include "guilib/WindowIDs.h"
#include "utils/URIUtils.h"
CMediaLibraryEvent::CMediaLibraryEvent(const MediaType& mediaType, const std::string& mediaPath, const CVariant& label, const CVariant& description, EventLevel level /* = EventLevel::Information */)
: CUniqueEvent(label, description, level),
m_mediaType(mediaType),
m_mediaPath(mediaPath)
{ }
CMediaLibraryEvent::CMediaLibraryEvent(const MediaType& mediaType, const std::string& mediaPath, const CVariant& label, const CVariant& description, const std::string& icon, EventLevel level /* = EventLevel::Information */)
: CUniqueEvent(label, description, icon, level),
m_mediaType(mediaType),
m_mediaPath(mediaPath)
{ }
CMediaLibraryEvent::CMediaLibraryEvent(const MediaType& mediaType, const std::string& mediaPath, const CVariant& label, const CVariant& description, const std::string& icon, const CVariant& details, EventLevel level /* = EventLevel::Information */)
: CUniqueEvent(label, description, icon, details, level),
m_mediaType(mediaType),
m_mediaPath(mediaPath)
{ }
CMediaLibraryEvent::CMediaLibraryEvent(const MediaType& mediaType, const std::string& mediaPath, const CVariant& label, const CVariant& description, const std::string& icon, const CVariant& details, const CVariant& executionLabel, EventLevel level /* = EventLevel::Information */)
: CUniqueEvent(label, description, icon, details, executionLabel, level),
m_mediaType(mediaType),
m_mediaPath(mediaPath)
{ }
std::string CMediaLibraryEvent::GetExecutionLabel() const
{
std::string executionLabel = CUniqueEvent::GetExecutionLabel();
if (!executionLabel.empty())
return executionLabel;
return g_localizeStrings.Get(24140);
}
bool CMediaLibraryEvent::Execute() const
{
if (!CanExecute())
return false;
int windowId = -1;
std::string path = m_mediaPath;
if (m_mediaType == MediaTypeVideo || m_mediaType == MediaTypeMovie || m_mediaType == MediaTypeVideoCollection ||
m_mediaType == MediaTypeTvShow || m_mediaType == MediaTypeSeason || m_mediaType == MediaTypeEpisode ||
m_mediaType == MediaTypeMusicVideo)
{
if (path.empty())
{
if (m_mediaType == MediaTypeVideo)
path = "sources://video/";
else if (m_mediaType == MediaTypeMovie)
path = "videodb://movies/titles/";
else if (m_mediaType == MediaTypeVideoCollection)
path = "videodb://movies/sets/";
else if (m_mediaType == MediaTypeMusicVideo)
path = "videodb://musicvideos/titles/";
else if (m_mediaType == MediaTypeTvShow || m_mediaType == MediaTypeSeason || m_mediaType == MediaTypeEpisode)
path = "videodb://tvshows/titles/";
}
else
{
//! @todo remove the filename for now as CGUIMediaWindow::GetDirectory() can't handle it
if (m_mediaType == MediaTypeMovie || m_mediaType == MediaTypeMusicVideo || m_mediaType == MediaTypeEpisode)
path = URIUtils::GetDirectory(path);
}
windowId = WINDOW_VIDEO_NAV;
}
else if (m_mediaType == MediaTypeMusic || m_mediaType == MediaTypeArtist ||
m_mediaType == MediaTypeAlbum || m_mediaType == MediaTypeSong)
{
if (path.empty())
{
if (m_mediaType == MediaTypeMusic)
path = "sources://music/";
else if (m_mediaType == MediaTypeArtist)
path = "musicdb://artists/";
else if (m_mediaType == MediaTypeAlbum)
path = "musicdb://albums/";
else if (m_mediaType == MediaTypeSong)
path = "musicdb://songs/";
}
else
{
//! @todo remove the filename for now as CGUIMediaWindow::GetDirectory() can't handle it
if (m_mediaType == MediaTypeSong)
path = URIUtils::GetDirectory(path);
}
windowId = WINDOW_MUSIC_NAV;
}
if (windowId < 0)
return false;
std::vector<std::string> params;
params.push_back(path);
params.emplace_back("return");
CServiceBroker::GetGUI()->GetWindowManager().ActivateWindow(windowId, params);
return true;
}
|