The missing XML support for Laravel's Request class.
This package is designed to work with the Laravel framework.
Install via composer:
composer require mtownsend/request-xml
For Laravel 5.4 and lower, add the following line to your config/app.php
:
/*
* Package Service Providers...
*/
Mtownsend\RequestXml\Providers\RequestXmlServiceProvider::class,
For Laravel 5.5 and greater, the package will auto register the provider for you.
To register the service provider, add the following line to app/bootstrap/app.php
:
$app->register(Mtownsend\RequestXml\Providers\RequestXmlServiceProvider::class);
It's important to register the middleware so your application can convert an XML request and merge it into the Request object. You will then be able to run XML through Laravel's powerful validation system.
Please note:
Once you register the middleware, you do not need to do anything special to access your request xml. It will be available in the Request object like it would if it was a json or form request.
To setup the middleware, open up your app/Http/Kernel.php
file.
To add the middleware globally:
protected $middleware = [
\Mtownsend\RequestXml\Middleware\XmlRequest::class,
];
To add the middleware to web routes only:
protected $middlewareGroups = [
'web' => [
\Mtownsend\RequestXml\Middleware\XmlRequest::class,
],
];
To add the middleware to api routes only:
protected $middlewareGroups = [
'api' => [
\Mtownsend\RequestXml\Middleware\XmlRequest::class,
],
];
Or, if you want named middleware for specific routes:
protected $routeMiddleware = [
'xml' => \Mtownsend\RequestXml\Middleware\XmlRequest::class,
];
if (request()->wantsXml()) {
// send xml response
}
if (request()->isXml()) {
// do something
}
$data = request()->xml();
Request method
->wantsXml()
Works very similar to Laravel's ->wantsJson()
method by returning a boolean. It will tell you if the incoming request would like to receive an XML response back.
Request method
->isXml()
Returns a boolean. This will tell you if the incoming request is XML.
Request method
->xml()
Returns an array. This converts the XML request into a PHP array. You are free to cast it to an object:
$xml = (object) request()->xml();
Or wrap it in a collection:
$xml = collect(request()->xml());
In the event invalid XML is received in a request, the application will throw an Exception containing the raw, invalid XML. If you would like to handle this exception whenever it occurs in your application, you can easily catch it and supply your own code in your applications app/Exceptions/Handler.php
like so:
if ($exception instanceof \Mtownsend\RequestXml\Exceptions\CouldNotParseXml) {
// do something
}
Have you ever wondered why Laravel offered useful methods for transforming data into JSON but completely forgot about XML? This package aims to add the missing XML functionality to Laravel's Request class. Your Laravel application may now detect and auto-merge incoming XML requests into the Request object. You can run an XML request through Laravel's built in validation system - it just works! XML's days of being a second class citizen in your Laravel app have come to an end.
- Mark Townsend
- All Contributors
You can run the tests with:
./vendor/bin/phpunit
The MIT License (MIT). Please see License File for more information.