I'm creating Rest Api. I think it's good to create more versions of Api.
Structure:
module
Api
config
module.config.php
Module.php
autoload_...
autoload_...
src
v.1.0
config
module.config.php
src
v.1.1
config
module.config.php
src
Api
Controller
I want to get requested version of Api from request Header "x-apiVersion".
module/Api/config/module.config.php has global config (config doctrine , main Api route (only module) )
all routes will be specified to version of Api in file: /module/Api/src/v{_API_VERSION_}/config/module.config.php
onBootstrap function in Api/Module.php have:
$sharedEvents->attach('Zend\Mvc\Application', MvcEvent::EVENT_ROUTE, array($this, 'getApiVersion'));
I call getApiVersion in EVENT_ROUTE beacause I need MvcEvent ->getRouteMatch() to get module name and Headers.
Here's shorten getApiVersion function
public function getApiVersion(MvcEvent $e)
{
$request = $e->getApplication()->getRequest();
$module_name = "api"; // code for get module name
if ($request->getHeaders()->has('x-apiVersion') && $module_name=="api") {
$apiVersion = $request->getHeaders()->get('x-apiVersion')->getFieldValue();
}
/* path to api version */
$path_to_api = __DIR__ . '/src/v'.$apiVersion.'/src/'. __NAMESPACE__;
/* autoload classes */
AutoloaderFactory::factory(array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => $path_to_api,
),
),
));
}
Namespacing is good, I can use \Api\Controller... in Application and getting good version of Api. My problem is how I can merge config files after EVENT_ROUTE?
In Api/config/module.config.php I dont have specified children routes for api. I want to get them from Api version folder.
Thanks for help.