146 lines
6.9 KiB
C#
146 lines
6.9 KiB
C#
using TrafagSalesExporter.Models;
|
|
|
|
namespace TrafagSalesExporter.Services.DataSources;
|
|
|
|
public sealed class ManualExcelDataSourceAdapter : IDataSourceAdapter
|
|
{
|
|
private readonly ISharePointUploadService _sharePointService;
|
|
private readonly IManualExcelImportService _manualExcelImportService;
|
|
private readonly IAppEventLogService _appEventLogService;
|
|
|
|
public ManualExcelDataSourceAdapter(
|
|
ISharePointUploadService sharePointService,
|
|
IManualExcelImportService manualExcelImportService,
|
|
IAppEventLogService appEventLogService)
|
|
{
|
|
_sharePointService = sharePointService;
|
|
_manualExcelImportService = manualExcelImportService;
|
|
_appEventLogService = appEventLogService;
|
|
}
|
|
|
|
public string ConnectionKind => SourceSystemConnectionKinds.ManualExcel;
|
|
|
|
public async Task<DataSourceFetchResult> FetchAsync(DataSourceFetchContext context)
|
|
{
|
|
var site = context.Site;
|
|
|
|
if (string.IsNullOrWhiteSpace(site.ManualImportFilePath))
|
|
throw new InvalidOperationException($"Standort '{site.Land}' hat keine manuelle Excel-Datei.");
|
|
|
|
var manualImportPath = site.ManualImportFilePath.Trim();
|
|
string filePath;
|
|
string? localOutputDirectory = null;
|
|
string? sharePointUploadFolder = null;
|
|
var tempManualImportPaths = new List<string>();
|
|
try
|
|
{
|
|
if (File.Exists(manualImportPath))
|
|
{
|
|
filePath = manualImportPath;
|
|
localOutputDirectory = Path.GetDirectoryName(Path.GetFullPath(manualImportPath));
|
|
}
|
|
else if (LooksLikeSharePointReference(manualImportPath))
|
|
{
|
|
var spConfig = context.SharePointConfig
|
|
?? throw new InvalidOperationException(
|
|
"Fuer SharePoint-Manuellimport fehlt eine vollstaendige SharePoint-Konfiguration in Settings.");
|
|
|
|
if (string.IsNullOrWhiteSpace(spConfig.TenantId) ||
|
|
string.IsNullOrWhiteSpace(spConfig.ClientId) ||
|
|
string.IsNullOrWhiteSpace(spConfig.ClientSecret) ||
|
|
string.IsNullOrWhiteSpace(spConfig.SiteUrl))
|
|
{
|
|
throw new InvalidOperationException(
|
|
"Fuer SharePoint-Manuellimport fehlt eine vollstaendige SharePoint-Konfiguration in Settings.");
|
|
}
|
|
|
|
context.UpdateStatus?.Invoke("Manuelle Excel von SharePoint laden...");
|
|
await _appEventLogService.WriteAsync("Export", "Manuelle Excel von SharePoint laden",
|
|
siteId: site.Id, land: site.Land, details: manualImportPath);
|
|
|
|
var sharePointFileReference = manualImportPath;
|
|
var sharePointFileReferences = new List<string>();
|
|
if (LooksLikeSharePointFolderReference(manualImportPath))
|
|
{
|
|
var files = await _sharePointService.ResolveManualImportFilesInFolderAsync(
|
|
spConfig.TenantId, spConfig.ClientId, spConfig.ClientSecret,
|
|
spConfig.SiteUrl, manualImportPath, site.TSC, context.PreferredImportYear);
|
|
sharePointFileReferences.AddRange(files.Select(file => file.FileReference));
|
|
sharePointFileReference = sharePointFileReferences.FirstOrDefault() ?? manualImportPath;
|
|
await _appEventLogService.WriteAsync("Export", "Neueste SharePoint-Datei ausgewaehlt",
|
|
siteId: site.Id, land: site.Land, details: string.Join(" | ", sharePointFileReferences));
|
|
}
|
|
else
|
|
{
|
|
sharePointFileReferences.Add(sharePointFileReference);
|
|
}
|
|
|
|
foreach (var fileReference in sharePointFileReferences)
|
|
{
|
|
tempManualImportPaths.Add(await _sharePointService.DownloadToTempFileAsync(
|
|
spConfig.TenantId, spConfig.ClientId, spConfig.ClientSecret,
|
|
spConfig.SiteUrl, fileReference));
|
|
}
|
|
filePath = sharePointFileReference;
|
|
sharePointUploadFolder = ResolveSharePointParentFolder(sharePointFileReference, spConfig.SiteUrl);
|
|
}
|
|
else
|
|
{
|
|
throw new InvalidOperationException(
|
|
$"Die manuelle Excel-Datei wurde nicht gefunden: {manualImportPath}");
|
|
}
|
|
|
|
context.UpdateStatus?.Invoke("Manuelle Excel lesen...");
|
|
await _appEventLogService.WriteAsync("Export", "Manuelle Excel lesen",
|
|
siteId: site.Id, land: site.Land, details: filePath);
|
|
|
|
var records = new List<SalesRecord>();
|
|
var readPaths = tempManualImportPaths.Count > 0 ? tempManualImportPaths : [filePath];
|
|
foreach (var readPath in readPaths)
|
|
records.AddRange(await _manualExcelImportService.ReadSalesRecordsAsync(readPath, site));
|
|
return new DataSourceFetchResult
|
|
{
|
|
Records = records,
|
|
LocalOutputDirectoryOverride = localOutputDirectory,
|
|
SharePointUploadFolderOverride = sharePointUploadFolder,
|
|
SharePointUploadLandOverride = sharePointUploadFolder is null ? null : string.Empty
|
|
};
|
|
}
|
|
finally
|
|
{
|
|
foreach (var tempManualImportPath in tempManualImportPaths)
|
|
{
|
|
if (File.Exists(tempManualImportPath))
|
|
File.Delete(tempManualImportPath);
|
|
}
|
|
}
|
|
}
|
|
|
|
private static bool LooksLikeSharePointReference(string path)
|
|
=> path.StartsWith("http://", StringComparison.OrdinalIgnoreCase) ||
|
|
path.StartsWith("https://", StringComparison.OrdinalIgnoreCase) ||
|
|
path.StartsWith("/Shared Documents/", StringComparison.OrdinalIgnoreCase) ||
|
|
path.StartsWith("Shared Documents/", StringComparison.OrdinalIgnoreCase);
|
|
|
|
private static bool LooksLikeSharePointFolderReference(string path)
|
|
=> LooksLikeSharePointReference(path) &&
|
|
string.IsNullOrWhiteSpace(Path.GetExtension(path.TrimEnd('/')));
|
|
|
|
private static string ResolveSharePointParentFolder(string fileReference, string siteUrl)
|
|
{
|
|
var remotePath = fileReference.Trim('/').Trim();
|
|
if (Uri.TryCreate(fileReference, UriKind.Absolute, out var fileUri) &&
|
|
Uri.TryCreate(siteUrl, UriKind.Absolute, out var siteUri))
|
|
{
|
|
var absolutePath = Uri.UnescapeDataString(fileUri.AbsolutePath);
|
|
var sitePath = siteUri.AbsolutePath.TrimEnd('/');
|
|
if (absolutePath.StartsWith(sitePath, StringComparison.OrdinalIgnoreCase))
|
|
absolutePath = absolutePath[sitePath.Length..];
|
|
remotePath = absolutePath.Trim('/').Trim();
|
|
}
|
|
|
|
var lastSlash = remotePath.LastIndexOf('/');
|
|
return lastSlash <= 0 ? string.Empty : remotePath[..lastSlash];
|
|
}
|
|
}
|