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

Check existing location tokens on unconditioned model #50

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

mkrecek234
Copy link
Contributor

@mkrecek234 mkrecek234 commented Jul 3, 2024

File model can have other restrictions, such as status=draft or is_deleted=true. In this case other existing file links cannot be found, and therefore the physical file is deleted, even though records exist with status=linked or is_deleted=false

@@ -108,7 +108,7 @@ protected function init(): void
$this->onHookShort(Model::HOOK_AFTER_DELETE, function () {
$path = $this->get('location');
if ($path && $this->flysystem->fileExists($path)) {
$files = (clone $this->getModel())->addCondition(
$files = (new self($this->getModel()->getPersistence()))->addCondition(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is not ok as model can be extended/modified

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @mvorisek Thank you for your note, but do not understand what you mean: we need to check unconditioned if other tokens exist with the same location. How do we then accomplish this?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

related with atk4/data#1054

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants