#pragma once /* * 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 * . * */ #include "addons/Addon.h" #include "XBDateTime.h" #include "utils/ScraperUrl.h" #include "utils/ScraperParser.h" #include "video/Episode.h" class CAlbum; class CArtist; class CVideoInfoTag; namespace MUSIC_GRABBER { class CMusicAlbumInfo; class CMusicArtistInfo; } typedef enum { CONTENT_MOVIES, CONTENT_TVSHOWS, CONTENT_MUSICVIDEOS, CONTENT_ALBUMS, CONTENT_ARTISTS, CONTENT_NONE, } CONTENT_TYPE; namespace XFILE { class CCurlFile; } class CScraperUrl; namespace ADDON { class CScraper; typedef std::shared_ptr ScraperPtr; std::string TranslateContent(const CONTENT_TYPE &content, bool pretty=false); CONTENT_TYPE TranslateContent(const std::string &string); TYPE ScraperTypeFromContent(const CONTENT_TYPE &content); // thrown as exception to signal abort or show error dialog class CScraperError { public: CScraperError() : m_fAborted(true) {} CScraperError(const std::string &sTitle, const std::string &sMessage) : m_fAborted(false), m_sTitle(sTitle), m_sMessage(sMessage) {} bool FAborted() const { return m_fAborted; } const std::string &Title() const { return m_sTitle; } const std::string &Message() const { return m_sMessage; } private: bool m_fAborted; std::string m_sTitle; std::string m_sMessage; }; class CScraper : public CAddon { public: CScraper(const AddonProps &props) : CAddon(props), m_fLoaded(false) {} CScraper(const cp_extension_t *ext); virtual ~CScraper() {} virtual AddonPtr Clone() const; /*! \brief Set the scraper settings for a particular path from an XML string Loads the default and user settings (if not already loaded) and, if the given XML string is non-empty, overrides the user settings with the XML. \param content Content type of the path \param xml string of XML with the settings. If non-empty this overrides any saved user settings. \return true if settings are available, false otherwise \sa GetPathSettings */ bool SetPathSettings(CONTENT_TYPE content, const std::string& xml); /*! \brief Get the scraper settings for a particular path in the form of an XML string Loads the default and user settings (if not already loaded) and returns the user settings in the form or an XML string \return a string containing the XML settings \sa SetPathSettings */ std::string GetPathSettings(); /*! \brief Clear any previously cached results for this scraper Any previously cached files are cleared if they have been cached for longer than the specified cachepersistence. */ void ClearCache(); CONTENT_TYPE Content() const { return m_pathContent; } const std::string& Language() const { return m_language; } bool RequiresSettings() const { return m_requiressettings; } bool Supports(const CONTENT_TYPE &content) const; bool IsInUse() const; bool IsNoop(); // scraper media functions CScraperUrl NfoUrl(const std::string &sNfoContent); /*! \brief Resolve an external ID (e.g. MusicBrainz IDs) to a URL using scrapers If we have an ID in hand, e.g. MusicBrainz IDs or TheTVDB Season IDs we can get directly to a URL instead of searching by name and choosing from the search results. The correct scraper type should be used to get the right URL for a given ID, so we can differentiate albums, artists, TV Seasons, etc. \param externalID the external ID - e.g. MusicBrainzArtist/AlbumID \return a populated URL pointing to the details page for the given ID or an empty URL if we couldn't resolve the ID. */ CScraperUrl ResolveIDToUrl(const std::string &externalID); std::vector FindMovie(XFILE::CCurlFile &fcurl, const std::string &sMovie, bool fFirst); std::vector FindAlbum(XFILE::CCurlFile &fcurl, const std::string &sAlbum, const std::string &sArtist = ""); std::vector FindArtist( XFILE::CCurlFile &fcurl, const std::string &sArtist); VIDEO::EPISODELIST GetEpisodeList(XFILE::CCurlFile &fcurl, const CScraperUrl &scurl); bool GetVideoDetails(XFILE::CCurlFile &fcurl, const CScraperUrl &scurl, bool fMovie/*else episode*/, CVideoInfoTag &video); bool GetAlbumDetails(XFILE::CCurlFile &fcurl, const CScraperUrl &scurl, CAlbum &album); bool GetArtistDetails(XFILE::CCurlFile &fcurl, const CScraperUrl &scurl, const std::string &sSearch, CArtist &artist); private: CScraper(const CScraper &rhs); std::string SearchStringEncoding() const { return m_parser.GetSearchStringEncoding(); } bool Load(); std::vector Run(const std::string& function, const CScraperUrl& url, XFILE::CCurlFile& http, const std::vector* extras = NULL); std::vector RunNoThrow(const std::string& function, const CScraperUrl& url, XFILE::CCurlFile& http, const std::vector* extras = NULL); std::string InternalRun(const std::string& function, const CScraperUrl& url, XFILE::CCurlFile& http, const std::vector* extras); bool m_fLoaded; std::string m_language; bool m_requiressettings; CDateTimeSpan m_persistence; CONTENT_TYPE m_pathContent; CScraperParser m_parser; }; }