-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModule.php
More file actions
76 lines (71 loc) · 2.36 KB
/
Module.php
File metadata and controls
76 lines (71 loc) · 2.36 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* @link http://dragonjsonserver.de/
* @copyright Copyright (c) 2012-2014 DragonProjects (http://dragonprojects.de/)
* @license http://license.dragonprojects.de/dragonjsonserver.txt New BSD License
* @author Christoph Herrmann <[email protected]>
* @package DragonJsonServerAccount
*/
namespace DragonJsonServerAccount;
/**
* Klasse zur Initialisierung des Moduls
*/
class Module
{
use \DragonJsonServer\ServiceManagerTrait;
/**
* Gibt die Konfiguration des Moduls zurück
* @return array
*/
public function getConfig()
{
return require __DIR__ . '/config/module.config.php';
}
/**
* Gibt die Autoloaderkonfiguration des Moduls zurück
* @return array
*/
public function getAutoloaderConfig()
{
return [
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
],
],
];
}
/**
* Wird bei der Initialisierung des Moduls aufgerufen
* @param \Zend\ModuleManager\ModuleManager $moduleManager
*/
public function init(\Zend\ModuleManager\ModuleManager $moduleManager)
{
$sharedManager = $moduleManager->getEventManager()->getSharedManager();
$sharedManager->attach('DragonJsonServerApiannotation\Module', 'Request',
function (\DragonJsonServerApiannotation\Event\Request $eventRequest) {
if (!$eventRequest->getAnnotation() instanceof \DragonJsonServerAccount\Annotation\Session) {
return;
}
$serviceSession = $this->getServicemanager()->get('\DragonJsonServerAccount\Service\Session');
$sessionhash = $eventRequest->getRequest()->getParam('sessionhash');
$session = $serviceSession->getSessionBySessionhash($sessionhash);
$serviceSession->setSession($session);
}
);
$sharedManager->attach('DragonJsonServerApiannotation\Module', 'Servicemap',
function (\DragonJsonServerApiannotation\Event\Servicemap $eventServicemap) {
if (!$eventServicemap->getAnnotation() instanceof \DragonJsonServerAccount\Annotation\Session) {
return;
}
$eventServicemap->getService()->addParams([
[
'type' => 'string',
'name' => 'sessionhash',
'optional' => false,
],
]);
}
);
}
}