*/ class BeforeNodeWrittenListener implements IEventListener { public function __construct( private LoggerInterface $logger, private DocumentService $documentService, ) { } public function handle(Event $event): void { if (!$event instanceof BeforeNodeWrittenEvent) { return; } $node = $event->getNode(); if (!$node instanceof File) { return; } if ($this->documentService->isSaveFromText()) { return; } // Reset document session to avoid manual conflict resolution if there's no unsaved steps try { $this->documentService->resetDocument($node->getId()); } catch (DocumentHasUnsavedChangesException|NotFoundException $e) { // Do not throw during event handling in this is expected to happen // DocumentHasUnsavedChangesException: A document editing session is likely ongoing, someone can resolve the conflict // NotFoundException: The event was called oin a file that was just created so a NonExistingFile object is used that has no id yet $this->logger->debug('Reset document skipped in BeforeNodeWrittenEvent', ['exception' => $e]); } } }