Refactor: Remove ITokenProvider and SettingsTokenProvider; update StundePage layout and optimize dependency injection configuration.
This commit is contained in:
@@ -13,7 +13,7 @@ internal sealed class ApiClient : IApiClient {
|
|||||||
private readonly ApiOptions _options;
|
private readonly ApiOptions _options;
|
||||||
private readonly IAppSettings _settings;
|
private readonly IAppSettings _settings;
|
||||||
|
|
||||||
public ApiClient(HttpClient http, ApiOptions options, ITokenProvider tokenProvider, IAppSettings settings) {
|
public ApiClient(HttpClient http, ApiOptions options, IAppSettings settings) {
|
||||||
_http = http;
|
_http = http;
|
||||||
_options = options;
|
_options = options;
|
||||||
_settings = settings;
|
_settings = settings;
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
using Jugenddienst_Stunden.Interfaces;
|
|
||||||
|
|
||||||
namespace Jugenddienst_Stunden.Infrastructure;
|
|
||||||
|
|
||||||
internal sealed class SettingsTokenProvider : ITokenProvider {
|
|
||||||
private readonly IAppSettings _settings;
|
|
||||||
public SettingsTokenProvider(IAppSettings settings) => _settings = settings;
|
|
||||||
|
|
||||||
public string GetToken() => _settings.ApiKey;
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
namespace Jugenddienst_Stunden.Interfaces;
|
|
||||||
|
|
||||||
internal interface ITokenProvider {
|
|
||||||
string? GetToken();
|
|
||||||
}
|
|
||||||
@@ -28,26 +28,8 @@ public static class MauiProgram {
|
|||||||
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
|
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
|
||||||
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
|
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
|
||||||
})
|
})
|
||||||
//.UseBarcodeScanning();
|
|
||||||
.UseBarcodeReader();
|
.UseBarcodeReader();
|
||||||
|
|
||||||
//#if DEBUG
|
|
||||||
// if (string.IsNullOrWhiteSpace(GlobalVar.ApiKey)) {
|
|
||||||
// GlobalVar.ApiKey = Preferences.Default.Get("apiKey",
|
|
||||||
// "MTQxfHNkdFptQkNZTXlPT3ZyMHxodHRwOi8vaG91cnMuZGF1bmkubWluZS5udTo4MS9hcHBhcGk=");
|
|
||||||
// GlobalVar.Name = Preferences.Default.Get("name", "Testserver: Isabell");
|
|
||||||
// GlobalVar.Surname = Preferences.Default.Get("surname", "Biasi");
|
|
||||||
// GlobalVar.EmployeeId = Preferences.Default.Get("EmployeeId", 141);
|
|
||||||
// GlobalVar.ApiUrl = Preferences.Default.Get("apiUrl", "https://hours.dauni.mine.nu/appapi");
|
|
||||||
// }
|
|
||||||
|
|
||||||
// builder.Logging.AddDebug();
|
|
||||||
//#endif
|
|
||||||
|
|
||||||
// ApiClient registrieren: SocketsHttpHandler als Primary Handler (vermeidet AndroidMessageHandler-Castfehler)
|
|
||||||
//var apiOptions = new Infrastructure.ApiOptions { BaseUrl = GlobalVar.ApiUrl, Timeout = TimeSpan.FromSeconds(15) };
|
|
||||||
//builder.Services.AddApiHttpClient(apiOptions);
|
|
||||||
|
|
||||||
// DI: AlertService für globale Alerts (z. B. leere ApiUrl)
|
// DI: AlertService für globale Alerts (z. B. leere ApiUrl)
|
||||||
builder.Services.AddSingleton<IAlertService, AlertService>();
|
builder.Services.AddSingleton<IAlertService, AlertService>();
|
||||||
|
|
||||||
@@ -60,49 +42,22 @@ public static class MauiProgram {
|
|||||||
Timeout = TimeSpan.FromSeconds(15)
|
Timeout = TimeSpan.FromSeconds(15)
|
||||||
});
|
});
|
||||||
|
|
||||||
// Token Provider soll ebenfalls aus Settings/Preferences lesen
|
|
||||||
builder.Services.AddSingleton<ITokenProvider, SettingsTokenProvider>();
|
|
||||||
|
|
||||||
// HttpClient + ApiClient
|
// HttpClient + ApiClient Best Practices:
|
||||||
// Configure HttpClient with SocketsHttpHandler (managed) and RequestLoggingHandler
|
// 1. IHttpClientFactory verwenden (vermeidet Socket Exhaustion & DNS Probleme)
|
||||||
|
// 2. Typed Client für bessere Dependency Injection (AddHttpClient<TInterface, TImplementation>)
|
||||||
|
// 3. DelegatingHandler für Logging/Infrastruktur einbinden
|
||||||
builder.Services.AddTransient<RequestLoggingHandler>();
|
builder.Services.AddTransient<RequestLoggingHandler>();
|
||||||
builder.Services.AddSingleton<HttpClient>(sp => {
|
|
||||||
var nativeHandler = new SocketsHttpHandler {
|
builder.Services.AddHttpClient<IApiClient, ApiClient>()
|
||||||
|
.ConfigurePrimaryHttpMessageHandler(() => new SocketsHttpHandler {
|
||||||
AllowAutoRedirect = false,
|
AllowAutoRedirect = false,
|
||||||
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
|
AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
|
||||||
PooledConnectionLifetime = TimeSpan.FromMinutes(5),
|
PooledConnectionLifetime = TimeSpan.FromMinutes(5),
|
||||||
ConnectTimeout = TimeSpan.FromSeconds(10)
|
ConnectTimeout = TimeSpan.FromSeconds(10)
|
||||||
};
|
})
|
||||||
var logging = sp.GetRequiredService<RequestLoggingHandler>();
|
.AddHttpMessageHandler<RequestLoggingHandler>()
|
||||||
logging.InnerHandler = nativeHandler;
|
.SetHandlerLifetime(TimeSpan.FromMinutes(5));
|
||||||
// HttpClient.Timeout will be adjusted by ApiClient if needed
|
|
||||||
return new HttpClient(logging, disposeHandler: true);
|
|
||||||
});
|
|
||||||
|
|
||||||
builder.Services.AddSingleton<IApiClient>(sp => {
|
|
||||||
var alert = sp.GetRequiredService<IAlertService>();
|
|
||||||
try {
|
|
||||||
return new ApiClient(
|
|
||||||
sp.GetRequiredService<HttpClient>(),
|
|
||||||
sp.GetRequiredService<ApiOptions>(),
|
|
||||||
sp.GetRequiredService<ITokenProvider>(),
|
|
||||||
sp.GetRequiredService<IAppSettings>());
|
|
||||||
} catch (Exception e) {
|
|
||||||
// Alert an UI/VM weiterreichen
|
|
||||||
alert.Raise(e.Message);
|
|
||||||
// Fallback: NullApiClient liefert beim Aufruf aussagekräftige Exception
|
|
||||||
return new NullApiClient(e.Message);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// DI: Infrastruktur
|
|
||||||
//builder.Services.AddSingleton(new ApiOptions { BaseUrl = GlobalVar.ApiUrl, Timeout = TimeSpan.FromSeconds(15) });
|
|
||||||
//builder.Services.AddSingleton<ITokenProvider, GlobalVarTokenProvider>();
|
|
||||||
//builder.Services.AddSingleton<HttpClient>(_ => new HttpClient());
|
|
||||||
//builder.Services.AddSingleton<IApiClient>(sp => new ApiClient(
|
|
||||||
// sp.GetRequiredService<HttpClient>(),
|
|
||||||
// sp.GetRequiredService<ApiOptions>(),
|
|
||||||
// sp.GetRequiredService<ITokenProvider>()));
|
|
||||||
|
|
||||||
// DI: Validatoren
|
// DI: Validatoren
|
||||||
builder.Services.AddSingleton<IHoursValidator, HoursValidator>();
|
builder.Services.AddSingleton<IHoursValidator, HoursValidator>();
|
||||||
|
|||||||
@@ -233,6 +233,8 @@ public partial class StundeViewModel : ObservableObject, IQueryAttributable {
|
|||||||
//die soll aber ignoriert werden, weil beim Neueintrag ist das ja Wurscht
|
//die soll aber ignoriert werden, weil beim Neueintrag ist das ja Wurscht
|
||||||
//In dem Fall müssen die Settings aber nochmal geholt werden, weil die dann nicht geladen wurden
|
//In dem Fall müssen die Settings aber nochmal geholt werden, weil die dann nicht geladen wurden
|
||||||
// LoadSettingsAsync();
|
// LoadSettingsAsync();
|
||||||
|
var settings = await _hoursService.GetSettingsAsync();
|
||||||
|
UpdateSettings(settings);
|
||||||
} finally {
|
} finally {
|
||||||
DayTime = new DayTime();
|
DayTime = new DayTime();
|
||||||
DayTime.Day = _date;
|
DayTime.Day = _date;
|
||||||
|
|||||||
@@ -231,7 +231,6 @@ public partial class StundenViewModel : ObservableObject, IQueryAttributable, IN
|
|||||||
" installiert)");
|
" installiert)");
|
||||||
}
|
}
|
||||||
|
|
||||||
//_hour = await HoursBase.LoadData();
|
|
||||||
RefreshProperties();
|
RefreshProperties();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
AlertEvent?.Invoke(this, e.Message);
|
AlertEvent?.Invoke(this, e.Message);
|
||||||
|
|||||||
@@ -21,11 +21,24 @@
|
|||||||
StatusBarStyle="LightContent" />
|
StatusBarStyle="LightContent" />
|
||||||
</ContentPage.Behaviors>
|
</ContentPage.Behaviors>
|
||||||
|
|
||||||
<VerticalStackLayout Spacing="10" Margin="10">
|
<Grid>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
<RowDefinition Height="180"/>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
|
<RowDefinition Height="50"/>
|
||||||
|
<RowDefinition Height="20"/>
|
||||||
|
<RowDefinition Height="40"/>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<Label Text="{Binding SubTitle}" FontSize="Medium" FontAttributes="Bold" Margin="4,0,0,0" />
|
|
||||||
|
|
||||||
<Border>
|
|
||||||
|
<Label Text="{Binding SubTitle}" FontSize="Medium" FontAttributes="Bold" Margin="4,0,0,0" Grid.Row="0" />
|
||||||
|
|
||||||
|
<FlexLayout Direction="Row" AlignItems="Start" Wrap="Wrap" AlignContent="Start" JustifyContent="Start" Grid.Row="1" >
|
||||||
|
|
||||||
|
<Border Margin="0,0,0,10" MinimumHeightRequest="72" FlexLayout.Grow="1">
|
||||||
<Border.Padding>
|
<Border.Padding>
|
||||||
<OnPlatform x:TypeArguments="Thickness" Default="0,15,10,0">
|
<OnPlatform x:TypeArguments="Thickness" Default="0,15,10,0">
|
||||||
<On Platform="Android" Value="0,4,10,8" />
|
<On Platform="Android" Value="0,4,10,8" />
|
||||||
@@ -33,7 +46,7 @@
|
|||||||
</OnPlatform>
|
</OnPlatform>
|
||||||
</Border.Padding>
|
</Border.Padding>
|
||||||
|
|
||||||
<FlexLayout Direction="Row" AlignItems="Start" Wrap="Wrap" JustifyContent="SpaceBetween">
|
<FlexLayout Direction="Row" AlignItems="Start" Wrap="Wrap" JustifyContent="Start" AlignContent="Start">
|
||||||
<HorizontalStackLayout Spacing="10">
|
<HorizontalStackLayout Spacing="10">
|
||||||
<Label Text="Beginn" VerticalTextAlignment="Center" HorizontalTextAlignment="End"
|
<Label Text="Beginn" VerticalTextAlignment="Center" HorizontalTextAlignment="End"
|
||||||
MinimumWidthRequest="60">
|
MinimumWidthRequest="60">
|
||||||
@@ -52,14 +65,16 @@
|
|||||||
</FlexLayout>
|
</FlexLayout>
|
||||||
</Border>
|
</Border>
|
||||||
|
|
||||||
<Border>
|
|
||||||
|
<Border FlexLayout.Grow="1">
|
||||||
<Border.Padding>
|
<Border.Padding>
|
||||||
<OnPlatform x:TypeArguments="Thickness" Default="5">
|
<OnPlatform x:TypeArguments="Thickness" Default="5">
|
||||||
<On Platform="Android" Value="5,4,5,8" />
|
<On Platform="Android" Value="5,4,5,8" />
|
||||||
<On Platform="WPF" Value="5" />
|
<On Platform="WPF" Value="5" />
|
||||||
</OnPlatform>
|
</OnPlatform>
|
||||||
</Border.Padding>
|
</Border.Padding>
|
||||||
<HorizontalStackLayout>
|
|
||||||
|
<HorizontalStackLayout Spacing="10">
|
||||||
<Picker x:Name="pick_gemeinde" Title="Gemeinde" ItemsSource="{Binding OptionsGemeinde}"
|
<Picker x:Name="pick_gemeinde" Title="Gemeinde" ItemsSource="{Binding OptionsGemeinde}"
|
||||||
SelectedItem="{Binding DayTime.GemeindeAktiv, Mode=TwoWay}" ItemDisplayBinding="{Binding Name}"
|
SelectedItem="{Binding DayTime.GemeindeAktiv, Mode=TwoWay}" ItemDisplayBinding="{Binding Name}"
|
||||||
IsVisible="{Binding GemeindeAktivSet}">
|
IsVisible="{Binding GemeindeAktivSet}">
|
||||||
@@ -74,11 +89,13 @@
|
|||||||
</Picker>
|
</Picker>
|
||||||
</HorizontalStackLayout>
|
</HorizontalStackLayout>
|
||||||
</Border>
|
</Border>
|
||||||
|
</FlexLayout>
|
||||||
|
|
||||||
|
|
||||||
<Editor Placeholder="Beschreibung" Text="{Binding DayTime.Description}" MinimumHeightRequest="40"
|
<Editor Placeholder="Beschreibung" Text="{Binding DayTime.Description}" MinimumHeightRequest="40"
|
||||||
AutoSize="TextChanges" FontSize="18" />
|
AutoSize="TextChanges" FontSize="18" Grid.Row="2" />
|
||||||
|
|
||||||
<Grid ColumnDefinitions="*,*" ColumnSpacing="4">
|
<Grid ColumnDefinitions="*,*" ColumnSpacing="4" Grid.Row="3">
|
||||||
<Button Grid.Column="1" Text="Speichern"
|
<Button Grid.Column="1" Text="Speichern"
|
||||||
TextColor="{AppThemeBinding Dark={StaticResource White}, Light={StaticResource White}}"
|
TextColor="{AppThemeBinding Dark={StaticResource White}, Light={StaticResource White}}"
|
||||||
Command="{Binding SaveCommand}" />
|
Command="{Binding SaveCommand}" />
|
||||||
@@ -91,14 +108,14 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
<BoxView HeightRequest="1" Margin="3,10" />
|
<BoxView HeightRequest="1" Margin="3,10" Grid.Row="4" />
|
||||||
|
|
||||||
<Label Text="Noch keine Einträge vorhanden"
|
<Label Text="Noch keine Einträge vorhanden"
|
||||||
IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}, ConverterParameter=Invert}"
|
IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}, ConverterParameter=Invert}"
|
||||||
Margin="6,0,0,0" />
|
Margin="6,0,0,0" Grid.Row="5" />
|
||||||
|
|
||||||
<StackLayout Margin="6,0,0,0"
|
<StackLayout Margin="6,0,0,0"
|
||||||
IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}}">
|
IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}}" Grid.Row="5">
|
||||||
<Label>
|
<Label>
|
||||||
<Label.FormattedText>
|
<Label.FormattedText>
|
||||||
<FormattedString>
|
<FormattedString>
|
||||||
@@ -109,14 +126,17 @@
|
|||||||
</Label>
|
</Label>
|
||||||
</StackLayout>
|
</StackLayout>
|
||||||
|
|
||||||
<ScrollView IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}}">
|
|
||||||
|
|
||||||
<CollectionView
|
<CollectionView
|
||||||
ItemsSource="{Binding DayTimes}"
|
ItemsSource="{Binding DayTimes}"
|
||||||
x:Name="stundeItems" Margin="0"
|
x:Name="stundeItems" Margin="0"
|
||||||
HeightRequest="350"
|
|
||||||
SelectionMode="Single"
|
SelectionMode="Single"
|
||||||
|
VerticalOptions="Start"
|
||||||
SelectionChangedCommand="{Binding SelectEntryCommand}"
|
SelectionChangedCommand="{Binding SelectEntryCommand}"
|
||||||
SelectionChangedCommandParameter="{Binding Source={RelativeSource Self}, Path=SelectedItem}">
|
SelectionChangedCommandParameter="{Binding Source={RelativeSource Self}, Path=SelectedItem}"
|
||||||
|
IsVisible="{Binding DayTimes, Converter={StaticResource CollectionVisibilityConverter}}"
|
||||||
|
Grid.Row="6">
|
||||||
|
|
||||||
<CollectionView.ItemsLayout>
|
<CollectionView.ItemsLayout>
|
||||||
<LinearItemsLayout Orientation="Vertical" ItemSpacing="0" />
|
<LinearItemsLayout Orientation="Vertical" ItemSpacing="0" />
|
||||||
@@ -151,6 +171,8 @@
|
|||||||
</CollectionView.ItemTemplate>
|
</CollectionView.ItemTemplate>
|
||||||
|
|
||||||
</CollectionView>
|
</CollectionView>
|
||||||
</ScrollView>
|
|
||||||
</VerticalStackLayout>
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
</ContentPage>
|
</ContentPage>
|
||||||
@@ -40,12 +40,4 @@ public partial class StundePage : ContentPage {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
//private async Task<bool> ShowConfirm(string title, string message, string ok, string not_ok) {
|
|
||||||
// return await DisplayAlert(title, message, ok, not_ok);
|
|
||||||
//}
|
|
||||||
|
|
||||||
//private async void ShowConfirm(object? sender, ConfirmEventArgs e) {
|
|
||||||
// bool result = await DisplayAlert(e.Title, e.Message, e.Ok, e.NotOk);
|
|
||||||
// e.Result = result;
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user