mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-06 15:25:39 +00:00
add support to search for specific game id using id:###
This commit is contained in:
parent
54931f12bd
commit
8ed1792913
|
@ -69,6 +69,7 @@ void thegamesdb_generate_scraper_requests(const ScraperSearchParams& params, std
|
||||||
std::vector<ScraperSearchResult>& results)
|
std::vector<ScraperSearchResult>& results)
|
||||||
{
|
{
|
||||||
std::string path = "thegamesdb.net/api/GetGame.php?";
|
std::string path = "thegamesdb.net/api/GetGame.php?";
|
||||||
|
bool usingGameID = false;
|
||||||
|
|
||||||
std::string cleanName = params.nameOverride;
|
std::string cleanName = params.nameOverride;
|
||||||
if (cleanName.empty())
|
if (cleanName.empty())
|
||||||
|
@ -78,10 +79,17 @@ void thegamesdb_generate_scraper_requests(const ScraperSearchParams& params, std
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
path += "exactname=" + HttpReq::urlEncode(cleanName);
|
if (cleanName.substr(0,3) == "id:") {
|
||||||
|
std::string gameID = cleanName.substr(3,-1);
|
||||||
|
path += "id=" + HttpReq::urlEncode(gameID);
|
||||||
|
usingGameID = true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
path += "exactname=" + HttpReq::urlEncode(cleanName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(params.system->getPlatformIds().empty())
|
if(params.system->getPlatformIds().empty() || usingGameID)
|
||||||
{
|
{
|
||||||
// no platform specified, we're done
|
// no platform specified, we're done
|
||||||
requests.push(std::unique_ptr<ScraperRequest>(new TheGamesDBRequest(results, path)));
|
requests.push(std::unique_ptr<ScraperRequest>(new TheGamesDBRequest(results, path)));
|
||||||
|
|
Loading…
Reference in a new issue