[cstdstring] demise Format, replacing with StringUtils::Format
[vuplus_xbmc] / xbmc / music / infoscanner / MusicAlbumInfo.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "MusicAlbumInfo.h"
22 #include "addons/Scraper.h"
23 #include "utils/log.h"
24 #include "utils/StringUtils.h"
25 #include "settings/AdvancedSettings.h"
26
27 using namespace std;
28 using namespace MUSIC_GRABBER;
29
30 CMusicAlbumInfo::CMusicAlbumInfo(const CStdString& strAlbumInfo, const CScraperUrl& strAlbumURL)
31 {
32   m_strTitle2 = strAlbumInfo;
33   m_albumURL = strAlbumURL;
34   m_relevance = -1;
35   m_bLoaded = false;
36 }
37
38 CMusicAlbumInfo::CMusicAlbumInfo(const CStdString& strAlbum, const CStdString& strArtist,
39   const CStdString& strAlbumInfo, const CScraperUrl& strAlbumURL)
40 {
41   m_album.strAlbum = strAlbum;
42   m_album.artist = StringUtils::Split(strArtist, g_advancedSettings.m_musicItemSeparator);
43   m_strTitle2 = strAlbumInfo;
44   m_albumURL = strAlbumURL;
45   m_relevance = -1;
46   m_bLoaded = false;
47 }
48
49 void CMusicAlbumInfo::SetAlbum(CAlbum& album)
50 {
51   m_album = album;
52   m_album.m_strDateOfRelease = StringUtils::Format("%i", album.iYear);
53   m_strTitle2 = "";
54   m_bLoaded = true;
55 }
56
57 bool CMusicAlbumInfo::Load(XFILE::CCurlFile& http, const ADDON::ScraperPtr& scraper)
58 {
59   bool fSuccess = scraper->GetAlbumDetails(http, m_albumURL, m_album);
60   if (fSuccess && m_strTitle2.empty())
61     m_strTitle2 = m_album.strAlbum;
62   SetLoaded(fSuccess);
63   return fSuccess;
64 }
65