2024-10-24 23:53:21 +02:00
|
|
|
using System.Text.Json;
|
|
|
|
|
|
|
|
namespace Jellyfin.Plugin.SmartPlaylist {
|
|
|
|
public interface IStore {
|
2024-10-25 23:37:47 +02:00
|
|
|
Task<SmartPlaylistDto> GetSmartPlaylistAsync(SmartPlaylistId smartPlaylistId);
|
2024-10-24 23:53:21 +02:00
|
|
|
Task<SmartPlaylistDto[]> GetAllSmartPlaylistsAsync();
|
|
|
|
Task SaveSmartPlaylistAsync(SmartPlaylistDto smartPlaylist);
|
2024-10-25 02:18:13 +02:00
|
|
|
void DeleteSmartPlaylist(SmartPlaylistDto smartPlaylist);
|
2024-10-24 23:53:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public class Store : IStore {
|
|
|
|
private readonly ISmartPlaylistFileSystem _fileSystem;
|
|
|
|
public Store(ISmartPlaylistFileSystem fileSystem) {
|
|
|
|
_fileSystem = fileSystem;
|
|
|
|
}
|
2024-10-25 23:37:47 +02:00
|
|
|
private async Task<SmartPlaylistDto> LoadPlaylistAsync(string filename) {
|
2024-10-24 23:53:21 +02:00
|
|
|
await using var r = File.OpenRead(filename);
|
2024-10-25 02:18:13 +02:00
|
|
|
var dto = (await JsonSerializer.DeserializeAsync<SmartPlaylistDto>(r).ConfigureAwait(false));
|
2024-10-25 23:37:47 +02:00
|
|
|
if (dto == null) {
|
|
|
|
throw new ApplicationException("");
|
|
|
|
}
|
|
|
|
dto.Filename = filename;
|
2024-10-25 02:18:13 +02:00
|
|
|
return dto;
|
2024-10-24 23:53:21 +02:00
|
|
|
}
|
2024-10-25 23:37:47 +02:00
|
|
|
public async Task<SmartPlaylistDto> GetSmartPlaylistAsync(SmartPlaylistId smartPlaylistId) {
|
2024-10-24 23:53:21 +02:00
|
|
|
string filename = _fileSystem.FindSmartPlaylistFilePath(smartPlaylistId);
|
|
|
|
return await LoadPlaylistAsync(filename).ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
public async Task<SmartPlaylistDto[]> GetAllSmartPlaylistsAsync() {
|
|
|
|
var t = _fileSystem.FindAllSmartPlaylistFilePaths().Select(LoadPlaylistAsync).ToArray();
|
|
|
|
await Task.WhenAll(t).ConfigureAwait(false);
|
|
|
|
return t.Where(x => x != null).Select(x => x.Result).ToArray();
|
|
|
|
}
|
|
|
|
public async Task SaveSmartPlaylistAsync(SmartPlaylistDto smartPlaylist) {
|
|
|
|
string filename = _fileSystem.GetSmartPlaylistFilePath(smartPlaylist.Id);
|
|
|
|
await using var w = File.Create(filename);
|
|
|
|
await JsonSerializer.SerializeAsync(w, smartPlaylist).ConfigureAwait(false);
|
|
|
|
}
|
2024-10-25 02:18:13 +02:00
|
|
|
private void DeleteSmartPlaylistById(SmartPlaylistId smartPlaylistId) {
|
|
|
|
try {
|
|
|
|
string filename = _fileSystem.FindSmartPlaylistFilePath(smartPlaylistId);
|
|
|
|
if (File.Exists(filename)) { File.Delete(filename); }
|
|
|
|
} catch (System.InvalidOperationException) {}
|
|
|
|
}
|
|
|
|
public void DeleteSmartPlaylist(SmartPlaylistDto smartPlaylist) {
|
|
|
|
if (File.Exists(smartPlaylist.Filename)) { File.Delete(smartPlaylist.Filename); }
|
|
|
|
DeleteSmartPlaylistById(smartPlaylist.Id);
|
2024-10-24 23:53:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|