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
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "VideoDatabaseDirectory.h"
#include "utils/URIUtils.h"
#include "VideoDatabaseDirectory/QueryParams.h"
#include "video/VideoDatabase.h"
#include "guilib/TextureManager.h"
#include "File.h"
#include "FileItem.h"
#include "settings/Settings.h"
#include "utils/Crc32.h"
#include "guilib/LocalizeStrings.h"
#include "utils/LegacyPathTranslation.h"
#include "utils/StringUtils.h"
using namespace XFILE;
using namespace VIDEODATABASEDIRECTORY;
CVideoDatabaseDirectory::CVideoDatabaseDirectory(void)
{
}
CVideoDatabaseDirectory::~CVideoDatabaseDirectory(void)
{
}
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.get())
return false;
bool bResult = pNode->GetChilds(items);
for (int i=0;i<items.Size();++i)
{
CFileItemPtr item = items[i];
if (item->m_bIsFolder && !item->HasIcon() && !item->HasArt("thumb"))
{
std::string strImage = GetIcon(item->GetPath());
if (!strImage.empty() && g_TextureManager.HasTexture(strImage))
item->SetIconImage(strImage);
}
}
items.SetLabel(pNode->GetLocalizedName());
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.get())
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.get())
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.get())
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.get())
return false;
CDirectoryNode::GetDatabaseInfo(strPath,params);
return true;
}
void CVideoDatabaseDirectory::ClearDirectoryCache(const std::string& strDirectory)
{
std::string path = CLegacyPathTranslation::TranslateVideoDbPath(strDirectory);
URIUtils::RemoveSlashAtEnd(path);
Crc32 crc;
crc.ComputeFromLowerCase(path);
std::string strFileName = StringUtils::Format("special://temp/%08x.fi", (unsigned __int32) 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.get() || 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 = StringUtils::Format("%li",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;
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 (CSettings::GetInstance().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 (CSettings::GetInstance().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 (CSettings::GetInstance().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_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.get())
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.get())
return false;
return pNode->CanCache();
}
|