2022-07-13 14:23:48 +02:00
|
|
|
//
|
|
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
|
|
//
|
2024-05-15 23:52:52 +02:00
|
|
|
// @dart=2.18
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
|
|
// ignore_for_file: constant_identifier_names
|
|
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
|
|
|
|
part of openapi.api;
|
|
|
|
|
|
|
|
class CreateUserDto {
|
|
|
|
/// Returns a new [CreateUserDto] instance.
|
|
|
|
CreateUserDto({
|
|
|
|
required this.email,
|
2023-08-10 04:01:16 +02:00
|
|
|
this.memoriesEnabled,
|
2023-11-12 03:03:32 +02:00
|
|
|
required this.name,
|
2024-05-02 16:43:18 +02:00
|
|
|
this.notify,
|
2023-08-01 18:49:18 +02:00
|
|
|
required this.password,
|
2024-01-13 02:43:36 +02:00
|
|
|
this.quotaSizeInBytes,
|
2024-03-04 07:40:03 +02:00
|
|
|
this.shouldChangePassword,
|
2023-05-22 05:18:10 +02:00
|
|
|
this.storageLabel,
|
2022-07-13 14:23:48 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
String email;
|
|
|
|
|
2023-08-10 04:01:16 +02:00
|
|
|
///
|
|
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
|
|
/// source code must fall back to having a nullable type.
|
|
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
|
|
///
|
|
|
|
bool? memoriesEnabled;
|
|
|
|
|
2023-11-12 03:03:32 +02:00
|
|
|
String name;
|
|
|
|
|
2024-05-02 16:43:18 +02:00
|
|
|
///
|
|
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
|
|
/// source code must fall back to having a nullable type.
|
|
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
|
|
///
|
|
|
|
bool? notify;
|
|
|
|
|
2023-08-01 18:49:18 +02:00
|
|
|
String password;
|
2023-05-22 05:18:10 +02:00
|
|
|
|
2024-04-23 00:13:44 +02:00
|
|
|
/// Minimum value: 1
|
2024-01-13 02:43:36 +02:00
|
|
|
int? quotaSizeInBytes;
|
|
|
|
|
2024-03-04 07:40:03 +02:00
|
|
|
///
|
|
|
|
/// Please note: This property should have been non-nullable! Since the specification file
|
|
|
|
/// does not include a default value (using the "default:" property), however, the generated
|
|
|
|
/// source code must fall back to having a nullable type.
|
|
|
|
/// Consider adding a "default:" property in the specification file to hide this note.
|
|
|
|
///
|
|
|
|
bool? shouldChangePassword;
|
|
|
|
|
2023-08-01 18:49:18 +02:00
|
|
|
String? storageLabel;
|
feat(server): support for read-only assets and importing existing items in the filesystem (#2715)
* Added read-only flag for assets, endpoint to trigger file import vs upload
* updated fixtures with new property
* if upload is 'read-only', ensure there is no existing asset at the designated originalPath
* added test for file import as well as detecting existing image at read-only destination location
* Added storage service test for a case where it should not move read-only assets
* upload doesn't need the read-only flag available, just importing
* default isReadOnly on import endpoint to true
* formatting fixes
* create-asset dto needs isReadOnly, so set it to false by default on create, updated api generation
* updated code to reflect changes in MR
* fixed read stream promise return type
* new index for originalPath, check for existing path on import, reglardless of user, to prevent duplicates
* refactor: import asset
* chore: open api
* chore: tests
* Added externalPath support for individual users, updated UI to allow this to be set by admin
* added missing var for externalPath in ui
* chore: open api
* fix: compilation issues
* fix: server test
* built api, fixed user-response dto to include externalPath
* reverted accidental commit
* bad commit of duplicate externalPath in user response dto
* fixed tests to include externalPath on expected result
* fix: unit tests
* centralized supported filetypes, perform file type checking of asset and sidecar during file import process
* centralized supported filetype check method to keep regex DRY
* fixed typo
* combined migrations into one
* update api
* Removed externalPath from shared-link code, added column to admin user page whether external paths / import is enabled or not
* update mimetype
* Fixed detect correct mimetype
* revert asset-upload config
* reverted domain.constant
* refactor
* fix mime-type issue
* fix format
---------
Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
2023-06-22 04:33:20 +02:00
|
|
|
|
2022-07-13 14:23:48 +02:00
|
|
|
@override
|
|
|
|
bool operator ==(Object other) => identical(this, other) || other is CreateUserDto &&
|
2024-01-26 18:40:28 +02:00
|
|
|
other.email == email &&
|
|
|
|
other.memoriesEnabled == memoriesEnabled &&
|
|
|
|
other.name == name &&
|
2024-05-02 16:43:18 +02:00
|
|
|
other.notify == notify &&
|
2024-01-26 18:40:28 +02:00
|
|
|
other.password == password &&
|
|
|
|
other.quotaSizeInBytes == quotaSizeInBytes &&
|
2024-03-04 07:40:03 +02:00
|
|
|
other.shouldChangePassword == shouldChangePassword &&
|
2024-01-26 18:40:28 +02:00
|
|
|
other.storageLabel == storageLabel;
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode =>
|
|
|
|
// ignore: unnecessary_parenthesis
|
|
|
|
(email.hashCode) +
|
2023-08-10 04:01:16 +02:00
|
|
|
(memoriesEnabled == null ? 0 : memoriesEnabled!.hashCode) +
|
2023-11-12 03:03:32 +02:00
|
|
|
(name.hashCode) +
|
2024-05-02 16:43:18 +02:00
|
|
|
(notify == null ? 0 : notify!.hashCode) +
|
2023-08-01 18:49:18 +02:00
|
|
|
(password.hashCode) +
|
2024-01-13 02:43:36 +02:00
|
|
|
(quotaSizeInBytes == null ? 0 : quotaSizeInBytes!.hashCode) +
|
2024-03-04 07:40:03 +02:00
|
|
|
(shouldChangePassword == null ? 0 : shouldChangePassword!.hashCode) +
|
2023-08-01 18:49:18 +02:00
|
|
|
(storageLabel == null ? 0 : storageLabel!.hashCode);
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
@override
|
2024-05-02 16:43:18 +02:00
|
|
|
String toString() => 'CreateUserDto[email=$email, memoriesEnabled=$memoriesEnabled, name=$name, notify=$notify, password=$password, quotaSizeInBytes=$quotaSizeInBytes, shouldChangePassword=$shouldChangePassword, storageLabel=$storageLabel]';
|
2022-07-13 14:23:48 +02:00
|
|
|
|
|
|
|
Map<String, dynamic> toJson() {
|
2023-01-10 06:08:45 +02:00
|
|
|
final json = <String, dynamic>{};
|
|
|
|
json[r'email'] = this.email;
|
2023-08-10 04:01:16 +02:00
|
|
|
if (this.memoriesEnabled != null) {
|
|
|
|
json[r'memoriesEnabled'] = this.memoriesEnabled;
|
|
|
|
} else {
|
|
|
|
// json[r'memoriesEnabled'] = null;
|
|
|
|
}
|
2023-11-12 03:03:32 +02:00
|
|
|
json[r'name'] = this.name;
|
2024-05-02 16:43:18 +02:00
|
|
|
if (this.notify != null) {
|
|
|
|
json[r'notify'] = this.notify;
|
|
|
|
} else {
|
|
|
|
// json[r'notify'] = null;
|
|
|
|
}
|
2023-08-01 18:49:18 +02:00
|
|
|
json[r'password'] = this.password;
|
2024-01-13 02:43:36 +02:00
|
|
|
if (this.quotaSizeInBytes != null) {
|
|
|
|
json[r'quotaSizeInBytes'] = this.quotaSizeInBytes;
|
|
|
|
} else {
|
|
|
|
// json[r'quotaSizeInBytes'] = null;
|
|
|
|
}
|
2024-03-04 07:40:03 +02:00
|
|
|
if (this.shouldChangePassword != null) {
|
|
|
|
json[r'shouldChangePassword'] = this.shouldChangePassword;
|
|
|
|
} else {
|
|
|
|
// json[r'shouldChangePassword'] = null;
|
|
|
|
}
|
2023-05-22 05:18:10 +02:00
|
|
|
if (this.storageLabel != null) {
|
|
|
|
json[r'storageLabel'] = this.storageLabel;
|
|
|
|
} else {
|
2023-06-22 20:00:07 +02:00
|
|
|
// json[r'storageLabel'] = null;
|
2023-05-22 05:18:10 +02:00
|
|
|
}
|
2023-01-10 06:08:45 +02:00
|
|
|
return json;
|
2022-07-13 14:23:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns a new [CreateUserDto] instance and imports its values from
|
|
|
|
/// [value] if it's a [Map], null otherwise.
|
|
|
|
// ignore: prefer_constructors_over_static_methods
|
|
|
|
static CreateUserDto? fromJson(dynamic value) {
|
|
|
|
if (value is Map) {
|
|
|
|
final json = value.cast<String, dynamic>();
|
|
|
|
|
|
|
|
return CreateUserDto(
|
|
|
|
email: mapValueOfType<String>(json, r'email')!,
|
2023-08-10 04:01:16 +02:00
|
|
|
memoriesEnabled: mapValueOfType<bool>(json, r'memoriesEnabled'),
|
2023-11-12 03:03:32 +02:00
|
|
|
name: mapValueOfType<String>(json, r'name')!,
|
2024-05-02 16:43:18 +02:00
|
|
|
notify: mapValueOfType<bool>(json, r'notify'),
|
2023-08-01 18:49:18 +02:00
|
|
|
password: mapValueOfType<String>(json, r'password')!,
|
2024-01-13 02:43:36 +02:00
|
|
|
quotaSizeInBytes: mapValueOfType<int>(json, r'quotaSizeInBytes'),
|
2024-03-04 07:40:03 +02:00
|
|
|
shouldChangePassword: mapValueOfType<bool>(json, r'shouldChangePassword'),
|
2023-05-22 05:18:10 +02:00
|
|
|
storageLabel: mapValueOfType<String>(json, r'storageLabel'),
|
2022-07-13 14:23:48 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-05-03 21:27:57 +02:00
|
|
|
static List<CreateUserDto> listFromJson(dynamic json, {bool growable = false,}) {
|
2022-07-13 14:23:48 +02:00
|
|
|
final result = <CreateUserDto>[];
|
|
|
|
if (json is List && json.isNotEmpty) {
|
|
|
|
for (final row in json) {
|
|
|
|
final value = CreateUserDto.fromJson(row);
|
|
|
|
if (value != null) {
|
|
|
|
result.add(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.toList(growable: growable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Map<String, CreateUserDto> mapFromJson(dynamic json) {
|
|
|
|
final map = <String, CreateUserDto>{};
|
|
|
|
if (json is Map && json.isNotEmpty) {
|
|
|
|
json = json.cast<String, dynamic>(); // ignore: parameter_assignments
|
|
|
|
for (final entry in json.entries) {
|
|
|
|
final value = CreateUserDto.fromJson(entry.value);
|
|
|
|
if (value != null) {
|
|
|
|
map[entry.key] = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
// maps a json object with a list of CreateUserDto-objects as value to a dart map
|
|
|
|
static Map<String, List<CreateUserDto>> mapListFromJson(dynamic json, {bool growable = false,}) {
|
|
|
|
final map = <String, List<CreateUserDto>>{};
|
|
|
|
if (json is Map && json.isNotEmpty) {
|
2023-05-03 21:27:57 +02:00
|
|
|
// ignore: parameter_assignments
|
|
|
|
json = json.cast<String, dynamic>();
|
2022-07-13 14:23:48 +02:00
|
|
|
for (final entry in json.entries) {
|
2023-05-03 21:27:57 +02:00
|
|
|
map[entry.key] = CreateUserDto.listFromJson(entry.value, growable: growable,);
|
2022-07-13 14:23:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The list of required keys that must be present in a JSON.
|
|
|
|
static const requiredKeys = <String>{
|
|
|
|
'email',
|
2023-11-12 03:03:32 +02:00
|
|
|
'name',
|
2023-08-01 18:49:18 +02:00
|
|
|
'password',
|
2022-07-13 14:23:48 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|