
* Updated readme with database limitations * Wrapped all IGDB calls (except search) in try catch blocks
176 lines
6.4 KiB
C#
176 lines
6.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 Artworks
|
|
{
|
|
const string fieldList = "fields alpha_channel,animated,checksum,game,height,image_id,url,width;";
|
|
|
|
public Artworks()
|
|
{
|
|
}
|
|
|
|
private static IGDBClient igdb = new IGDBClient(
|
|
// Found in Twitch Developer portal for your app
|
|
Config.IGDB.ClientId,
|
|
Config.IGDB.Secret
|
|
);
|
|
|
|
public static Artwork? GetArtwork(long? Id, string LogoPath)
|
|
{
|
|
if ((Id == 0) || (Id == null))
|
|
{
|
|
return null;
|
|
}
|
|
else
|
|
{
|
|
Task<Artwork> RetVal = _GetArtwork(SearchUsing.id, Id, LogoPath);
|
|
return RetVal.Result;
|
|
}
|
|
}
|
|
|
|
public static Artwork GetArtwork(string Slug, string LogoPath)
|
|
{
|
|
Task<Artwork> RetVal = _GetArtwork(SearchUsing.slug, Slug, LogoPath);
|
|
return RetVal.Result;
|
|
}
|
|
|
|
private static async Task<Artwork> _GetArtwork(SearchUsing searchUsing, object searchValue, string LogoPath)
|
|
{
|
|
// check database first
|
|
Storage.CacheStatus? cacheStatus = new Storage.CacheStatus();
|
|
if (searchUsing == SearchUsing.id)
|
|
{
|
|
cacheStatus = Storage.GetCacheStatus("Artwork", (long)searchValue);
|
|
}
|
|
else
|
|
{
|
|
cacheStatus = Storage.GetCacheStatus("Artwork", (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");
|
|
}
|
|
|
|
Artwork returnValue = new Artwork();
|
|
bool forceImageDownload = false;
|
|
LogoPath = Path.Combine(LogoPath, "Artwork");
|
|
switch (cacheStatus)
|
|
{
|
|
case Storage.CacheStatus.NotPresent:
|
|
returnValue = await GetObjectFromServer(WhereClause, LogoPath);
|
|
Storage.NewCacheValue(returnValue);
|
|
forceImageDownload = true;
|
|
break;
|
|
case Storage.CacheStatus.Expired:
|
|
try
|
|
{
|
|
returnValue = await GetObjectFromServer(WhereClause, LogoPath);
|
|
Storage.NewCacheValue(returnValue, true);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
gaseous_tools.Logging.Log(gaseous_tools.Logging.LogType.Warning, "Metadata: " + returnValue.GetType().Name, "An error occurred while connecting to IGDB. WhereClause: " + WhereClause, ex);
|
|
returnValue = Storage.GetCacheValue<Artwork>(returnValue, "id", (long)searchValue);
|
|
}
|
|
break;
|
|
case Storage.CacheStatus.Current:
|
|
returnValue = Storage.GetCacheValue<Artwork>(returnValue, "id", (long)searchValue);
|
|
break;
|
|
default:
|
|
throw new Exception("How did you get here?");
|
|
}
|
|
|
|
if ((!File.Exists(Path.Combine(LogoPath, returnValue.ImageId + ".jpg"))) || forceImageDownload == true)
|
|
{
|
|
//GetImageFromServer(returnValue.Url, LogoPath, LogoSize.t_thumb, returnValue.ImageId);
|
|
//GetImageFromServer(returnValue.Url, LogoPath, LogoSize.t_logo_med, returnValue.ImageId);
|
|
GetImageFromServer(returnValue.Url, LogoPath, LogoSize.t_original, returnValue.ImageId);
|
|
}
|
|
|
|
return returnValue;
|
|
}
|
|
|
|
private enum SearchUsing
|
|
{
|
|
id,
|
|
slug
|
|
}
|
|
|
|
private static async Task<Artwork> GetObjectFromServer(string WhereClause, string LogoPath)
|
|
{
|
|
// get Artwork metadata
|
|
var results = await igdb.QueryAsync<Artwork>(IGDBClient.Endpoints.Artworks, query: fieldList + " " + WhereClause + ";");
|
|
var result = results.First();
|
|
|
|
//GetImageFromServer(result.Url, LogoPath, LogoSize.t_thumb, result.ImageId);
|
|
//GetImageFromServer(result.Url, LogoPath, LogoSize.t_logo_med, result.ImageId);
|
|
GetImageFromServer(result.Url, LogoPath, LogoSize.t_original, result.ImageId);
|
|
|
|
return result;
|
|
}
|
|
|
|
private static void GetImageFromServer(string Url, string LogoPath, LogoSize logoSize, string ImageId)
|
|
{
|
|
using (var client = new HttpClient())
|
|
{
|
|
string fileName = "Artwork.jpg";
|
|
string extension = "jpg";
|
|
switch (logoSize)
|
|
{
|
|
case LogoSize.t_thumb:
|
|
fileName = "_Thumb";
|
|
extension = "jpg";
|
|
break;
|
|
case LogoSize.t_logo_med:
|
|
fileName = "_Medium";
|
|
extension = "png";
|
|
break;
|
|
case LogoSize.t_original:
|
|
fileName = "";
|
|
extension = "png";
|
|
break;
|
|
default:
|
|
fileName = "Artwork";
|
|
extension = "jpg";
|
|
break;
|
|
}
|
|
fileName = ImageId + fileName;
|
|
string imageUrl = Url.Replace(LogoSize.t_thumb.ToString(), logoSize.ToString()).Replace("jpg", extension);
|
|
|
|
using (var s = client.GetStreamAsync("https:" + imageUrl))
|
|
{
|
|
if (!Directory.Exists(LogoPath)) { Directory.CreateDirectory(LogoPath); }
|
|
using (var fs = new FileStream(Path.Combine(LogoPath, fileName + "." + extension), FileMode.OpenOrCreate))
|
|
{
|
|
s.Result.CopyTo(fs);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private enum LogoSize
|
|
{
|
|
t_thumb,
|
|
t_logo_med,
|
|
t_original
|
|
}
|
|
}
|
|
}
|
|
|