2021-02-16 18:30:06 +00:00
|
|
|
import 'package:flutter/widgets.dart';
|
2021-02-20 08:24:51 +00:00
|
|
|
import 'package:version/version.dart';
|
2021-02-16 18:30:06 +00:00
|
|
|
|
|
|
|
/// Server static configuration
|
|
|
|
///
|
|
|
|
/// @author Pierre Hubert
|
|
|
|
|
2021-02-18 17:20:50 +00:00
|
|
|
class PasswordPolicy {
|
|
|
|
final bool allowMailInPassword;
|
|
|
|
final bool allowNameInPassword;
|
|
|
|
final int minPasswordLength;
|
|
|
|
final int minNumberUpperCaseLetters;
|
|
|
|
final int minNumberLowerCaseLetters;
|
|
|
|
final int minNumberDigits;
|
|
|
|
final int minNumberSpecialCharacters;
|
|
|
|
final int minCategoriesPresence;
|
|
|
|
|
|
|
|
const PasswordPolicy({
|
|
|
|
@required this.allowMailInPassword,
|
|
|
|
@required this.allowNameInPassword,
|
|
|
|
@required this.minPasswordLength,
|
|
|
|
@required this.minNumberUpperCaseLetters,
|
|
|
|
@required this.minNumberLowerCaseLetters,
|
|
|
|
@required this.minNumberDigits,
|
|
|
|
@required this.minNumberSpecialCharacters,
|
|
|
|
@required this.minCategoriesPresence,
|
|
|
|
}) : assert(allowMailInPassword != null),
|
|
|
|
assert(allowNameInPassword != null),
|
|
|
|
assert(minPasswordLength != null),
|
|
|
|
assert(minNumberUpperCaseLetters != null),
|
|
|
|
assert(minNumberLowerCaseLetters != null),
|
|
|
|
assert(minNumberDigits != null),
|
|
|
|
assert(minNumberSpecialCharacters != null),
|
|
|
|
assert(minCategoriesPresence != null);
|
|
|
|
}
|
|
|
|
|
2021-02-16 18:30:06 +00:00
|
|
|
class ServerDataConservationPolicy {
|
|
|
|
final int minInactiveAccountLifetime;
|
|
|
|
final int minNotificationLifetime;
|
|
|
|
final int minCommentsLifetime;
|
|
|
|
final int minPostsLifetime;
|
|
|
|
final int minConversationMessagesLifetime;
|
|
|
|
final int minLikesLifetime;
|
|
|
|
|
|
|
|
const ServerDataConservationPolicy({
|
|
|
|
@required this.minInactiveAccountLifetime,
|
|
|
|
@required this.minNotificationLifetime,
|
|
|
|
@required this.minCommentsLifetime,
|
|
|
|
@required this.minPostsLifetime,
|
|
|
|
@required this.minConversationMessagesLifetime,
|
|
|
|
@required this.minLikesLifetime,
|
|
|
|
}) : assert(minInactiveAccountLifetime != null),
|
|
|
|
assert(minNotificationLifetime != null),
|
|
|
|
assert(minCommentsLifetime != null),
|
|
|
|
assert(minPostsLifetime != null),
|
|
|
|
assert(minConversationMessagesLifetime != null),
|
|
|
|
assert(minLikesLifetime != null);
|
|
|
|
}
|
|
|
|
|
2021-03-12 15:19:07 +00:00
|
|
|
class ConversationsPolicy {
|
|
|
|
final int minMessageLen;
|
|
|
|
final int maxMessageLen;
|
|
|
|
final List<String> allowedFilesType;
|
|
|
|
final int filesMaxSize;
|
|
|
|
final int writingEventInterval;
|
|
|
|
final int writingEventLifetime;
|
2021-03-12 18:36:42 +00:00
|
|
|
final int maxMessageImageWidth;
|
|
|
|
final int maxMessageImageHeight;
|
|
|
|
final int maxThumbnailWidth;
|
|
|
|
final int maxThumbnailHeight;
|
2021-03-13 10:33:25 +00:00
|
|
|
final int maxLogoWidth;
|
|
|
|
final int maxLogoHeight;
|
2021-03-12 15:19:07 +00:00
|
|
|
|
|
|
|
const ConversationsPolicy({
|
|
|
|
@required this.minMessageLen,
|
|
|
|
@required this.maxMessageLen,
|
|
|
|
@required this.allowedFilesType,
|
|
|
|
@required this.filesMaxSize,
|
|
|
|
@required this.writingEventInterval,
|
|
|
|
@required this.writingEventLifetime,
|
2021-03-12 18:36:42 +00:00
|
|
|
@required this.maxMessageImageWidth,
|
|
|
|
@required this.maxMessageImageHeight,
|
|
|
|
@required this.maxThumbnailWidth,
|
|
|
|
@required this.maxThumbnailHeight,
|
2021-03-13 10:33:25 +00:00
|
|
|
@required this.maxLogoWidth,
|
|
|
|
@required this.maxLogoHeight,
|
2021-03-12 15:19:07 +00:00
|
|
|
}) : assert(minMessageLen != null),
|
|
|
|
assert(maxMessageLen != null),
|
|
|
|
assert(allowedFilesType != null),
|
|
|
|
assert(filesMaxSize != null),
|
|
|
|
assert(writingEventInterval != null),
|
2021-03-12 18:36:42 +00:00
|
|
|
assert(writingEventLifetime != null),
|
|
|
|
assert(maxMessageImageWidth != null),
|
|
|
|
assert(maxMessageImageHeight != null),
|
|
|
|
assert(maxThumbnailWidth != null),
|
2021-03-13 10:33:25 +00:00
|
|
|
assert(maxThumbnailHeight != null),
|
|
|
|
assert(maxLogoWidth != null),
|
|
|
|
assert(maxLogoHeight != null);
|
2021-03-12 15:19:07 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 18:30:06 +00:00
|
|
|
class ServerConfig {
|
2021-02-20 08:24:51 +00:00
|
|
|
final Version minSupportedMobileVersion;
|
2021-02-20 08:35:03 +00:00
|
|
|
final String termsURL;
|
2021-02-20 08:59:21 +00:00
|
|
|
final String playStoreURL;
|
|
|
|
final String androidDirectDownloadURL;
|
2021-02-18 17:20:50 +00:00
|
|
|
final PasswordPolicy passwordPolicy;
|
2021-02-16 18:30:06 +00:00
|
|
|
final ServerDataConservationPolicy dataConservationPolicy;
|
2021-03-12 15:19:07 +00:00
|
|
|
final ConversationsPolicy conversationsPolicy;
|
2021-02-16 18:30:06 +00:00
|
|
|
|
|
|
|
const ServerConfig({
|
2021-02-20 08:24:51 +00:00
|
|
|
@required this.minSupportedMobileVersion,
|
2021-02-20 08:35:03 +00:00
|
|
|
@required this.termsURL,
|
2021-02-20 08:59:21 +00:00
|
|
|
@required this.playStoreURL,
|
|
|
|
@required this.androidDirectDownloadURL,
|
2021-02-18 17:20:50 +00:00
|
|
|
@required this.passwordPolicy,
|
2021-02-16 18:30:06 +00:00
|
|
|
@required this.dataConservationPolicy,
|
2021-03-12 15:19:07 +00:00
|
|
|
@required this.conversationsPolicy,
|
2021-02-20 08:24:51 +00:00
|
|
|
}) : assert(minSupportedMobileVersion != null),
|
2021-02-20 08:35:03 +00:00
|
|
|
assert(termsURL != null),
|
2021-02-20 08:59:21 +00:00
|
|
|
assert(playStoreURL != null),
|
|
|
|
assert(androidDirectDownloadURL != null),
|
2021-02-20 08:24:51 +00:00
|
|
|
assert(passwordPolicy != null),
|
2021-03-12 15:19:07 +00:00
|
|
|
assert(dataConservationPolicy != null),
|
|
|
|
assert(conversationsPolicy != null);
|
2021-02-16 18:30:06 +00:00
|
|
|
}
|