108 lines
3.4 KiB
C#
108 lines
3.4 KiB
C#
using System;
|
|
using gaseous_tools;
|
|
using IGDB;
|
|
using IGDB.Models;
|
|
using MySqlX.XDevAPI.Common;
|
|
using static gaseous_tools.Config.ConfigFile;
|
|
|
|
namespace gaseous_server.Classes.Metadata
|
|
{
|
|
public class AlternativeNames
|
|
{
|
|
const string fieldList = "fields checksum,comment,game,name;";
|
|
|
|
public AlternativeNames()
|
|
{
|
|
}
|
|
|
|
private static IGDBClient igdb = new IGDBClient(
|
|
// Found in Twitch Developer portal for your app
|
|
Config.IGDB.ClientId,
|
|
Config.IGDB.Secret
|
|
);
|
|
|
|
public static AlternativeName? GetAlternativeNames(long? Id)
|
|
{
|
|
if ((Id == 0) || (Id == null))
|
|
{
|
|
return null;
|
|
}
|
|
else
|
|
{
|
|
Task<AlternativeName> RetVal = _GetAlternativeNames(SearchUsing.id, Id);
|
|
return RetVal.Result;
|
|
}
|
|
}
|
|
|
|
public static AlternativeName GetAlternativeNames(string Slug)
|
|
{
|
|
Task<AlternativeName> RetVal = _GetAlternativeNames(SearchUsing.slug, Slug);
|
|
return RetVal.Result;
|
|
}
|
|
|
|
private static async Task<AlternativeName> _GetAlternativeNames(SearchUsing searchUsing, object searchValue)
|
|
{
|
|
// check database first
|
|
Storage.CacheStatus? cacheStatus = new Storage.CacheStatus();
|
|
if (searchUsing == SearchUsing.id)
|
|
{
|
|
cacheStatus = Storage.GetCacheStatus("AlternativeName", (long)searchValue);
|
|
}
|
|
else
|
|
{
|
|
cacheStatus = Storage.GetCacheStatus("AlternativeName", (string)searchValue);
|
|
}
|
|
|
|
// set up where clause
|
|
string WhereClause = "";
|
|
switch (searchUsing)
|
|
{
|
|
case SearchUsing.id:
|
|
WhereClause = "where id = " + searchValue;
|
|
break;
|
|
case SearchUsing.slug:
|
|
WhereClause = "where slug = " + searchValue;
|
|
break;
|
|
default:
|
|
throw new Exception("Invalid search type");
|
|
}
|
|
|
|
AlternativeName returnValue = new AlternativeName();
|
|
switch (cacheStatus)
|
|
{
|
|
case Storage.CacheStatus.NotPresent:
|
|
returnValue = await GetObjectFromServer(WhereClause);
|
|
Storage.NewCacheValue(returnValue);
|
|
break;
|
|
case Storage.CacheStatus.Expired:
|
|
returnValue = await GetObjectFromServer(WhereClause);
|
|
Storage.NewCacheValue(returnValue, true);
|
|
break;
|
|
case Storage.CacheStatus.Current:
|
|
returnValue = Storage.GetCacheValue<AlternativeName>(returnValue, "id", (long)searchValue);
|
|
break;
|
|
default:
|
|
throw new Exception("How did you get here?");
|
|
}
|
|
|
|
return returnValue;
|
|
}
|
|
|
|
private enum SearchUsing
|
|
{
|
|
id,
|
|
slug
|
|
}
|
|
|
|
private static async Task<AlternativeName> GetObjectFromServer(string WhereClause)
|
|
{
|
|
// get AlternativeNames metadata
|
|
var results = await igdb.QueryAsync<AlternativeName>(IGDBClient.Endpoints.AlternativeNames, query: fieldList + " " + WhereClause + ";");
|
|
var result = results.First();
|
|
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|