mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-04 19:19:29 +01:00
97 lines
4.0 KiB
Dart
97 lines
4.0 KiB
Dart
import 'dart:ui';
|
|
|
|
import 'package:matrix/matrix.dart';
|
|
|
|
abstract class AppConfig {
|
|
static String _applicationName = 'FluffyChat';
|
|
static String get applicationName => _applicationName;
|
|
static String? _applicationWelcomeMessage;
|
|
static String? get applicationWelcomeMessage => _applicationWelcomeMessage;
|
|
static String _defaultHomeserver = 'matrix.org';
|
|
static String get defaultHomeserver => _defaultHomeserver;
|
|
static double bubbleSizeFactor = 1;
|
|
static double fontSizeFactor = 1;
|
|
static Color chatColor = primaryColor;
|
|
static const double messageFontSize = 15.75;
|
|
static const bool allowOtherHomeservers = true;
|
|
static const bool enableRegistration = true;
|
|
static const Color primaryColor = Color(0xFF5625BA);
|
|
static const Color primaryColorLight = Color(0xFFCCBDEA);
|
|
static const Color secondaryColor = Color(0xFF41a2bc);
|
|
static String _privacyUrl =
|
|
'https://gitlab.com/famedly/fluffychat/-/blob/main/PRIVACY.md';
|
|
static String get privacyUrl => _privacyUrl;
|
|
static const String enablePushTutorial =
|
|
'https://www.reddit.com/r/fluffychat/comments/qn6liu/enable_push_notifications_without_google_services/';
|
|
static const String appId = 'im.fluffychat.FluffyChat';
|
|
static const String appOpenUrlScheme = 'im.fluffychat';
|
|
static String _webBaseUrl = 'https://fluffychat.im/web';
|
|
static String get webBaseUrl => _webBaseUrl;
|
|
static const String sourceCodeUrl = 'https://gitlab.com/famedly/fluffychat';
|
|
static const String supportUrl =
|
|
'https://gitlab.com/famedly/fluffychat/issues';
|
|
static const bool enableSentry = true;
|
|
static const String sentryDns =
|
|
'https://glet_5218c8eebefed3cb13511dc675fdbbdb@gitlab.com/api/v4/error_tracking/collector/16112282';
|
|
static bool renderHtml = true;
|
|
static bool hideRedactedEvents = false;
|
|
static bool hideUnknownEvents = true;
|
|
static bool autoplayImages = true;
|
|
static bool sendOnEnter = false;
|
|
static bool experimentalVoip = false;
|
|
static const bool hideTypingUsernames = false;
|
|
static const bool hideAllStateEvents = false;
|
|
static const String inviteLinkPrefix = 'https://matrix.to/#/';
|
|
static const String deepLinkPrefix = 'im.fluffychat://chat/';
|
|
static const String schemePrefix = 'matrix:';
|
|
static const String pushNotificationsChannelId = 'fluffychat_push';
|
|
static const String pushNotificationsChannelName = 'FluffyChat push channel';
|
|
static const String pushNotificationsChannelDescription =
|
|
'Push notifications for FluffyChat';
|
|
static const String pushNotificationsAppId = 'chat.fluffy.fluffychat';
|
|
static const String pushNotificationsGatewayUrl =
|
|
'https://push.fluffychat.im/_matrix/push/v1/notify';
|
|
static const String pushNotificationsPusherFormat = 'event_id_only';
|
|
static const String emojiFontName = 'Noto Emoji';
|
|
static const String emojiFontUrl =
|
|
'https://github.com/googlefonts/noto-emoji/';
|
|
static const double borderRadius = 16.0;
|
|
static const double columnWidth = 360.0;
|
|
|
|
static void loadFromJson(Map<String, dynamic> json) {
|
|
if (json['chat_color'] != null) {
|
|
try {
|
|
chatColor = Color(json['application_name']);
|
|
} catch (e) {
|
|
Logs().w(
|
|
'Invalid color in config.json! Please make sure to define the color in this format: "0xffdd0000"',
|
|
e);
|
|
}
|
|
}
|
|
if (json['application_name'] is String) {
|
|
_applicationName = json['application_name'];
|
|
}
|
|
if (json['application_welcome_message'] is String) {
|
|
_applicationWelcomeMessage = json['application_welcome_message'];
|
|
}
|
|
if (json['default_homeserver'] is String) {
|
|
_defaultHomeserver = json['default_homeserver'];
|
|
}
|
|
if (json['privacy_url'] is String) {
|
|
_webBaseUrl = json['privacy_url'];
|
|
}
|
|
if (json['web_base_url'] is String) {
|
|
_privacyUrl = json['web_base_url'];
|
|
}
|
|
if (json['render_html'] is bool) {
|
|
renderHtml = json['render_html'];
|
|
}
|
|
if (json['hide_redacted_events'] is bool) {
|
|
hideRedactedEvents = json['hide_redacted_events'];
|
|
}
|
|
if (json['hide_unknown_events'] is bool) {
|
|
hideUnknownEvents = json['hide_unknown_events'];
|
|
}
|
|
}
|
|
}
|