Commit graph

1607 commits

Author SHA1 Message Date
daniel
f59bf8a22f Use @internal instead of @private per policy
https://www.mediawiki.org/wiki/Stable_interface_policy mandates the use
of @internal. The semantics of @private was never properly defined.

Bug: T247862
Change-Id: I4c7c6e7b5a80e86456965521f88d1dfa7d698f84
2020-06-26 14:14:23 +02:00
Tim Starling
d459add63d Introduce wfDeprecatedMsg()
Deprecating something means to say something nasty about it, or to draw
its character into question. For example, "this function is lazy and good
for nothing". Deprecatory remarks by a developer are generally taken as a
warning that violence will soon be done against the function in question.
Other developers are thus warned to avoid associating with the deprecated
function.

However, since wfDeprecated() was introduced, it has become obvious that
the targets of deprecation are not limited to functions. Developers can
deprecate literally anything: a parameter, a return value, a file
format, Mondays, the concept of being, etc. wfDeprecated() requires
every deprecatory statement to begin with "use of", leading to some
awkward sentences. For example, one might say: "Use of your mouth to
cough without it being covered by your arm is deprecated since 2020."

So, introduce wfDeprecatedMsg(), which allows deprecation messages to be
specified in plain text, with the caller description being optionally
appended. Migrate incorrect or gramatically awkward uses of wfDeprecated()
to wfDeprecatedMsg().

Change-Id: Ib3dd2fe37677d98425d0f3692db5c9e988943ae8
2020-06-22 14:34:39 +10:00
DannyS712
733872afda wfLogProfilingData: Remove $request, created but never used
Change-Id: I5c6937c939c699681976e230124a00af10e2cbd0
2020-06-21 07:23:39 +00:00
Timo Tijhof
76b6cfeca9 GlobalFunctions: Use php_uname instead of posix_uname
* posix_uname() is only available when PHP is compiled with
  ext-posix, which MW installer and composer.json do not currently
  require. That's why it was conditionally used (good), but
  we can simply use php_uname() instead and not worry about this.

* php_uname uses POSIX on *nix systems whenever possible
  (even if compiled without ext-posix), and has a C-level fallback
  to ComputerName on Windows built-in as well.

* Remove the fallback to SERVER_NAME was imho quite poor because:
  - The domain name used as virtual host (e.g. on Apache) isn't
    relevant to what wfHostname() is about.
  - It can change from request to request, even influenced by
    end-users, thus could be problematic, poison caches, or behave
    in other unexpected ways.
  - It is unreliable because it is only expected to be set
    on web requests. Even on POSIX or Windows, it would be
    unset when on the command-line, so this would need to use
    an additional fallback either way.

Bug: T172060
Change-Id: I6251122f38db1edf5f85aecc8d8733b56c8222ee
2020-06-14 22:27:45 +00:00
Timo Tijhof
b547aa6396 Use PHP_OS_FAMILY instead of substr(PHP_OS,0,3) for Windows checks
This is new in PHP 7.2, and has a documented set of values at
<https://www.php.net/manual/en/reserved.constants.php>.

Change-Id: If732a652f091c26d7d645766ba6e76fbf464f755
2020-06-13 19:44:00 +00:00
Reedy
567e1bbb5d Hard deprecate wfIsBadImage()
Bug: T249459
Depends-On: Iec58118198864704b1860aeb630476391e3a2c23
Change-Id: I939ded72427adc973739e7b376ea85cbf4b3e258
2020-06-09 19:27:16 +00:00
Reedy
dc5fc0301a wfIsBadImage: Remove deprecated $blacklist parameter
wfIsBadImage still used in Flow\Parsoid\Fixer\BadImageRemover

Bug: T254646
Change-Id: Ieb1ba83593da5c7789b9da5b6a931eedcd391bf3
2020-06-09 00:14:42 +00:00
Amir Sarabadani
80780a3965 Hard deprecate wfWaitForSlaves()
Bug: T181673
Change-Id: Iedb5c4eff8920d3209c0fc516a47688d9306d6e0
2020-06-06 21:39:03 +02:00
Tim Starling
47a1619027 Remove terminating line breaks from debug messages
A terminating line break has not been required in wfDebug() since 2014,
however no migration was done. Some of these line breaks found their way
into LoggerInterface::debug() calls, where they mess up the formatting
of the debug log.

So, remove terminating line breaks from wfDebug() and
LoggerInterface::debug() calls.

Also:
* Fix the stripping of leading line breaks from the log header emitted
  by Setup.php. This feature, accidentally broken in 2014, allows
  requests to be distinguished in the log file.
* Avoid using the global variable $self.
* Move the logging of the client IP back to Setup.php. It was moved to
  WebRequest in the hopes that it would not always be needed, however
  $wgRequest->getIP() is now called unconditionally a few lines up in
  Setup.php. This means that it is put in its proper place after the
  "start request" message.
* Wrap the log header code in a closure so that variables like $name do
  not leak into global scope.
* In Linker.php, remove a few instances of an unnecessary second
  parameter to wfDebug().

Change-Id: I96651d3044a95b9d210b51cb8368edc76bebbb9e
2020-06-03 12:01:16 +10:00
Tim Starling
68c433bd23 Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.

General principles:
* Use DI if it is already used. We're not changing the way state is
  managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
  is a service, it's a more generic interface, it is the only
  thing that provides isRegistered() which is needed in some cases,
  and a HookRunner can be efficiently constructed from it
  (confirmed by benchmark). Because HookContainer is needed
  for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
  SpecialPage and ApiBase have getHookContainer() and getHookRunner()
  methods in the base class, and classes that extend that base class
  are not expected to know or care where the base class gets its
  HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
  getHookRunner() methods, getting them from the global service
  container. The point of this is to ease migration to DI by ensuring
  that call sites ask their local friendly base class rather than
  getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
  methods did not seem warranted, there is a private HookRunner property
  which is accessed directly. Very rarely (two cases), there is a
  protected property, for consistency with code that conventionally
  assumes protected=private, but in cases where the class might actually
  be overridden, a protected accessor is preferred over a protected
  property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
  global code. In a few cases it was used for objects with broken
  construction schemes, out of horror or laziness.

Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore

Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router

setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine

Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-05-30 14:23:28 +00:00
Max Semenik
2a21e99633 GlobalFunctions: Fix wfPercent() with negative accuracy
Format strings like "%.-1f" have never been valid, however
while previously it would have resulted in output being "1f",
in PHP 8 it's an exception. The existing unit test failed because
(float)"1f" evaluates to 1, which was rounded down to an expected 0.
Adding another test case to make sure it can return anything other
than "0%" on PHP 7.

While I'm at it, fix wrong phpdoc and add parameter types to this
function.

Bug: T248925
Change-Id: I018bc17a563c58535f6c84644d707251ab19cd0a
2020-05-04 18:48:08 +03:00
jenkins-bot
af990ab38b Merge "Drop wfIsHHVM, deprecated in 1.34" 2020-05-02 00:01:30 +00:00
jenkins-bot
094e93b629 Merge "Drop wfSetupSession, deprecated in 1.27" 2020-05-02 00:01:23 +00:00
James D. Forrester
6f51591d72 Drop wfIsHHVM, deprecated in 1.34
Change-Id: Ie006b9ac52e2ab83626ac6178a048637851827a3
2020-05-01 17:17:18 +00:00
James D. Forrester
8c2fdd04ab Drop wfSetupSession, deprecated in 1.27
Bug: T232864
Change-Id: Ia0b6e45c08ca7e9bb37a73d52853407ffd9dc26c
2020-05-01 10:16:53 -07:00
Max Semenik
3781f4113b tests: Refactor GlobalTest to use a data provider
Change-Id: Iba800edd9ca35650f79b933db48eb8f95bd09f04
2020-05-01 17:02:27 +03:00
Aaron Schulz
0d933c6760 Deprecate wfForeignMemcKey() and remove the last call
Bug: T250407 
Change-Id: I82ca5a8a5d04166263eb19c4c99d72321bbbcdec
2020-04-17 09:57:37 +00:00
MusikAnimal
2d21ee58ec Add expiry type to ParamValidator
This commit also changes ApiWatch to make use of the new parameter type.
Other APIs will be updated to use it in a separate patch (T248196).

In doing this, we are for the first using logic within a TypeDef outside
the API. This seems acceptable given TypeDefs chiefly appear to serve as
a validation method, with otherwise no particular logic tied to the
concept of APIs.

wfIsInfinity() now uses ExpiryDef::INFINITY_VALS

Bug: T248508
Change-Id: If8f0df059eafb73ec9f39cc076b3a9ce2412d60a
2020-04-08 16:21:04 -04:00
Tim Starling
507501d6ee Stop using SCRIPT_NAME where possible, rely on statically configured routing
It has become apparent that $_SERVER['SCRIPT_NAME'] may contain the same
thing as REQUEST_URI, for example in WMF production. PATH_INFO is not
set, so there is no way to split the URL into SCRIPT_NAME and PATH_INFO
components apart from configuration.

* Revert the fix for T34486, which added a route for SCRIPT_NAME to the
  PathRouter for the benefit of img_auth.php. In T235357, the route thus
  added contained $1, breaking everything.
* Remove calls to WebRequest::getPathInfo() from everywhere other than
  index.php. Dynamic modification of $wgArticlePath in order to make
  PathRouter work was weird and broken anyway. All that is really needed
  is a suffix of REQUEST_URI, so I added a function which provides that.
* Add $wgImgAuthPath, for use as a last resort workaround for T34486.
* Avoid the use of $_SERVER['SCRIPT_NAME'] to detect the currently
  running script.
* Deprecated wfGetScriptUrl(), a fairly simple wrapper for SCRIPT_NAME.
  Apparently no callers in core or extensions.

Bug: T235357
Change-Id: If2b82759f3f4aecec79d6e2d88cd4330927fdeca
2020-04-01 12:33:38 -04:00
Timo Tijhof
95ec909e52 WikiMap: Add WikiMap::getCurrentWikiId() to make common use case easier
Change-Id: Ie225ebfc37c824e3167742137bbbc9f64aca5f5e
2020-03-03 16:04:21 +00:00
Timo Tijhof
8dfa162439 profiler: Remove support for $wgDebugLogGroups['profileoutput']
Profiler outputs should instead be configured via $wgProfiler.

Bug: T245835
Change-Id: Ib27ce8d066bde27596e61491750c508b259746f4
2020-02-29 18:24:55 +00:00
jenkins-bot
53c4d327d0 Merge "debug: Remove $wgDebugTimestamps feature" 2020-02-28 04:46:40 +00:00
DannyS712
7186b63f82 Hard deprecate Title::getUserPermissionsErrors
Remove final uses as well

Bug: T244929
Change-Id: I65e937c7b9904b1e93f649508b14148849589f82
2020-02-26 05:09:55 +00:00
Timo Tijhof
f081a71f2c debug: Remove $wgDebugTimestamps feature
MediaWiki provides at least a dozen distinct ways that debug logs
can be generated, augmented and displayed, and even more ways
for profiling information can be collected. This makes it difficult
to reason about overall and isn't helping with on-boarding.

Reduce investments to only a few methods and make them great,
starting by removing possibly the least useful profiler we have
today (relative to the others we've developed since then),
which is the "relative timestamps and memory use" prepended
to wfDebug messages, which would presumably be used in conjuction
with $wgDebugComments, $wgDebugToolbar or $wgDebugLogFile of
which the latter two already includes timestamps and/or offsets.
If this is truly useful, I suggest we (unconditionally) make use
of offsets in (one of) those instead.

Originally introduced in r61582 (b1e2b87b95).

Change-Id: I09d1cb0d3f5b0b3165ed4d299b71c051b78a1918
2020-02-24 13:08:33 +00:00
Stephen Niedzielski
6b06508d27 [doc] [PHP] fix wfDeprecated() description
This function appears to be incorrectly documented. An exception is only
thrown for invalid arguments.

Bug: T232140
Change-Id: Ib6870139b7dabb10546bbffdfba92c5accb583af
2020-02-23 00:28:47 +00:00
jenkins-bot
c09928cbcc Merge "Remove usages of deprecated Language methods" 2020-02-16 01:02:34 +00:00
Petr Pchelko
204fa7e509 Remove usages of deprecated Language methods
Change-Id: Iad3375b141b1d87c890baec6ecd16ed92f93e699
2020-02-16 00:45:48 +00:00
mainframe98
53da96af08 Remove wfGetMessageCacheStorage
There were no callers to this method, outside the $messageMemc
global, which is to be deprecated with T243175. Pending its
eventual removal, its usage has been inlined as the function
was trivial anyways.

Any previous callers were migrated with the convertion of the
MessageCache to a service in 752e7dd707.

Bug: T243176
Change-Id: I79846442512f023dcdf2f1f8c425156589c0421d
2020-02-14 20:09:14 +01:00
James D. Forrester
0958a0bce4 Coding style: Auto-fix MediaWiki.Usage.IsNull.IsNull
Change-Id: I90cfe8366c0245c9c67e598d17800684897a4e27
2020-01-10 14:17:13 -08:00
DannyS712
24b11bc7d3 Remove wfGlobalCacheKey global function, deprecated and unused
Bug: T241350
Change-Id: Icdb2512f3ec10bc4b26a6faa08f14d7603176c82
2020-01-08 01:08:55 +00:00
Fomafix
6a3f192d11 Forbid wfDeprecated with $version = true
$version = true is not supported.

Change-Id: Id08ada32cd0273564c638d242354351333a9f163
2019-12-31 13:53:36 +01:00
Umherirrender
4854212539 Allow all kind of arrays on wfAppendQuery
wfArrayToCgi accept also arrays of array, so the string[] is to strict
on wfAppendQuery

Change-Id: I719fec91cb765a1673299974ec0eea59c37ce72f
2019-12-29 12:22:08 +01:00
Umherirrender
615f53d8bd Update @param of wfMessage
Use the same as for MessageLocalizer::msg

mixed is needed, because it can also accept int or arrays from
Message:numParam and friends

Change-Id: I56df8c61c933dfa0e3458739a8d26b00be061c80
2019-12-21 10:44:06 +01:00
Daimona Eaytoy
25ba3b3794 Document more scalar types for BagOStuff::makeKey and Language::formatNum
These were spotted by phan's stricter type checks. All make*Key methods
can also take integers, and that's pretty common across core and
extensions.
Language::formatNum can also take numbers (and tests cover this case);
in this case, move the cast to the top of the method, so that we're
passing a string to strtr, too.

The methods touched in this patch are the main source of false positives
in both core and extensions.

Change-Id: I6d538ce3ca7fd2d495c2bafbab7cc279da69db1c
2019-12-15 00:02:04 +00:00
Daimona Eaytoy
598c4d7fcb build: Upgrade phan to 0.9.0
Scalar casts are still allowed (for now), because there's a huge amount
of false positives. Ditto for invalid array offsets.

Thoughts about the rest: luckily, many false positives with array offsets
have gone. Moreover, since *Internal issues are suppressed in the base
config, we can remove inline suppressions.

Unfortunately, there are a couple of new issues about array additions
with only false positives, because apparently they don't take
branches into account.

Change-Id: I5a3913c6e762f77bfdae55051a395fae95d1f841
2019-12-07 20:16:19 +00:00
Umherirrender
337ecb0514 Add missing @param and @return to documentation
Change-Id: Ibc5849cc8ea7e7c4eb30ded9c1cfa5f52187c377
2019-11-10 22:12:58 +00:00
jenkins-bot
73bd3d8b1c Merge "Hard deprecate wfGetRusage(), no known callers" 2019-11-01 03:18:18 +00:00
jenkins-bot
17b931caf6 Merge "Remove Language::factory and getParentLanguage use" 2019-10-29 09:25:29 +00:00
Brian Wolff
67ea4f5747 Mild refactoring of ContentSecurityPolicy
This is to make it behave in a more object orientied way. The
goal is to make it be easier to allow extensions to mark certain
pages as requiring a different policy (For example, CodeEditor
extension uses a blob: url with a WebWorker. We don't want to
include that on the policy of every page, but allow the extension
to mark it as required whenever needed).

This commit does not change code behaviour in any way.

Change-Id: I4bf53dabb6e6c5446cea99a64db68b300cef2fd4
2019-10-28 09:02:14 -07:00
Aryeh Gregor
0de9c47b50 Remove Language::factory and getParentLanguage use
Change-Id: I11f8801ef47ec1a1f63d840116e69667e6f3ae3c
2019-10-27 12:34:28 +02:00
jenkins-bot
248c72fb25 Merge "Deprecate wfWikiId() in favor of WikiMap::getCurrentWikiDbDomain()" 2019-10-27 00:30:58 +00:00
jenkins-bot
533346b24f Merge "Deprecate wfGetRusage(), no longer useful" 2019-10-22 14:13:14 +00:00
James D. Forrester
9ed8bb4092 Hard deprecate wfGetRusage(), no known callers
Change-Id: I157386ab0c2991fc8ed55f0e0b77d8cecf86d04c
Depends-On: Ic70d0304e9cd04d4011671e498146e4b5994cbe9
2019-10-22 11:32:23 +01:00
James D. Forrester
13bd9a8845 Deprecate wfGetRusage(), no longer useful
Change-Id: Ibab4825b53cd76053f1e4ce8986dfac8054a04f8
2019-10-22 11:18:43 +01:00
Daimona Eaytoy
ae424ce5da build: Upgrade mediawiki-phan-config to 0.8.0
This is to ensure that the CI job is working with the new version.

Note: redundant_condition_detection should have worked as expected by
this version, but unfortunately it still has false positives.

Bug: T235049
Bug: T231636
Change-Id: Idaba6584cb5b2ff19b6455c7bbec6b89619ddbff
2019-10-22 09:16:45 +00:00
Aaron Schulz
f5ac68300e Deprecate wfWikiId() in favor of WikiMap::getCurrentWikiDbDomain()
The later distinguishes meaningful (not "mediawiki") schema names
if postgres is in use and can be used to get DB domain strings or
full wiki IDs as needed.

Change-Id: I7bd3d85e36a992fa7359127328669fe6e16b0fed
2019-10-22 02:47:33 +00:00
Tim Starling
184676c346 Move MediaWikiTestCase::setUp() and tearDown() to annotation hooks
This removes the requirement that setUp() and tearDown() in the derived
class need to call the parent.

Change-Id: I9d4771c28160356ff58884e3a58fa28c8db4e8a5
2019-10-17 20:22:39 -07:00
Daimona Eaytoy
cae0110e5a Fix new phan errors, part 1
First part, mostly doc-only.

Bug: T231636
Change-Id: Id59f585740fa5bfb53c257287121f51a30de38fe
2019-10-11 15:04:04 +00:00
Max Semenik
c8eb0798f1 Hard-deprecate wfIsHHVM()
Deprecated in 1.34, no callers once the mentioned below patch
is merged.

Bug: T192166
Change-Id: I1043002d794a7aecf2dac257a64b8cac2d3969b3
Depends-On: I63da562af5f60e04a81a15cd3073eeae1b222541
2019-10-06 22:45:03 -07:00
James D. Forrester
27fa60be37 HHVM removal: Simplify wfGetRusage()
Change-Id: I4e7e1285951518f59423c55e5c48d995a1941a5b
2019-10-03 11:08:58 -07:00