Task #83727
closedEpic #83894: PSR-15 Initiative
Reimplement EXT:redirect as PSR-15 middleware
100%
Description
The redirect handling is a perfect usecase of PSR-15 middlewares.
Redirect handling wants to a) prevent the regular frontend rendering and b) return an own response. c) in case a no redirect matches it want's the regular RequestHandler to be invoked.
a) is doable by not invoking the RequestHandler a middleware gets passed by parameter
b) is simple by simply returning an own PSR-7 Response
c) is the standard case for a middleware.
Updated by Benjamin Franzke almost 7 years ago
- Related to Feature #83725: Introduce PSR-15 HTTP Middleware support added
Updated by Gerrit Code Review almost 7 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55539
Updated by Gerrit Code Review almost 7 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55539
Updated by Gerrit Code Review almost 7 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55539
Updated by Gerrit Code Review almost 7 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55539
Updated by Benjamin Franzke almost 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset f70522cf99ce4edab25df7d232c271723123aaad.
Updated by Susanne Moog almost 7 years ago
- Parent task changed from #83652 to #83894