mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
refactor: centralize cache path logic and add TMPDIR documentation
This commit is contained in:
@@ -47,7 +47,7 @@ public abstract class BaseDownloadService : IDownloadService
|
||||
Logger = logger;
|
||||
|
||||
DownloadPath = configuration["Library:DownloadPath"] ?? "./downloads";
|
||||
CachePath = Path.Combine(Path.GetTempPath(), "octo-fiesta-cache");
|
||||
CachePath = PathHelper.GetCachePath();
|
||||
|
||||
if (!Directory.Exists(DownloadPath))
|
||||
{
|
||||
|
||||
@@ -61,7 +61,7 @@ public class CacheCleanupService : BackgroundService
|
||||
|
||||
private async Task CleanupOldCachedFilesAsync(CancellationToken cancellationToken)
|
||||
{
|
||||
var cachePath = Path.Combine(Path.GetTempPath(), "octo-fiesta-cache");
|
||||
var cachePath = PathHelper.GetCachePath();
|
||||
|
||||
if (!Directory.Exists(cachePath))
|
||||
{
|
||||
|
||||
@@ -8,6 +8,17 @@ namespace octo_fiesta.Services.Common;
|
||||
/// </summary>
|
||||
public static class PathHelper
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the cache directory path for temporary file storage.
|
||||
/// Uses system temp directory combined with octo-fiesta-cache subfolder.
|
||||
/// Respects TMPDIR environment variable on Linux/macOS.
|
||||
/// </summary>
|
||||
/// <returns>Full path to the cache directory.</returns>
|
||||
public static string GetCachePath()
|
||||
{
|
||||
return Path.Combine(Path.GetTempPath(), "octo-fiesta-cache");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Builds the output path for a downloaded track following the Artist/Album/Track structure.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user