Provides various web APIs (Action API and REST).
This code is meant to be executed within the MediaWiki application context. No standalone usage is intended.
2.0.x
-> MediaWiki 1.391.0.x
-> MediaWiki 1.35Require this component in the composer.json
of your extension:
{
"require": {
"mwstake/mediawiki-component-commonwebapis": "~2"
}
}
$endpoints = MediaWikiServices::getInstance()->getService( 'MWStakeCommonWebAPIs' )->getAvailableEndpoints();
will yield a list of all registered endpoints as well as their REST path configuration
To make it easier to access these endpoints from JS, an abstraction is implemented.
To enable it, load RL module ext.mws.commonwebapis
and use it like this:
mw.loader.using( 'ext.mws.commonwebapis' ).then( function () {
mws.commonwebapi.user.query( {
query: 'MyUser'
} );
} );
In order to specify filters, you can use the filter
parameter. It is an JSON-encoded array of objects. Each object has the following properties:
property
- The field to filter onvalue
- The value to filter onoperator
- The operator to use for the filter. Possible values are eq
(equals), neq
(not equals), lt
(less than), lte
(less than or equal), gt
(greater than), gte
(greater than or equal), like
(like), nlike
(not like), in
(in), nin
(not in), isnull
(is null), isnotnull
(is not null), between
(between), nbetween
(not between), ilike
(case insensitive like), nilike
(case insensitive not like), regexp
(regular expression), nregexp
(not regular expression). Depending on the type of the filter, some operators might not be available.type
- The type of the value. Possible values are string
, integer
, float
, boolean
, list
In order to specify sorting, you can use the sort
parameter. It is an JSON-encoded array of objects. Each object has the following properties:
property
- The field to sort ondirection
- The direction to sort. Possible values are asc
(ascending) and desc
(descending)mw.loader.using( 'ext.mws.commonwebapis' ).then( function () {
mws.commonwebapi.user.query( {
filter: JSON.stringify( [
{
field: 'user_name',
value: 'MyUser',
operator: 'eq',
type: 'string'
}
] ),
sort: JSON.stringify( [
{
field: 'user_name',
direction: 'asc'
}
] )
} );
} );