Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable30] fix(FolderManager): Use placeholder value for default quota instead of the current value on creation #3327

Merged
merged 3 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions lib/Folder/FolderManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\FileInfo;
use OCP\Files\IMimeTypeLoader;
use OCP\Files\IRootFolder;
use OCP\IConfig;
Expand All @@ -34,6 +35,7 @@
class FolderManager {
public const ENTITY_GROUP = 1;
public const ENTITY_CIRCLE = 2;
public const SPACE_DEFAULT = -4;

public function __construct(
private IDBConnection $connection,
Expand Down Expand Up @@ -68,7 +70,7 @@ public function getAllFolders(): array {
'id' => $id,
'mount_point' => $row['mount_point'],
'groups' => $applicableMap[$id] ?? [],
'quota' => (int)$row['quota'],
'quota' => $this->getRealQuota((int)$row['quota']),
'size' => 0,
'acl' => (bool)$row['acl']
];
Expand Down Expand Up @@ -126,7 +128,7 @@ public function getAllFoldersWithSize(int $rootStorageId): array {
'id' => $id,
'mount_point' => $row['mount_point'],
'groups' => $applicableMap[$id] ?? [],
'quota' => (int)$row['quota'],
'quota' => $this->getRealQuota((int)$row['quota']),
'size' => $row['size'] ? (int)$row['size'] : 0,
'acl' => (bool)$row['acl'],
'manage' => $this->getManageAcl($mappings)
Expand Down Expand Up @@ -171,7 +173,7 @@ public function getAllFoldersForUserWithSize(int $rootStorageId, IUser $user): a
'id' => $id,
'mount_point' => $row['mount_point'],
'groups' => $applicableMap[$id] ?? [],
'quota' => (int)$row['quota'],
'quota' => $this->getRealQuota((int)$row['quota']),
'size' => $row['size'] ? (int)$row['size'] : 0,
'acl' => (bool)$row['acl'],
'manage' => $this->getManageAcl($mappings)
Expand Down Expand Up @@ -258,7 +260,7 @@ private function getManageAcl(array $mappings): array {
* @return array{id: mixed, mount_point: mixed, groups: array<string, array{displayName: string, type: string, permissions: integer}>, quota: int, size: int, acl: bool}|false
* @throws Exception
*/
public function getFolder(int $id, int $rootStorageId) {
public function getFolder(int $id, int $rootStorageId = 0) {
$applicableMap = $this->getAllApplicable();

$query = $this->connection->getQueryBuilder();
Expand All @@ -277,7 +279,7 @@ public function getFolder(int $id, int $rootStorageId) {
'id' => $id,
'mount_point' => (string)$row['mount_point'],
'groups' => $applicableMap[$id] ?? [],
'quota' => (int)$row['quota'],
'quota' => $this->getRealQuota((int)$row['quota']),
'size' => $row['size'] ? $row['size'] : 0,
'acl' => (bool)$row['acl'],
'manage' => $this->getManageAcl($folderMappings)
Expand Down Expand Up @@ -524,7 +526,7 @@ public function getFoldersForGroup(string $groupId, int $rootStorageId = 0): arr
'folder_id' => (int)$folder['folder_id'],
'mount_point' => (string)$folder['mount_point'],
'permissions' => (int)$folder['group_permissions'],
'quota' => (int)$folder['quota'],
'quota' => $this->getRealQuota((int)$folder['quota']),
'acl' => (bool)$folder['acl'],
'rootCacheEntry' => (isset($folder['fileid'])) ? Cache::cacheEntryFromData($folder, $this->mimeTypeLoader) : null
];
Expand Down Expand Up @@ -582,7 +584,7 @@ public function getFoldersForGroups(array $groupIds, int $rootStorageId = 0): ar
'folder_id' => (int)$folder['folder_id'],
'mount_point' => (string)$folder['mount_point'],
'permissions' => (int)$folder['group_permissions'],
'quota' => (int)$folder['quota'],
'quota' => $this->getRealQuota((int)$folder['quota']),
'acl' => (bool)$folder['acl'],
'rootCacheEntry' => (isset($folder['fileid'])) ? Cache::cacheEntryFromData($folder, $this->mimeTypeLoader) : null
];
Expand Down Expand Up @@ -645,7 +647,7 @@ public function getFoldersFromCircleMemberships(IUser $user, int $rootStorageId
'folder_id' => (int)$folder['folder_id'],
'mount_point' => (string)$folder['mount_point'],
'permissions' => (int)$folder['group_permissions'],
'quota' => (int)$folder['quota'],
'quota' => $this->getRealQuota((int)$folder['quota']),
'acl' => (bool)$folder['acl'],
'rootCacheEntry' => (isset($folder['fileid'])) ? Cache::cacheEntryFromData($folder, $this->mimeTypeLoader) : null
];
Expand All @@ -657,14 +659,12 @@ public function getFoldersFromCircleMemberships(IUser $user, int $rootStorageId
* @throws Exception
*/
public function createFolder(string $mountPoint): int {
$defaultQuota = $this->config->getSystemValueInt('groupfolders.quota.default', -3);

$query = $this->connection->getQueryBuilder();

$query->insert('group_folders')
->values([
'mount_point' => $query->createNamedParameter($mountPoint),
'quota' => $defaultQuota,
'quota' => self::SPACE_DEFAULT,
]);
$query->executeStatement();
$id = $query->getLastInsertId();
Expand Down Expand Up @@ -971,4 +971,18 @@ public function isCirclesAvailable(?CirclesManager &$circlesManager = null): boo

return true;
}

private function getRealQuota(int $quota): int {
if ($quota === self::SPACE_DEFAULT) {
$defaultQuota = $this->config->getSystemValueInt('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED);
// Prevent setting the default quota option to be the default quota value creating an unresolvable self reference
if ($defaultQuota <= 0 && $defaultQuota !== FileInfo::SPACE_UNLIMITED) {
throw new \Exception('Default Groupfolder quota value ' . $defaultQuota . ' is not allowed');
}

return $defaultQuota;
}

return $quota;
}
}
1 change: 1 addition & 0 deletions src/settings/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { loadState } from '@nextcloud/initial-state'

const bytesInOneGibibyte = Math.pow(1024, 3)
const defaultQuotaOptions = {
Default: -4,
'1 GB': bytesInOneGibibyte,
'5 GB': bytesInOneGibibyte * 5,
'10 GB': bytesInOneGibibyte * 10,
Expand Down
79 changes: 73 additions & 6 deletions tests/Folder/FolderManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use OCA\GroupFolders\Folder\FolderManager;
use OCP\Constants;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Files\FileInfo;
use OCP\Files\IMimeTypeLoader;
use OCP\IConfig;
use OCP\IDBConnection;
Expand Down Expand Up @@ -36,10 +37,6 @@ protected function setUp(): void {
$this->logger = $this->createMock(LoggerInterface::class);
$this->eventDispatcher = $this->createMock(IEventDispatcher::class);
$this->config = $this->createMock(IConfig::class);
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', -3)
->willReturn(-3);
$this->manager = new FolderManager(
\OC::$server->getDatabaseConnection(),
$this->groupManager,
Expand Down Expand Up @@ -73,7 +70,7 @@ private function assertHasFolders($folders) {
$folder['size'] = 0;
}
if (!isset($folder['quota'])) {
$folder['quota'] = -3;
$folder['quota'] = FileInfo::SPACE_UNLIMITED;
}
if (!isset($folder['acl'])) {
$folder['acl'] = false;
Expand All @@ -87,6 +84,11 @@ private function assertHasFolders($folders) {
}

public function testCreateFolder() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$this->manager->createFolder('foo');

$this->assertHasFolders([
Expand All @@ -95,6 +97,11 @@ public function testCreateFolder() {
}

public function testSetMountpoint() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->createFolder('bar');

Expand All @@ -107,6 +114,11 @@ public function testSetMountpoint() {
}

public function testAddApplicable() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$folderId2 = $this->manager->createFolder('bar');
$this->manager->addApplicableGroup($folderId1, 'g1');
Expand Down Expand Up @@ -152,6 +164,11 @@ public function testAddApplicable() {
}

public function testSetPermissions() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->addApplicableGroup($folderId1, 'g1');
$this->manager->addApplicableGroup($folderId1, 'g2');
Expand Down Expand Up @@ -180,6 +197,11 @@ public function testSetPermissions() {
}

public function testRemoveApplicable() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$folderId2 = $this->manager->createFolder('bar');
$this->manager->addApplicableGroup($folderId1, 'g1');
Expand Down Expand Up @@ -223,6 +245,11 @@ public function testRemoveApplicable() {
}

public function testRemoveFolder() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->createFolder('bar');

Expand All @@ -234,6 +261,11 @@ public function testRemoveFolder() {
}

public function testRenameFolder() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->createFolder('other');

Expand All @@ -246,6 +278,11 @@ public function testRenameFolder() {
}

public function testSetACL() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->createFolder('other');

Expand All @@ -265,6 +302,11 @@ public function testSetACL() {
}

public function testGetFoldersForGroup() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->addApplicableGroup($folderId1, 'g1');
$this->manager->addApplicableGroup($folderId1, 'g2');
Expand All @@ -278,6 +320,11 @@ public function testGetFoldersForGroup() {
}

public function testGetFoldersForGroups() {
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturn(FileInfo::SPACE_UNLIMITED);

$folderId1 = $this->manager->createFolder('foo');
$this->manager->addApplicableGroup($folderId1, 'g1');
$this->manager->addApplicableGroup($folderId1, 'g2');
Expand Down Expand Up @@ -324,7 +371,7 @@ public function testGetFoldersForUserSimple() {
'folder_id' => 1,
'mount_point' => 'foo',
'permissions' => 31,
'quota' => -3
'quota' => FileInfo::SPACE_UNLIMITED,
];

$manager->expects($this->once())
Expand Down Expand Up @@ -402,4 +449,24 @@ public function testGetFolderPermissionsForUserMerge() {
$permissions = $manager->getFolderPermissionsForUser($this->getUser(['g1', 'g2', 'g3']), 2);
$this->assertEquals(0, $permissions);
}

public function testQuotaDefaultValue(): void {
$folderId1 = $this->manager->createFolder('foo');

$exponent = 3;
$this->config->expects($this->any())
->method('getSystemValueInt')
->with('groupfolders.quota.default', FileInfo::SPACE_UNLIMITED)
->willReturnCallback(function () use (&$exponent) {
return 1024 ** ($exponent++);
});

/** @var array $folder */
$folder = $this->manager->getFolder($folderId1);
$this->assertEquals(1024 ** 3, $folder['quota']);

/** @var array $folder */
$folder = $this->manager->getFolder($folderId1);
$this->assertEquals(1024 ** 4, $folder['quota']);
}
}
Loading