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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
/*
* Copyright (C) 2016-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 "VideoDatabaseDirectory.h"
#include "File.h"
#include "FileItem.h"
#include "ServiceBroker.h"
#include "VideoDatabaseDirectory/QueryParams.h"
#include "guilib/LocalizeStrings.h"
#include "guilib/TextureManager.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
#include "utils/Crc32.h"
#include "utils/LegacyPathTranslation.h"
#include "utils/StringUtils.h"
#include "utils/URIUtils.h"
#include "video/VideoDatabase.h"
using namespace XFILE;
using namespace VIDEODATABASEDIRECTORY;
CVideoDatabaseDirectory::CVideoDatabaseDirectory(void) = default;
CVideoDatabaseDirectory::~CVideoDatabaseDirectory(void) = default;
namespace
{
std::string GetChildContentType(const std::unique_ptr<CDirectoryNode>& node)
{
switch (node->GetChildType())
{
case NODE_TYPE_EPISODES:
case NODE_TYPE_RECENTLY_ADDED_EPISODES:
return "episodes";
case NODE_TYPE_SEASONS:
return "seasons";
case NODE_TYPE_TITLE_MOVIES:
case NODE_TYPE_RECENTLY_ADDED_MOVIES:
return "movies";
case NODE_TYPE_TITLE_TVSHOWS:
case NODE_TYPE_INPROGRESS_TVSHOWS:
return "tvshows";
case NODE_TYPE_TITLE_MUSICVIDEOS:
case NODE_TYPE_RECENTLY_ADDED_MUSICVIDEOS:
return "musicvideos";
case NODE_TYPE_GENRE:
return "genres";
case NODE_TYPE_COUNTRY:
return "countries";
case NODE_TYPE_ACTOR:
{
CQueryParams params;
node->CollectQueryParams(params);
if (static_cast<VideoDbContentType>(params.GetContentType()) ==
VideoDbContentType::MUSICVIDEOS)
return "artists";
return "actors";
}
case NODE_TYPE_DIRECTOR:
return "directors";
case NODE_TYPE_STUDIO:
return "studios";
case NODE_TYPE_YEAR:
return "years";
case NODE_TYPE_MUSICVIDEOS_ALBUM:
return "albums";
case NODE_TYPE_SETS:
return "sets";
case NODE_TYPE_TAGS:
return "tags";
default:
break;
}
return {};
}
} // unnamed namespace
bool CVideoDatabaseDirectory::GetDirectory(const CURL& url, CFileItemList &items)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(url);
items.SetPath(path);
items.m_dwSize = -1; // No size
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return false;
bool bResult = pNode->GetChilds(items);
for (int i=0;i<items.Size();++i)
{
CFileItemPtr item = items[i];
if (item->m_bIsFolder && !item->HasArt("icon") && !item->HasArt("thumb"))
{
std::string strImage = GetIcon(item->GetPath());
if (!strImage.empty() && CServiceBroker::GetGUI()->GetTextureManager().HasTexture(strImage))
item->SetArt("icon", strImage);
}
if (item->GetVideoInfoTag())
{
item->SetDynPath(item->GetVideoInfoTag()->GetPath());
}
}
if (items.HasProperty("customtitle"))
items.SetLabel(items.GetProperty("customtitle").asString());
else
items.SetLabel(pNode->GetLocalizedName());
items.SetContent(GetChildContentType(pNode));
return bResult;
}
NODE_TYPE CVideoDatabaseDirectory::GetDirectoryChildType(const std::string& strPath)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strPath);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return NODE_TYPE_NONE;
return pNode->GetChildType();
}
NODE_TYPE CVideoDatabaseDirectory::GetDirectoryType(const std::string& strPath)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strPath);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return NODE_TYPE_NONE;
return pNode->GetType();
}
NODE_TYPE CVideoDatabaseDirectory::GetDirectoryParentType(const std::string& strPath)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strPath);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return NODE_TYPE_NONE;
CDirectoryNode* pParentNode=pNode->GetParent();
if (!pParentNode)
return NODE_TYPE_NONE;
return pParentNode->GetChildType();
}
bool CVideoDatabaseDirectory::GetQueryParams(const std::string& strPath, CQueryParams& params)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strPath);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return false;
CDirectoryNode::GetDatabaseInfo(strPath,params);
return true;
}
void CVideoDatabaseDirectory::ClearDirectoryCache(const std::string& strDirectory)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strDirectory);
URIUtils::RemoveSlashAtEnd(path);
uint32_t crc = Crc32::ComputeFromLowerCase(path);
std::string strFileName = StringUtils::Format("special://temp/archive_cache/{:08x}.fi", crc);
CFile::Delete(strFileName);
}
bool CVideoDatabaseDirectory::IsAllItem(const std::string& strDirectory)
{
if (StringUtils::EndsWith(strDirectory, "/-1/"))
return true;
return false;
}
bool CVideoDatabaseDirectory::GetLabel(const std::string& strDirectory, std::string& strLabel)
{
strLabel = "";
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strDirectory);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode || path.empty())
return false;
// first see if there's any filter criteria
CQueryParams params;
CDirectoryNode::GetDatabaseInfo(path, params);
CVideoDatabase videodatabase;
if (!videodatabase.Open())
return false;
// get genre
if (params.GetGenreId() != -1)
strLabel += videodatabase.GetGenreById(params.GetGenreId());
// get country
if (params.GetCountryId() != -1)
strLabel += videodatabase.GetCountryById(params.GetCountryId());
// get set
if (params.GetSetId() != -1)
strLabel += videodatabase.GetSetById(params.GetSetId());
// get tag
if (params.GetTagId() != -1)
strLabel += videodatabase.GetTagById(params.GetTagId());
// get year
if (params.GetYear() != -1)
{
std::string strTemp = std::to_string(params.GetYear());
if (!strLabel.empty())
strLabel += " / ";
strLabel += strTemp;
}
if (strLabel.empty())
{
switch (pNode->GetChildType())
{
case NODE_TYPE_TITLE_MOVIES:
case NODE_TYPE_TITLE_TVSHOWS:
case NODE_TYPE_TITLE_MUSICVIDEOS:
strLabel = g_localizeStrings.Get(369); break;
case NODE_TYPE_ACTOR: // Actor
strLabel = g_localizeStrings.Get(344); break;
case NODE_TYPE_GENRE: // Genres
strLabel = g_localizeStrings.Get(135); break;
case NODE_TYPE_COUNTRY: // Countries
strLabel = g_localizeStrings.Get(20451); break;
case NODE_TYPE_YEAR: // Year
strLabel = g_localizeStrings.Get(562); break;
case NODE_TYPE_DIRECTOR: // Director
strLabel = g_localizeStrings.Get(20348); break;
case NODE_TYPE_SETS: // Sets
strLabel = g_localizeStrings.Get(20434); break;
case NODE_TYPE_TAGS: // Tags
strLabel = g_localizeStrings.Get(20459); break;
case NODE_TYPE_MOVIES_OVERVIEW: // Movies
strLabel = g_localizeStrings.Get(342); break;
case NODE_TYPE_TVSHOWS_OVERVIEW: // TV Shows
strLabel = g_localizeStrings.Get(20343); break;
case NODE_TYPE_RECENTLY_ADDED_MOVIES: // Recently Added Movies
strLabel = g_localizeStrings.Get(20386); break;
case NODE_TYPE_RECENTLY_ADDED_EPISODES: // Recently Added Episodes
strLabel = g_localizeStrings.Get(20387); break;
case NODE_TYPE_STUDIO: // Studios
strLabel = g_localizeStrings.Get(20388); break;
case NODE_TYPE_MUSICVIDEOS_OVERVIEW: // Music Videos
strLabel = g_localizeStrings.Get(20389); break;
case NODE_TYPE_RECENTLY_ADDED_MUSICVIDEOS: // Recently Added Music Videos
strLabel = g_localizeStrings.Get(20390); break;
case NODE_TYPE_SEASONS: // Seasons
strLabel = g_localizeStrings.Get(33054); break;
case NODE_TYPE_EPISODES: // Episodes
strLabel = g_localizeStrings.Get(20360); break;
case NODE_TYPE_INPROGRESS_TVSHOWS: // InProgress TvShows
strLabel = g_localizeStrings.Get(626); break;
default:
return false;
}
}
return true;
}
std::string CVideoDatabaseDirectory::GetIcon(const std::string &strDirectory)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strDirectory);
switch (GetDirectoryChildType(path))
{
case NODE_TYPE_TITLE_MOVIES:
if (URIUtils::PathEquals(path, "videodb://movies/titles/"))
{
if (CServiceBroker::GetSettingsComponent()->GetSettings()->GetBool(CSettings::SETTING_MYVIDEOS_FLATTEN))
return "DefaultMovies.png";
return "DefaultMovieTitle.png";
}
return "";
case NODE_TYPE_TITLE_TVSHOWS:
if (URIUtils::PathEquals(path, "videodb://tvshows/titles/"))
{
if (CServiceBroker::GetSettingsComponent()->GetSettings()->GetBool(CSettings::SETTING_MYVIDEOS_FLATTEN))
return "DefaultTVShows.png";
return "DefaultTVShowTitle.png";
}
return "";
case NODE_TYPE_TITLE_MUSICVIDEOS:
if (URIUtils::PathEquals(path, "videodb://musicvideos/titles/"))
{
if (CServiceBroker::GetSettingsComponent()->GetSettings()->GetBool(CSettings::SETTING_MYVIDEOS_FLATTEN))
return "DefaultMusicVideos.png";
return "DefaultMusicVideoTitle.png";
}
return "";
case NODE_TYPE_ACTOR: // Actor
return "DefaultActor.png";
case NODE_TYPE_GENRE: // Genres
return "DefaultGenre.png";
case NODE_TYPE_COUNTRY: // Countries
return "DefaultCountry.png";
case NODE_TYPE_SETS: // Sets
return "DefaultSets.png";
case NODE_TYPE_TAGS: // Tags
return "DefaultTags.png";
case NODE_TYPE_YEAR: // Year
return "DefaultYear.png";
case NODE_TYPE_DIRECTOR: // Director
return "DefaultDirector.png";
case NODE_TYPE_MOVIES_OVERVIEW: // Movies
return "DefaultMovies.png";
case NODE_TYPE_TVSHOWS_OVERVIEW: // TV Shows
return "DefaultTVShows.png";
case NODE_TYPE_RECENTLY_ADDED_MOVIES: // Recently Added Movies
return "DefaultRecentlyAddedMovies.png";
case NODE_TYPE_RECENTLY_ADDED_EPISODES: // Recently Added Episodes
return "DefaultRecentlyAddedEpisodes.png";
case NODE_TYPE_RECENTLY_ADDED_MUSICVIDEOS: // Recently Added Episodes
return "DefaultRecentlyAddedMusicVideos.png";
case NODE_TYPE_INPROGRESS_TVSHOWS: // InProgress TvShows
return "DefaultInProgressShows.png";
case NODE_TYPE_STUDIO: // Studios
return "DefaultStudios.png";
case NODE_TYPE_MUSICVIDEOS_OVERVIEW: // Music Videos
return "DefaultMusicVideos.png";
case NODE_TYPE_MUSICVIDEOS_ALBUM: // Music Videos - Albums
return "DefaultMusicAlbums.png";
default:
break;
}
return "";
}
bool CVideoDatabaseDirectory::ContainsMovies(const std::string &path)
{
VIDEODATABASEDIRECTORY::NODE_TYPE type = GetDirectoryChildType(path);
if (type == VIDEODATABASEDIRECTORY::NODE_TYPE_TITLE_MOVIES || type == VIDEODATABASEDIRECTORY::NODE_TYPE_EPISODES || type == VIDEODATABASEDIRECTORY::NODE_TYPE_TITLE_MUSICVIDEOS) return true;
return false;
}
bool CVideoDatabaseDirectory::Exists(const CURL& url)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(url);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return false;
if (pNode->GetChildType() == VIDEODATABASEDIRECTORY::NODE_TYPE_NONE)
return false;
return true;
}
bool CVideoDatabaseDirectory::CanCache(const std::string& strPath)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strPath);
std::unique_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
if (!pNode)
return false;
return pNode->CanCache();
}
|