Page MenuHomePhorge

Fix exception accessing a non-existing EditEngine
ClosedPublic

Authored by aklapper on Apr 19 2024, 10:58.
Tags
None
Referenced Files
F3339381: D25597.1743618925.diff
Tue, Apr 1, 18:35
F3335266: D25597.1743560451.diff
Tue, Apr 1, 02:20
F3331973: D25597.1743516710.diff
Mon, Mar 31, 14:11
F3330202: D25597.1743485470.diff
Mon, Mar 31, 05:31
F3328505: D25597.1743457825.diff
Sun, Mar 30, 21:50
F3324271: D25597.1743398043.diff
Sun, Mar 30, 05:14
F3319554: D25597.1743310167.diff
Sat, Mar 29, 04:49
F3318686: D25597.1743290383.diff
Fri, Mar 28, 23:19

Details

Summary

Trying to access a non-existing edit engine "foo" via the URI /transactions/editengine/foo/ throws an unhandled exception.
PhabricatorEditEngine::getByKey($viewer, $engine_key) is null as $engine_key is non-existing foo.
Thus avoid calling setViewer() on null by splitting into a separate step after a null check.
When null, show a proper 404 error instead.

EXCEPTION: (Error) Call to a member function setViewer() on null at [<phorge>/src/applications/transactions/controller/PhabricatorEditEngineConfigurationListController.php:17]

Closes T15793

Test Plan

While logged in and with sufficient permissions,

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable