mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
51 lines
No EOL
1.5 KiB
C#
51 lines
No EOL
1.5 KiB
C#
using Roadie.Library.Configuration;
|
|
using Roadie.Library.Extensions;
|
|
using Roadie.Library.Utility;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Roadie.Library.Data
|
|
{
|
|
public partial class Genre
|
|
{
|
|
public string CacheKey => CacheUrn(RoadieId);
|
|
|
|
public string CacheRegion => CacheRegionUrn(RoadieId);
|
|
|
|
///// <summary>
|
|
///// Returns a full file path to the Genre Image
|
|
///// </summary>
|
|
//public string PathToImage(IRoadieSettings configuration)
|
|
//{
|
|
// return Path.Combine(configuration.GenreImageFolder, $"{ Name.ToFileNameFriendly() } [{ Id }].jpg");
|
|
//}
|
|
|
|
/// <summary>
|
|
/// Returns a full file path to the Genre Image
|
|
/// </summary>
|
|
public string PathToImage(IRoadieSettings configuration, bool makeFolderIfNotExist = false)
|
|
{
|
|
var folder = FolderPathHelper.GenrePath(configuration, SortNameValue);
|
|
if (!Directory.Exists(folder) && makeFolderIfNotExist)
|
|
{
|
|
Directory.CreateDirectory(folder);
|
|
}
|
|
return Path.Combine(folder, $"{ SortNameValue.ToFileNameFriendly() } [{ Id }].jpg");
|
|
}
|
|
|
|
public static string CacheRegionUrn(Guid Id)
|
|
{
|
|
return string.Format("urn:genre:{0}", Id);
|
|
}
|
|
|
|
public static string CacheUrn(Guid Id)
|
|
{
|
|
return $"urn:genre_by_id:{Id}";
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"Id [{Id}], Name [{Name}], RoadieId [{RoadieId}]";
|
|
}
|
|
}
|
|
} |