This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
forked from API-Skeletons/zf-oauth2-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module.php
59 lines (51 loc) · 1.59 KB
/
Module.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
namespace ZF\OAuth2\Doctrine;
use Zend\ModuleManager\ModuleManager;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;
use Zend\ModuleManager\Feature\ConfigProviderInterface;
use Zend\Config\Config;
use Zend\Mvc\MvcEvent;
class Module implements
AutoloaderProviderInterface,
ConfigProviderInterface
{
/**
* Retrieve autoloader configuration
*
* @return array
*/
public function getAutoloaderConfig()
{
return ['Zend\Loader\StandardAutoloader' => ['namespaces' => [
__NAMESPACE__ => __DIR__ . '/src/',
]]];
}
/**
* Retrieve module configuration
*
* @return array
*/
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
public function onBootstrap(MvcEvent $e) {
$serviceManager = $e->getParam('application')->getServiceManager()
->get('oauth2.doctrineadapter.default')->bootstrap($e);
}
public function getServiceConfig()
{
return [
'factories' => [
'oauth2.doctrineadapter.default' => function($serviceManager) {
$globalConfig = $serviceManager->get('Config');
$config = new Config($globalConfig['zf-oauth2-doctrine']['default']);
$factory = $serviceManager->get('ZF\OAuth2\Doctrine\Adapter\DoctrineAdapterFactory');
$factory->setConfig($config);
$adapter = $factory->createService($serviceManager);
return $adapter;
}
],
];
}
}