mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #38104 from nextcloud/feat/um-32-bit
This commit is contained in:
commit
972b2097d0
5 changed files with 10 additions and 9 deletions
|
|
@ -211,7 +211,7 @@ class CalendarMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getEstimatedExportSize(IUser $user): int {
|
||||
public function getEstimatedExportSize(IUser $user): int|float {
|
||||
$calendarExports = $this->getCalendarExports($user, new NullOutput());
|
||||
$calendarCount = count($calendarExports);
|
||||
|
||||
|
|
@ -230,7 +230,7 @@ class CalendarMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
// 450B for each component (events, todos, alarms, etc.)
|
||||
$size += ($componentCount * 450) / 1024;
|
||||
|
||||
return (int)ceil($size);
|
||||
return ceil($size);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ class ContactsMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getEstimatedExportSize(IUser $user): int {
|
||||
public function getEstimatedExportSize(IUser $user): int|float {
|
||||
$addressBookExports = $this->getAddressBookExports($user, new NullOutput());
|
||||
$addressBookCount = count($addressBookExports);
|
||||
|
||||
|
|
@ -217,7 +217,7 @@ class ContactsMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
// 350B for each contact
|
||||
$size += ($contactsCount * 350) / 1024;
|
||||
|
||||
return (int)ceil($size);
|
||||
return ceil($size);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class TrashbinMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getEstimatedExportSize(IUser $user): int {
|
||||
public function getEstimatedExportSize(IUser $user): int|float {
|
||||
$uid = $user->getUID();
|
||||
|
||||
try {
|
||||
|
|
@ -75,7 +75,7 @@ class TrashbinMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
if (!$trashbinFolder instanceof Folder) {
|
||||
return 0;
|
||||
}
|
||||
return (int)ceil($trashbinFolder->getSize() / 1024);
|
||||
return ceil($trashbinFolder->getSize() / 1024);
|
||||
} catch (\Throwable $e) {
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ class AccountMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public function getEstimatedExportSize(IUser $user): int {
|
||||
public function getEstimatedExportSize(IUser $user): int|float {
|
||||
$size = 100; // 100KiB for account JSON
|
||||
|
||||
try {
|
||||
|
|
@ -97,7 +97,7 @@ class AccountMigrator implements IMigrator, ISizeEstimationMigrator {
|
|||
// Skip avatar in size estimate on failure
|
||||
}
|
||||
|
||||
return (int)ceil($size);
|
||||
return ceil($size);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ interface ISizeEstimationMigrator {
|
|||
* Should be fast, favor performance over accuracy.
|
||||
*
|
||||
* @since 25.0.0
|
||||
* @since 27.0.0 return value may overflow from int to float
|
||||
*/
|
||||
public function getEstimatedExportSize(IUser $user): int;
|
||||
public function getEstimatedExportSize(IUser $user): int|float;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue