/*************************************************************************** * Copyright (C) 2008-2014 by Andrzej Rybczak * * electricityispower@gmail.com * * * * 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 of the License, 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 this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "config.h" #include "curl_handle.h" #ifdef HAVE_CURL_CURL_H #include #include #include #include #include #include "charset.h" #include "lyrics_fetcher.h" #include "utility/html.h" #include "utility/string.h" LyricsFetcher *lyricsPlugins[] = { new LyricwikiFetcher(), new AzLyricsFetcher(), new Sing365Fetcher(), new LyricsmaniaFetcher(), new MetrolyricsFetcher(), new JustSomeLyricsFetcher(), new InternetLyricsFetcher(), 0 }; const char LyricsFetcher::msgNotFound[] = "Not found"; LyricsFetcher::Result LyricsFetcher::fetch(const std::string &artist, const std::string &title) { Result result; result.first = false; std::string url = urlTemplate(); boost::replace_all(url, "%artist%", artist); boost::replace_all(url, "%title%", title); std::string data; CURLcode code = Curl::perform(data, url); if (code != CURLE_OK) { result.second = curl_easy_strerror(code); return result; } auto lyrics = getContent(regex(), data); if (lyrics.empty() || notLyrics(data)) { result.second = msgNotFound; return result; } data.clear(); for (auto it = lyrics.begin(); it != lyrics.end(); ++it) { postProcess(*it); if (!it->empty()) { data += *it; if (it != lyrics.end()-1) data += "\n\n----------\n\n"; } } result.second = data; result.first = true; return result; } std::vector LyricsFetcher::getContent(const char *regex_, const std::string &data) { std::vector result; boost::regex rx(regex_); auto first = boost::sregex_iterator(data.begin(), data.end(), rx); auto last = boost::sregex_iterator(); for (; first != last; ++first) result.push_back(first->str(1)); return result; } void LyricsFetcher::postProcess(std::string &data) const { stripHtmlTags(data); boost::trim(data); } /***********************************************************************/ LyricsFetcher::Result LyricwikiFetcher::fetch(const std::string &artist, const std::string &title) { LyricsFetcher::Result result = LyricsFetcher::fetch(artist, title); if (result.first == true) { result.first = false; std::string data; CURLcode code = Curl::perform(data, result.second, "", true); if (code != CURLE_OK) { result.second = curl_easy_strerror(code); return result; } auto lyrics = getContent("
(.*?)