IBX-11780: Decoupled ContentOnTheFlyProcessor from ContentFormProcessor#1969
Open
bnowak wants to merge 2 commits into
Open
IBX-11780: Decoupled ContentOnTheFlyProcessor from ContentFormProcessor#1969bnowak wants to merge 2 commits into
bnowak wants to merge 2 commits into
Conversation
…or by publishing content synchronously via ContentService and added unit tests
bnowak
marked this pull request as ready for review
July 20, 2026 09:43
ibexa-workflow-automation-1
Bot
requested review from
Steveb-p,
ViniTou,
alongosz,
barw4,
ciastektk,
konradoboza,
mikadamczyk,
tbialcz and
wiewiurdp
and removed request for
a team
July 20, 2026 09:44
konradoboza
reviewed
Jul 20, 2026
barw4
approved these changes
Jul 20, 2026
tbialcz
approved these changes
Jul 20, 2026
|
ViniTou
approved these changes
Jul 20, 2026
konradoboza
approved these changes
Jul 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Related PRs:
Description:
ContentOnTheFlyProcessorno longer delegates to content-forms'ContentFormProcessorand no longer reads thecontentevent payload (removed from the publish flow by the ibexa/content-forms counterpart PR). It saves the draft and publishes synchronously viaContentServiceon its own — the same pattern asUserOnTheFlyProcessor— because the UDW handshake response must embed an existing location id, which a deferred (asynchronous) publication cannot provide. On-the-fly publishing therefore stays synchronous regardless of the asynchronous content publishing flag.Implementation note:
ContentOnTheFlyControllerroutes edit-on-the-fly publish throughCONTENT_CREATE_PUBLISH, soprocessCreatePublishhandles bothContentCreateDataandContentUpdateData;processEditPublishwas rewritten for consistency although it is unreachable via the current controller wiring. Unit tests for the processor were added.For QA:
Documentation:
No client-facing impact — internal refactoring; on-the-fly publishing remains synchronous.