Centralize audio/aaxc files GetPath and Exists into temp TransitionalFileLocator
This commit is contained in:
parent
d4fbb03577
commit
0c265a9010
@ -6,7 +6,6 @@ using AudibleApi;
|
|||||||
using DataLayer;
|
using DataLayer;
|
||||||
using Dinah.Core;
|
using Dinah.Core;
|
||||||
using DtoImporterService;
|
using DtoImporterService;
|
||||||
using FileManager;
|
|
||||||
using InternalUtilities;
|
using InternalUtilities;
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
|
||||||
@ -181,8 +180,8 @@ namespace ApplicationServices
|
|||||||
// this is a query, not command so maybe I should make a LibraryQueries. except there's already one of those...
|
// this is a query, not command so maybe I should make a LibraryQueries. except there's already one of those...
|
||||||
private enum AudioFileState { full, aax, none }
|
private enum AudioFileState { full, aax, none }
|
||||||
private static AudioFileState getAudioFileState(string productId)
|
private static AudioFileState getAudioFileState(string productId)
|
||||||
=> AudibleFileStorage.Audio.Exists(productId) ? AudioFileState.full
|
=> TransitionalFileLocator.Audio_Exists(productId) ? AudioFileState.full
|
||||||
: AudibleFileStorage.AAXC.Exists(productId) ? AudioFileState.aax
|
: TransitionalFileLocator.AAXC_Exists(productId) ? AudioFileState.aax
|
||||||
: AudioFileState.none;
|
: AudioFileState.none;
|
||||||
public record LibraryStats(int booksFullyBackedUp, int booksDownloadedOnly, int booksNoProgress, int pdfsDownloaded, int pdfsNotDownloaded) { }
|
public record LibraryStats(int booksFullyBackedUp, int booksDownloadedOnly, int booksNoProgress, int pdfsDownloaded, int pdfsNotDownloaded) { }
|
||||||
public static LibraryStats GetCounts()
|
public static LibraryStats GetCounts()
|
||||||
@ -202,7 +201,7 @@ namespace ApplicationServices
|
|||||||
var boolResults = libraryBooks
|
var boolResults = libraryBooks
|
||||||
.AsParallel()
|
.AsParallel()
|
||||||
.Where(lb => lb.Book.Supplements.Any())
|
.Where(lb => lb.Book.Supplements.Any())
|
||||||
.Select(lb => AudibleFileStorage.PDF.Exists(lb.Book.AudibleProductId))
|
.Select(lb => TransitionalFileLocator.PDF_Exists(lb.Book.AudibleProductId))
|
||||||
.ToList();
|
.ToList();
|
||||||
var pdfsDownloaded = boolResults.Count(r => r);
|
var pdfsDownloaded = boolResults.Count(r => r);
|
||||||
var pdfsNotDownloaded = boolResults.Count(r => !r);
|
var pdfsNotDownloaded = boolResults.Count(r => !r);
|
||||||
|
|||||||
49
ApplicationServices/TransitionalFileLocator.cs
Normal file
49
ApplicationServices/TransitionalFileLocator.cs
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using DataLayer;
|
||||||
|
using FileManager;
|
||||||
|
|
||||||
|
namespace ApplicationServices
|
||||||
|
{
|
||||||
|
public static class TransitionalFileLocator
|
||||||
|
{
|
||||||
|
public static string Audio_GetPath(string productId)
|
||||||
|
{
|
||||||
|
var book = DbContexts.GetContext().GetBook_Flat_NoTracking(productId);
|
||||||
|
var loc = book?.UserDefinedItem?.BookLocation ?? "";
|
||||||
|
if (File.Exists(loc))
|
||||||
|
return loc;
|
||||||
|
|
||||||
|
return AudibleFileStorage.Audio.GetPath(productId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool PDF_Exists(string productId)
|
||||||
|
{
|
||||||
|
var book = DbContexts.GetContext().GetBook_Flat_NoTracking(productId);
|
||||||
|
var status = book?.UserDefinedItem?.PdfStatus;
|
||||||
|
if (status.HasValue && status.Value == LiberatedStatus.Liberated)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return AudibleFileStorage.PDF.Exists(productId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool Audio_Exists(string productId)
|
||||||
|
{
|
||||||
|
var book = DbContexts.GetContext().GetBook_Flat_NoTracking(productId);
|
||||||
|
var status = book?.UserDefinedItem?.BookStatus;
|
||||||
|
// true since Error == libhack
|
||||||
|
if (status != LiberatedStatus.NotLiberated)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return AudibleFileStorage.Audio.Exists(productId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool AAXC_Exists(string productId)
|
||||||
|
{
|
||||||
|
// this one will actually stay the same. centralizing helps with organization in the interim though
|
||||||
|
return AudibleFileStorage.AAXC.Exists(productId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -24,7 +24,7 @@ namespace FileLiberator
|
|||||||
public DownloadPdf DownloadPdf { get; } = new DownloadPdf();
|
public DownloadPdf DownloadPdf { get; } = new DownloadPdf();
|
||||||
|
|
||||||
public bool Validate(LibraryBook libraryBook)
|
public bool Validate(LibraryBook libraryBook)
|
||||||
=> !AudibleFileStorage.Audio.Exists(libraryBook.Book.AudibleProductId);
|
=> !ApplicationServices.TransitionalFileLocator.Audio_Exists(libraryBook.Book.AudibleProductId);
|
||||||
|
|
||||||
// do NOT use ConfigureAwait(false) on ProcessAsync()
|
// do NOT use ConfigureAwait(false) on ProcessAsync()
|
||||||
// often calls events which prints to forms in the UI context
|
// often calls events which prints to forms in the UI context
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
using AAXClean;
|
using AAXClean;
|
||||||
using DataLayer;
|
using DataLayer;
|
||||||
|
using Dinah.Core;
|
||||||
using Dinah.Core.ErrorHandling;
|
using Dinah.Core.ErrorHandling;
|
||||||
using Dinah.Core.IO;
|
using Dinah.Core.IO;
|
||||||
using FileManager;
|
using FileManager;
|
||||||
@ -28,23 +29,15 @@ namespace FileLiberator
|
|||||||
|
|
||||||
private Mp4File m4bBook;
|
private Mp4File m4bBook;
|
||||||
|
|
||||||
private string Mp3FileName(LibraryBook libraryBook)
|
private string Mp3FileName(string m4bPath) => m4bPath is null ? string.Empty : PathLib.ReplaceExtension(m4bPath, ".mp3");
|
||||||
|
|
||||||
|
public void Cancel() => m4bBook?.Cancel();
|
||||||
|
|
||||||
|
public bool Validate(LibraryBook libraryBook)
|
||||||
{
|
{
|
||||||
string m4bPath = AudibleFileStorage.Audio.GetPath(libraryBook.Book.AudibleProductId);
|
var path = ApplicationServices.TransitionalFileLocator.Audio_GetPath(libraryBook.Book.AudibleProductId);
|
||||||
|
return path?.ToLower()?.EndsWith(".m4b") == true && !File.Exists(Mp3FileName(path));
|
||||||
if (m4bPath is null)
|
|
||||||
return string.Empty;
|
|
||||||
|
|
||||||
return Path.Combine(Path.GetDirectoryName(m4bPath), Path.GetFileNameWithoutExtension(m4bPath) + ".mp3");
|
|
||||||
}
|
}
|
||||||
public void Cancel()
|
|
||||||
{
|
|
||||||
m4bBook?.Cancel();
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool Validate(LibraryBook libraryBook) =>
|
|
||||||
AudibleFileStorage.Audio.GetPath(libraryBook.Book.AudibleProductId)?.ToLower()?.EndsWith(".m4b") == true &&
|
|
||||||
!File.Exists(Mp3FileName(libraryBook));
|
|
||||||
|
|
||||||
public async Task<StatusHandler> ProcessAsync(LibraryBook libraryBook)
|
public async Task<StatusHandler> ProcessAsync(LibraryBook libraryBook)
|
||||||
{
|
{
|
||||||
@ -54,7 +47,7 @@ namespace FileLiberator
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var m4bPath = AudibleFileStorage.Audio.GetPath(libraryBook.Book.AudibleProductId);
|
var m4bPath = ApplicationServices.TransitionalFileLocator.Audio_GetPath(libraryBook.Book.AudibleProductId);
|
||||||
|
|
||||||
m4bBook = new Mp4File(m4bPath, FileAccess.Read);
|
m4bBook = new Mp4File(m4bPath, FileAccess.Read);
|
||||||
m4bBook.ConversionProgressUpdate += M4bBook_ConversionProgressUpdate;
|
m4bBook.ConversionProgressUpdate += M4bBook_ConversionProgressUpdate;
|
||||||
@ -64,13 +57,13 @@ namespace FileLiberator
|
|||||||
NarratorsDiscovered?.Invoke(this, m4bBook.AppleTags.Narrator);
|
NarratorsDiscovered?.Invoke(this, m4bBook.AppleTags.Narrator);
|
||||||
CoverImageFilepathDiscovered?.Invoke(this, m4bBook.AppleTags.Cover);
|
CoverImageFilepathDiscovered?.Invoke(this, m4bBook.AppleTags.Cover);
|
||||||
|
|
||||||
var mp3File = File.OpenWrite(Path.GetTempFileName());
|
using var mp3File = File.OpenWrite(Path.GetTempFileName());
|
||||||
|
|
||||||
var result = await Task.Run(() => m4bBook.ConvertToMp3(mp3File));
|
var result = await Task.Run(() => m4bBook.ConvertToMp3(mp3File));
|
||||||
m4bBook.InputStream.Close();
|
m4bBook.InputStream.Close();
|
||||||
mp3File.Close();
|
mp3File.Close();
|
||||||
|
|
||||||
var mp3Path = Mp3FileName(libraryBook);
|
var mp3Path = Mp3FileName(m4bPath);
|
||||||
|
|
||||||
FileExt.SafeMove(mp3File.Name, mp3Path);
|
FileExt.SafeMove(mp3File.Name, mp3Path);
|
||||||
|
|
||||||
@ -101,6 +94,5 @@ namespace FileLiberator
|
|||||||
|
|
||||||
UpdateProgress?.Invoke(this, (int)progressPercent);
|
UpdateProgress?.Invoke(this, (int)progressPercent);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -34,7 +34,7 @@ namespace FileLiberator
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (AudibleFileStorage.Audio.Exists(libraryBook.Book.AudibleProductId))
|
if (ApplicationServices.TransitionalFileLocator.Audio_Exists(libraryBook.Book.AudibleProductId))
|
||||||
return new StatusHandler { "Cannot find decrypt. Final audio file already exists" };
|
return new StatusHandler { "Cannot find decrypt. Final audio file already exists" };
|
||||||
|
|
||||||
var outputAudioFilename = await aaxToM4bConverterDecryptAsync(AudibleFileStorage.DownloadsInProgress, AudibleFileStorage.DecryptInProgress, libraryBook);
|
var outputAudioFilename = await aaxToM4bConverterDecryptAsync(AudibleFileStorage.DownloadsInProgress, AudibleFileStorage.DecryptInProgress, libraryBook);
|
||||||
@ -46,14 +46,12 @@ namespace FileLiberator
|
|||||||
// moves files and returns dest dir
|
// moves files and returns dest dir
|
||||||
_ = moveFilesToBooksDir(libraryBook.Book, outputAudioFilename);
|
_ = moveFilesToBooksDir(libraryBook.Book, outputAudioFilename);
|
||||||
|
|
||||||
var finalAudioExists = AudibleFileStorage.Audio.Exists(libraryBook.Book.AudibleProductId);
|
var finalAudioExists = ApplicationServices.TransitionalFileLocator.Audio_Exists(libraryBook.Book.AudibleProductId);
|
||||||
if (!finalAudioExists)
|
if (!finalAudioExists)
|
||||||
return new StatusHandler { "Cannot find final audio file after decryption" };
|
return new StatusHandler { "Cannot find final audio file after decryption" };
|
||||||
|
|
||||||
// GetPath() is very cheap when file exists
|
|
||||||
var finalAudioPath = AudibleFileStorage.Audio.GetPath(libraryBook.Book.AudibleProductId);
|
|
||||||
// only need to update if success. if failure, it will remain at 0 == NotLiberated
|
// only need to update if success. if failure, it will remain at 0 == NotLiberated
|
||||||
ApplicationServices.LibraryCommands.UpdateBook(libraryBook, LiberatedStatus.Liberated, finalAudioPath);
|
ApplicationServices.LibraryCommands.UpdateBook(libraryBook, LiberatedStatus.Liberated, outputAudioFilename);
|
||||||
|
|
||||||
return new StatusHandler();
|
return new StatusHandler();
|
||||||
}
|
}
|
||||||
@ -221,7 +219,7 @@ namespace FileLiberator
|
|||||||
}
|
}
|
||||||
|
|
||||||
public bool Validate(LibraryBook libraryBook)
|
public bool Validate(LibraryBook libraryBook)
|
||||||
=> !AudibleFileStorage.Audio.Exists(libraryBook.Book.AudibleProductId);
|
=> !ApplicationServices.TransitionalFileLocator.Audio_Exists(libraryBook.Book.AudibleProductId);
|
||||||
|
|
||||||
public void Cancel()
|
public void Cancel()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -15,7 +15,7 @@ namespace FileLiberator
|
|||||||
{
|
{
|
||||||
public override bool Validate(LibraryBook libraryBook)
|
public override bool Validate(LibraryBook libraryBook)
|
||||||
=> !string.IsNullOrWhiteSpace(getdownloadUrl(libraryBook))
|
=> !string.IsNullOrWhiteSpace(getdownloadUrl(libraryBook))
|
||||||
&& !AudibleFileStorage.PDF.Exists(libraryBook.Book.AudibleProductId);
|
&& !ApplicationServices.TransitionalFileLocator.PDF_Exists(libraryBook.Book.AudibleProductId);
|
||||||
|
|
||||||
public override async Task<StatusHandler> ProcessItemAsync(LibraryBook libraryBook)
|
public override async Task<StatusHandler> ProcessItemAsync(LibraryBook libraryBook)
|
||||||
{
|
{
|
||||||
@ -32,7 +32,7 @@ namespace FileLiberator
|
|||||||
private static string getProposedDownloadFilePath(LibraryBook libraryBook)
|
private static string getProposedDownloadFilePath(LibraryBook libraryBook)
|
||||||
{
|
{
|
||||||
// if audio file exists, get it's dir. else return base Book dir
|
// if audio file exists, get it's dir. else return base Book dir
|
||||||
var existingPath = Path.GetDirectoryName(AudibleFileStorage.Audio.GetPath(libraryBook.Book.AudibleProductId));
|
var existingPath = Path.GetDirectoryName(ApplicationServices.TransitionalFileLocator.Audio_GetPath(libraryBook.Book.AudibleProductId));
|
||||||
var file = getdownloadUrl(libraryBook);
|
var file = getdownloadUrl(libraryBook);
|
||||||
|
|
||||||
if (existingPath != null)
|
if (existingPath != null)
|
||||||
@ -61,7 +61,7 @@ namespace FileLiberator
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static StatusHandler verifyDownload(LibraryBook libraryBook)
|
private static StatusHandler verifyDownload(LibraryBook libraryBook)
|
||||||
=> !AudibleFileStorage.PDF.Exists(libraryBook.Book.AudibleProductId)
|
=> !ApplicationServices.TransitionalFileLocator.PDF_Exists(libraryBook.Book.AudibleProductId)
|
||||||
? new StatusHandler { "Downloaded PDF cannot be found" }
|
? new StatusHandler { "Downloaded PDF cannot be found" }
|
||||||
: new StatusHandler();
|
: new StatusHandler();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
<!-- <PublishSingleFile>true</PublishSingleFile> -->
|
||||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
|
||||||
<Version>5.4.3.1</Version>
|
<Version>5.4.3.8</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@ -143,7 +143,9 @@ namespace LibationSearchEngine
|
|||||||
return authors.Intersect(narrators).Any();
|
return authors.Intersect(narrators).Any();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool isLiberated(Book book) => book.UserDefinedItem.BookStatus == LiberatedStatus.Liberated || AudibleFileStorage.Audio.Exists(book.AudibleProductId);
|
private static bool isLiberated(Book book)
|
||||||
|
=> book.UserDefinedItem.BookStatus == LiberatedStatus.Liberated
|
||||||
|
|| AudibleFileStorage.Audio.Exists(book.AudibleProductId);
|
||||||
private static bool liberatedError(Book book) => book.UserDefinedItem.BookStatus == LiberatedStatus.Error;
|
private static bool liberatedError(Book book) => book.UserDefinedItem.BookStatus == LiberatedStatus.Error;
|
||||||
|
|
||||||
// use these common fields in the "all" default search field
|
// use these common fields in the "all" default search field
|
||||||
|
|||||||
@ -26,15 +26,15 @@ namespace LibationWinForms
|
|||||||
public enum LiberatedState { NotDownloaded, PartialDownload, Liberated }
|
public enum LiberatedState { NotDownloaded, PartialDownload, Liberated }
|
||||||
[Browsable(false)]
|
[Browsable(false)]
|
||||||
public LiberatedState Liberated_Status
|
public LiberatedState Liberated_Status
|
||||||
=> FileManager.AudibleFileStorage.Audio.Exists(book.AudibleProductId) ? LiberatedState.Liberated
|
=> ApplicationServices.TransitionalFileLocator.Audio_Exists(book.AudibleProductId) ? LiberatedState.Liberated
|
||||||
: FileManager.AudibleFileStorage.AAXC.Exists(book.AudibleProductId) ? LiberatedState.PartialDownload
|
: ApplicationServices.TransitionalFileLocator.AAXC_Exists(book.AudibleProductId) ? LiberatedState.PartialDownload
|
||||||
: LiberatedState.NotDownloaded;
|
: LiberatedState.NotDownloaded;
|
||||||
|
|
||||||
public enum PdfState { NoPdf, Downloaded, NotDownloaded }
|
public enum PdfState { NoPdf, Downloaded, NotDownloaded }
|
||||||
[Browsable(false)]
|
[Browsable(false)]
|
||||||
public PdfState Pdf_Status
|
public PdfState Pdf_Status
|
||||||
=> !book.Supplements.Any() ? PdfState.NoPdf
|
=> !book.Supplements.Any() ? PdfState.NoPdf
|
||||||
: FileManager.AudibleFileStorage.PDF.Exists(book.AudibleProductId) ? PdfState.Downloaded
|
: ApplicationServices.TransitionalFileLocator.PDF_Exists(book.AudibleProductId) ? PdfState.Downloaded
|
||||||
: PdfState.NotDownloaded;
|
: PdfState.NotDownloaded;
|
||||||
|
|
||||||
// displayValues is what gets displayed
|
// displayValues is what gets displayed
|
||||||
|
|||||||
@ -173,9 +173,9 @@ namespace LibationWinForms
|
|||||||
var productId = getGridEntry(e.RowIndex).GetBook().AudibleProductId;
|
var productId = getGridEntry(e.RowIndex).GetBook().AudibleProductId;
|
||||||
|
|
||||||
// liberated: open explorer to file
|
// liberated: open explorer to file
|
||||||
if (FileManager.AudibleFileStorage.Audio.Exists(productId))
|
if (TransitionalFileLocator.Audio_Exists(productId))
|
||||||
{
|
{
|
||||||
var filePath = FileManager.AudibleFileStorage.Audio.GetPath(productId);
|
var filePath = TransitionalFileLocator.Audio_GetPath(productId);
|
||||||
if (!Go.To.File(filePath))
|
if (!Go.To.File(filePath))
|
||||||
MessageBox.Show($"File not found:\r\n{filePath}");
|
MessageBox.Show($"File not found:\r\n{filePath}");
|
||||||
return;
|
return;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user