aboutsummaryrefslogtreecommitdiff
path: root/src/filesystem/VideoDatabaseDirectory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/filesystem/VideoDatabaseDirectory.cpp')
-rw-r--r--src/filesystem/VideoDatabaseDirectory.cpp325
1 files changed, 325 insertions, 0 deletions
diff --git a/src/filesystem/VideoDatabaseDirectory.cpp b/src/filesystem/VideoDatabaseDirectory.cpp
new file mode 100644
index 0000000000..fb65f60dbc
--- /dev/null
+++ b/src/filesystem/VideoDatabaseDirectory.cpp
@@ -0,0 +1,325 @@
+/*
+ * 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/log.h"
+#include "utils/StringUtils.h"
+
+using namespace std;
+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);
+ auto_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);
+ auto_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);
+ auto_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);
+ auto_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);
+ auto_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);
+ auto_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::Get().GetBool("myvideos.flatten"))
+ return "DefaultMovies.png";
+ return "DefaultMovieTitle.png";
+ }
+ return "";
+ case NODE_TYPE_TITLE_TVSHOWS:
+ if (URIUtils::PathEquals(path, "videodb://tvshows/titles/"))
+ {
+ if (CSettings::Get().GetBool("myvideos.flatten"))
+ return "DefaultTVShows.png";
+ return "DefaultTVShowTitle.png";
+ }
+ return "";
+ case NODE_TYPE_TITLE_MUSICVIDEOS:
+ if (URIUtils::PathEquals(path, "videodb://musicvideos/titles/"))
+ {
+ if (CSettings::Get().GetBool("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);
+ auto_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);
+ auto_ptr<CDirectoryNode> pNode(CDirectoryNode::ParseURL(path));
+ if (!pNode.get())
+ return false;
+ return pNode->CanCache();
+}