Skip to content

Commit 5156eae

Browse files
Merge pull request #63809 from nextcloud/backport/62698/stable32
[stable32] Trashbin truncate filename unicode
2 parents 10c03a4 + a93b8a7 commit 5156eae

3 files changed

Lines changed: 36 additions & 8 deletions

File tree

apps/files_trashbin/lib/Trashbin.php

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1230,12 +1230,13 @@ public static function getTrashFilename(string $filename, int $timestamp): strin
12301230
// oc_filecache `name` column has a limit of 250 chars
12311231
$maxLength = 250;
12321232
if ($length > $maxLength) {
1233-
$trashFilename = substr_replace(
1234-
$trashFilename,
1235-
'',
1236-
$maxLength / 2,
1237-
$length - $maxLength
1238-
);
1233+
// truncate at the middle, since the last characters are fairly likely to have meaningful information such as version numbering
1234+
1235+
$charsToRemove = $length - $maxLength + 1;
1236+
$charLength = mb_strlen($trashFilename);
1237+
$start = mb_substr($trashFilename, 0, intdiv($charLength, 2) - $charsToRemove);
1238+
$end = mb_substr($trashFilename, intdiv($charLength, 2));
1239+
return $start . '_' . $end;
12391240
}
12401241
return $trashFilename;
12411242
}

apps/files_trashbin/tests/StorageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ public function testSingleStorageDeleteFolder(): void {
227227
* Test that deleting a file with a long filename puts it into the trashbin.
228228
*/
229229
public function testSingleStorageDeleteLongFilename(): void {
230-
$truncatedFilename = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.txt';
230+
$truncatedFilename = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.txt';
231231

232232
$this->assertTrue($this->userView->file_exists(static::LONG_FILENAME));
233233
$this->userView->unlink(static::LONG_FILENAME);
@@ -246,7 +246,7 @@ public function testSingleStorageDeleteLongFilename(): void {
246246
* Test that deleting a file with the max filename length puts it into the trashbin.
247247
*/
248248
public function testSingleStorageDeleteMaxLengthFilename(): void {
249-
$truncatedFilename = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.txt';
249+
$truncatedFilename = 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.txt';
250250

251251
$this->assertTrue($this->userView->file_exists(static::MAX_FILENAME));
252252
$this->userView->unlink(static::MAX_FILENAME);

apps/files_trashbin/tests/TrashbinTest.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
use OCP\IUserManager;
3131
use OCP\Server;
3232
use OCP\Share\IShare;
33+
use PHPUnit\Framework\Attributes\DataProvider;
3334

3435
/**
3536
* Class Test_Encryption
@@ -697,6 +698,32 @@ public static function loginHelper($user, $create = false) {
697698
\OC_Util::setupFS($user);
698699
Server::get(IRootFolder::class)->getUserFolder($user);
699700
}
701+
702+
public static function trashFilenameProvider(): array {
703+
return [
704+
['foo.txt', 'foo.txt.d1234'],
705+
[
706+
'a_very_long_filename_with_a_lot_a_characters_such_that_it_reaches_the_file_length_limit_and_would_cause_issues_if_we_just_appended_the_'
707+
. 'timestamp_because_then_the_combined_length_would_overflow_the_column_limit_of_the_filecache_and_truncate_in_db.txt',
708+
'a_very_long_filename_with_a_lot_a_characters_such_that_it_reaches_the_file_length_limit_and_would_cause_issues_if_we_just_ded_the_'
709+
. 'timestamp_because_then_the_combined_length_would_overflow_the_column_limit_of_the_filecache_and_truncate_in_db.txt.d1234'
710+
],
711+
[
712+
'a_very_long_filename_with_a_lot_a_characters_such_that_it_reaches_the_file_length_limit_and_would_cause_issues_if_we_just_äøšá_the_'
713+
. 'timestamp_because_then_the_combined_length_would_overflow_the_column_limit_of_the_filecache_and_truncate_in_db.txt',
714+
'a_very_long_filename_with_a_lot_a_characters_such_that_it_reaches_the_file_length_limit_and_would_cause_issues_if_we_ju_á_the_'
715+
. 'timestamp_because_then_the_combined_length_would_overflow_the_column_limit_of_the_filecache_and_truncate_in_db.txt.d1234'
716+
],
717+
];
718+
}
719+
720+
#[DataProvider(methodName: 'trashFilenameProvider')]
721+
public function testGetTrashFilename(string $filename, string $expected): void {
722+
$result = Trashbin::getTrashFilename($filename, 1234);
723+
$this->assertTrue(mb_check_encoding($result, 'UTF-8'));
724+
$this->assertEquals($expected, $result);
725+
$this->assertTrue(strlen($result) <= 250);
726+
}
700727
}
701728

702729

0 commit comments

Comments
 (0)