API:Calling internally: Difference between revisions
SPage (WMF) (talk | contribs) explain examples better, some minor fixes to first sample code |
SPage (WMF) (talk | contribs) m bulletize parameters to DerivativeRequest, explain first one |
||
| Line 9: | Line 9: | ||
1) If you are executing in the context of an existing request from a user, prepare request parameters using the <code>DerivativeRequest</code> class. |
1) If you are executing in the context of an existing request from a user, prepare request parameters using the <code>DerivativeRequest</code> class. |
||
* Its constructor's first parameter is the request to derive from. |
|||
* Its constructor's second parameter is an array of API parameters that is the same as if making the request over the web. |
|||
* Its constructor's third parameter is optional, specify <code>true</code> to treat the API call as a POST when the API module you're invoking requires POST requests. |
|||
This sample code issues the 'allpages' list query starting at the letter 'M'. |
This sample code issues the 'allpages' list query starting at the letter 'M'. |
||
Revision as of 11:43, 23 November 2015
| This page is part of the MediaWiki Action API documentation. |
Sometimes other PHP code may wish to use the data access and aggregation functionality of the action API. Rather than making an HTTP network request to the same server, you can make a call within PHP.
WikiPage::doEditContent() instead of an API request.The steps are:
1) If you are executing in the context of an existing request from a user, prepare request parameters using the DerivativeRequest class.
- Its constructor's first parameter is the request to derive from.
- Its constructor's second parameter is an array of API parameters that is the same as if making the request over the web.
- Its constructor's third parameter is optional, specify
trueto treat the API call as a POST when the API module you're invoking requires POST requests.
This sample code issues the 'allpages' list query starting at the letter 'M'. This is a simple query, not requiring a user or POST.
$params = new DerivativeRequest(
$this->getRequest(), // Fallback upon $wgRequest if you can't access context.
array(
'action' => 'query',
'list' => 'allpages',
'apnamespace' => 0,
'aplimit' => 10,
'apprefix' => 'M'
),
);
If you need to provide an edit token as an API parameter when making edits or other changes, you can get the edit token like so:
$user = $this->getUser(); // Or User::newFromName, etc.
$token = $user->getEditToken();
2) Create an ApiMain instance. then execute the API request. Because the parameter is a DerivativeRequest object, ApiMain will not execute any formatting printers, nor will it handle any errors. A parameter error or any other internal error will cause an exception that may be caught in the calling code.
$api = new ApiMain( $params );
$api->execute();
Important: If you want to create or edit pages, you have to pass true as a second parameter when creating the ApiMain object:
$api = new ApiMain( $params, true ); // default is false
$api->execute();
3) Get the resulting data array.
$data = $api->getResult()->getResultData();
Here is a complete example taken from Extension:WikiLove (as of r112758). It adds text to a page, so it must run when handling a logged-in user's HTTP request.
$api = new ApiMain(
new DerivativeRequest(
$this->getRequest(), // Fallback upon $wgRequest if you can't access context
array(
'action' => 'edit',
'title' => $talk->getFullText(),
'appendtext' => ( $talk->exists()
? "\n\n"
: '' ) .
wfMsgForContent( 'newsectionheaderdefaultlevel',
$params['subject'] )
. "\n\n" . $params['text'],
'token' => $params['token'],
'summary' => wfMsgForContent( 'wikilove-summary',
$wgParser->stripSectionName( $params['subject'] ) ),
'notminor' => true
),
true // treat this as a POST
),
true // Enable write.
);
$api->execute();
FauxRequest
The example above creates a DerivativeRequest RequestContext.
This "inherits" some of the original request, such as IP and request headers that are set when MediaWiki is doing an action on behalf of a user, typically when handling a web request.
If there is no user request context, for example when invoking the action API from a system process, or if you want to make a completely separate internal request, then you can use FauxRequest instead.
Using FauxRequest for write operations without passing request context causes bug T36838.
Error handling
UsageException. If its possible for your code to send an invalid parameter, you should probably call the API from inside a try/catch block