You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
/// Configuration class that holds application settings.
|
|
///
|
|
/// This class contains environment-specific configuration values
|
|
/// such as API base URL, Immich settings, and logging settings.
|
|
class AppConfig {
|
|
/// The base URL for API requests.
|
|
final String apiBaseUrl;
|
|
|
|
/// Whether logging is enabled in the application.
|
|
final bool enableLogging;
|
|
|
|
/// Immich server base URL (e.g., 'https://immich.example.com').
|
|
final String immichBaseUrl;
|
|
|
|
/// Immich API key for authentication.
|
|
final String immichApiKey;
|
|
|
|
/// Creates an [AppConfig] instance with the provided values.
|
|
///
|
|
/// [apiBaseUrl] - The base URL for API requests.
|
|
/// [enableLogging] - Whether logging should be enabled.
|
|
/// [immichBaseUrl] - Immich server base URL.
|
|
/// [immichApiKey] - Immich API key for authentication.
|
|
const AppConfig({
|
|
required this.apiBaseUrl,
|
|
required this.enableLogging,
|
|
required this.immichBaseUrl,
|
|
required this.immichApiKey,
|
|
});
|
|
|
|
@override
|
|
String toString() {
|
|
return 'AppConfig(apiBaseUrl: $apiBaseUrl, enableLogging: $enableLogging, '
|
|
'immichBaseUrl: $immichBaseUrl)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
if (identical(this, other)) return true;
|
|
return other is AppConfig &&
|
|
other.apiBaseUrl == apiBaseUrl &&
|
|
other.enableLogging == enableLogging &&
|
|
other.immichBaseUrl == immichBaseUrl &&
|
|
other.immichApiKey == immichApiKey;
|
|
}
|
|
|
|
@override
|
|
int get hashCode =>
|
|
apiBaseUrl.hashCode ^
|
|
enableLogging.hashCode ^
|
|
immichBaseUrl.hashCode ^
|
|
immichApiKey.hashCode;
|
|
}
|
|
|