Page MenuHomePhorge

Fix numerous PHP 8.1 "strlen(null)" exceptions trying access Configuration page
ClosedPublic

Authored by aklapper on Apr 28 2023, 17:49.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 21, 17:46
Unknown Object (File)
Thu, Apr 11, 03:03
Unknown Object (File)
Wed, Apr 10, 16:56
Unknown Object (File)
Mon, Apr 8, 04:12
Unknown Object (File)
Mon, Apr 1, 01:19
Unknown Object (File)
Sun, Mar 31, 14:30
Unknown Object (File)
Sun, Mar 31, 03:09
Unknown Object (File)
Fri, Mar 29, 22:33

Details

Summary

strlen() was used in Phabricator to check if a generic value is a non-empty string.
This behavior is deprecated since PHP 8.1. Phorge adopts phutil_nonempty_string() as a replacement.

Note: this may highlight other absurd input values that might be worth correcting
instead of just ignoring. If your phutil_nonempty_string() throws an exception, just
report it to Phorge to evaluate and fix together that specific corner case.

Closes T15287

Test Plan

Applied these three changes and /config/ finally rendered in web browser.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

sgtm

src/applications/config/controller/PhabricatorConfigConsoleController.php
88

✅ This is safe to be considered NULL or a string since $branchpoint defined by loadVersion() is so. Alien values will be reported and that is OK.

95

✅ This is safe to be considered NULL or a string since $info['hash'] defined by private loadVersion() is so. Alien values will be reported and that is OK.

263

✅ Noted: $hash is a string since it's a parsing of the stdout.

280

✅ Noted: $branchpoint is a string

src/view/control/AphrontTableView.php
138

✅ I've manually checked 30+ files grepping for setColumnClasses() and I'm damn 99.999% sure that all the incoming values should be just NULL, string, or an empty string. Aliens values will be reported and that's OK.

This revision is now accepted and ready to land.Apr 28 2023, 20:21