Skip to content

Commit

Permalink
FIX Use canDelete, not the now-deleted canArchive (silverstripe#1482)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored and emteknetnz committed Aug 19, 2024
1 parent 5f5db33 commit e75b318
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
5 changes: 1 addition & 4 deletions code/Controller/AssetAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
use SilverStripe\Control\HTTPRequest;
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Core\Injector\Injector;
use SilverStripe\Dev\Deprecation;
use SilverStripe\Forms\Form;
use SilverStripe\Forms\FormFactory;
use SilverStripe\ORM\ArrayList;
Expand Down Expand Up @@ -1082,9 +1081,7 @@ public function getObjectFromData(File $file, $thumbnailLinks = true)
$object['filename'] = $file->Filename;
$object['url'] = $file->AbsoluteURL;
$object['canEdit'] = $file->canEdit();
$object['canDelete'] = ($file->hasMethod('canArchive'))
? Deprecation::withNoReplacement(fn() => $file->canArchive())
: $file->canDelete();
$object['canDelete'] = $file->canDelete();

$owner = $file->Owner();

Expand Down
4 changes: 1 addition & 3 deletions code/GraphQL/Resolvers/AssetAdminResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use SilverStripe\ORM\Filterable;
use SilverStripe\Versioned\Versioned;
use InvalidArgumentException;
use SilverStripe\Dev\Deprecation;

/**
* @deprecated 5.3.0 Will be moved to the silverstripe/graphql module
Expand Down Expand Up @@ -137,8 +136,7 @@ public static function resolveDeleteFiles($object, array $args, $context, Resolv
$deletedIDs = [];
$member = UserContextProvider::get($context);
foreach ($files as $file) {
$canArchive = Deprecation::withNoReplacement(fn() => $file->canArchive($member));
if ($canArchive) {
if ($file->canDelete($member)) {
$file->doArchive();
$deletedIDs[] = $file->ID;
}
Expand Down
8 changes: 0 additions & 8 deletions tests/php/Controller/AssetAdminTest/FileExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ public function canDelete($member = null)
}
}

public function canArchive($member = null)
{
if ($this->owner->Name === 'disallowCanDelete.txt') {
return false;
}
return $this->owner->canDelete($member);
}


public function canCreate($member = null, $context = [])
{
Expand Down

0 comments on commit e75b318

Please sign in to comment.