3
3
namespace Vectorface \SnappyRouter ;
4
4
5
5
use \Exception ;
6
+ use Psr \Log \LoggerInterface ;
7
+ use Psr \Log \NullLogger ;
6
8
use Vectorface \SnappyRouter \Config \Config ;
7
9
use Vectorface \SnappyRouter \Config \ConfigInterface ;
8
10
use Vectorface \SnappyRouter \Di \Di ;
@@ -26,6 +28,11 @@ class SnappyRouter
26
28
private $ config ; // the configuration
27
29
private $ handlers ; // array of registered handlers
28
30
31
+ /**
32
+ * @var LoggerInterface
33
+ */
34
+ private $ logger ;
35
+
29
36
/**
30
37
* The constructor for the service router.
31
38
* @param array $config The configuration array.
@@ -34,6 +41,17 @@ public function __construct(ConfigInterface $config)
34
41
{
35
42
$ this ->config = $ config ;
36
43
$ this ->parseConfig ();
44
+ $ this ->logger = new NullLogger ();
45
+ }
46
+
47
+ /**
48
+ * Configure SnappyRouter to log its actions.
49
+ *
50
+ * @param LoggerInterface $logger
51
+ */
52
+ public function setLogger (LoggerInterface $ logger )
53
+ {
54
+ $ this ->logger = $ logger ;
37
55
}
38
56
39
57
/**
@@ -85,6 +103,7 @@ public function handleRoute($environment = null)
85
103
*/
86
104
public function handleHttpRoute ($ path , $ query , $ post , $ verb )
87
105
{
106
+ $ this ->logger ->debug ("SnappyRouter: Handling HTTP route: $ path " );
88
107
return $ this ->invokeHandler (false , array ($ path , $ query , $ post , $ verb ));
89
108
}
90
109
@@ -95,6 +114,7 @@ public function handleHttpRoute($path, $query, $post, $verb)
95
114
*/
96
115
public function handleCliRoute ($ pathComponents )
97
116
{
117
+ $ this ->logger ->debug ("SnappyRouter: Handling CLI route: " . implode ("/ " , $ pathComponents ));
98
118
return $ this ->invokeHandler (true , array ($ pathComponents ));
99
119
}
100
120
@@ -111,39 +131,61 @@ private function invokeHandler($isCli, $handlerParams)
111
131
try {
112
132
// determine which handler should handle this path
113
133
$ activeHandler = $ this ->determineHandler ($ isCli , $ handlerParams );
134
+ $ this ->logger ->debug ("SnappyRouter: Selected handler: " . get_class ($ activeHandler ));
114
135
// invoke the initial plugin hook
115
136
$ activeHandler ->invokePluginsHook (
116
137
'afterHandlerSelected ' ,
117
138
array ($ activeHandler )
118
139
);
140
+ $ this ->logger ->debug ("SnappyRouter: routing " );
119
141
$ response = $ activeHandler ->performRoute ();
120
142
$ activeHandler ->invokePluginsHook (
121
143
'afterFullRouteInvoked ' ,
122
144
array ($ activeHandler )
123
145
);
124
146
return $ response ;
125
147
} catch (Exception $ e ) {
126
- // if we have a valid handler give it a chance to handle the error
127
- if (null !== $ activeHandler ) {
128
- $ activeHandler ->invokePluginsHook (
129
- 'errorOccurred ' ,
130
- array ($ activeHandler , $ e )
131
- );
132
- return $ activeHandler ->getEncoder ()->encode (
133
- new Response ($ activeHandler ->handleException ($ e ))
134
- );
135
- }
148
+ return $ this ->handleInvocationException ($ e , $ activeHandler , $ isCli );
149
+ }
150
+ }
151
+
152
+ /**
153
+ * Attempts to mop up after an exception during handler invocation.
154
+ *
155
+ * @param \Exception $exception The exception that occurred during invocation.
156
+ * @param HandlerInterface $activeHandler The active handler, or null.
157
+ * @param bool $isCli True for CLI handlers, false otherwise.
158
+ * @return mixed Returns a handler-dependent response type, usually a string.
159
+ */
160
+ private function handleInvocationException ($ exception , $ activeHandler , $ isCli )
161
+ {
162
+ $ this ->logger ->debug (sprintf (
163
+ "SnappyRouter: caught exception while invoking handler: %s (%d) " ,
164
+ $ exception ->getMessage (),
165
+ $ exception ->getCode ()
166
+ ));
136
167
137
- // if not on the command line, set an HTTP response code
138
- if (!$ isCli ) {
139
- $ responseCode = AbstractResponse::RESPONSE_SERVER_ERROR ;
140
- if ($ e instanceof RouterExceptionInterface) {
141
- $ responseCode = $ e ->getAssociatedStatusCode ();
142
- }
143
- \Vectorface \SnappyRouter \http_response_code ($ responseCode );
168
+ // if we have a valid handler give it a chance to handle the error
169
+ if (null !== $ activeHandler ) {
170
+ $ activeHandler ->invokePluginsHook (
171
+ 'errorOccurred ' ,
172
+ array ($ activeHandler , $ exception )
173
+ );
174
+ return $ activeHandler ->getEncoder ()->encode (
175
+ new Response ($ activeHandler ->handleException ($ exception ))
176
+ );
177
+ }
178
+
179
+ // if not on the command line, set an HTTP response code
180
+ if (!$ isCli ) {
181
+ $ responseCode = AbstractResponse::RESPONSE_SERVER_ERROR ;
182
+ if ($ exception instanceof RouterExceptionInterface) {
183
+ $ responseCode = $ exception ->getAssociatedStatusCode ();
144
184
}
145
- return $ e -> getMessage ( );
185
+ \ Vectorface \ SnappyRouter \http_response_code ( $ responseCode );
146
186
}
187
+ return $ exception ->getMessage ();
188
+
147
189
}
148
190
149
191
/**
0 commit comments