forked from barryvdh/laravel-debugbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request barryvdh#373 from barryvdh/clockwork
[WIP] Clockwork Integration
- Loading branch information
Showing
7 changed files
with
305 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<?php | ||
|
||
namespace Barryvdh\Debugbar\Support\Clockwork; | ||
|
||
use DebugBar\DataCollector\DataCollector; | ||
use DebugBar\DataCollector\DataCollectorInterface; | ||
use DebugBar\DataCollector\Renderable; | ||
use Symfony\Component\HttpFoundation\Response; | ||
|
||
/** | ||
* | ||
* Based on \Symfony\Component\HttpKernel\DataCollector\RequestDataCollector by Fabien Potencier <fabien@symfony.com> | ||
* | ||
*/ | ||
class ClockworkCollector extends DataCollector implements DataCollectorInterface, Renderable | ||
{ | ||
/** @var \Symfony\Component\HttpFoundation\Request $request */ | ||
protected $request; | ||
/** @var \Symfony\Component\HttpFoundation\Request $response */ | ||
protected $response; | ||
/** @var \Symfony\Component\HttpFoundation\Session\SessionInterface $session */ | ||
protected $session; | ||
|
||
/** | ||
* Create a new SymfonyRequestCollector | ||
* | ||
* @param \Symfony\Component\HttpFoundation\Request $request | ||
* @param \Symfony\Component\HttpFoundation\Request $response | ||
* @param \Symfony\Component\HttpFoundation\Session\SessionInterface $session | ||
*/ | ||
public function __construct($request, $response, $session = null) | ||
{ | ||
$this->request = $request; | ||
$this->response = $response; | ||
$this->session = $session; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getName() | ||
{ | ||
return 'clockwork'; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getWidgets() | ||
{ | ||
return null; | ||
} | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function collect() | ||
{ | ||
$request = $this->request; | ||
$response = $this->response; | ||
|
||
$data = array( | ||
'getData' => $request->query->all(), | ||
'postData' => $request->request->all(), | ||
'headers' => $request->headers->all(), | ||
'cookies' => $request->cookies->all(), | ||
'uri' => $request->getRequestUri(), | ||
'method' => $request->getMethod(), | ||
'responseStatus' => $response->getStatusCode(), | ||
); | ||
|
||
if ($this->session) { | ||
$sessionAttributes = array(); | ||
foreach ($this->session->all() as $key => $value) { | ||
$sessionAttributes[$key] = $value; | ||
} | ||
$data['sessionData'] = $sessionAttributes; | ||
} | ||
|
||
if (isset($data['postData']['php-auth-pw'])) { | ||
$data['postData']['php-auth-pw'] = '******'; | ||
} | ||
|
||
if (isset($data['postData']['PHP_AUTH_PW'])) { | ||
$data['postData']['PHP_AUTH_PW'] = '******'; | ||
} | ||
|
||
return $data; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
<?php namespace Barryvdh\Debugbar\Support\Clockwork; | ||
|
||
class Converter { | ||
|
||
/** | ||
* Convert the phpdebugbar data to Clockwork format. | ||
* | ||
* @param array $data | ||
* @return array | ||
*/ | ||
public function convert($data) | ||
{ | ||
$meta = $data['__meta']; | ||
|
||
// Default output | ||
$output = [ | ||
'id' => $meta['id'], | ||
'method' => $meta['method'], | ||
'uri' => $meta['uri'], | ||
'time' => $meta['utime'], | ||
'headers' => [], | ||
'cookies' => [], | ||
'emailsData' => [], | ||
'getData' => [], | ||
'log' => [], | ||
'postData' => [], | ||
'sessionData' => [], | ||
'timelineData' => [], | ||
'viewsData' => [], | ||
'controller' => null, | ||
'responseTime' => null, | ||
'responseStatus' => null, | ||
'responseDuration' => 0, | ||
]; | ||
|
||
if (isset($data['clockwork'])) { | ||
$output = array_merge($output, $data['clockwork']); | ||
} | ||
|
||
if (isset($data['time'])) { | ||
$time = $data['time']; | ||
$output['time'] = $time['start']; | ||
$output['responseTime'] = $time['end']; | ||
$output['responseDuration'] = $time['duration'] * 1000; | ||
foreach($time['measures'] as $measure) { | ||
$output['timelineData'][] = [ | ||
'data' => [], | ||
'description' => $measure['label'], | ||
'duration' => $measure['duration'] * 1000, | ||
'end' => $measure['end'], | ||
'start' => $measure['start'], | ||
'relative_start' => $measure['start'] - $time['start'], | ||
]; | ||
} | ||
} | ||
|
||
if (isset($data['route'])) { | ||
$route = $data['route']; | ||
|
||
$controller = null; | ||
if (isset($route['controller'])) { | ||
$controller = $route['controller']; | ||
} elseif (isset($route['uses'])) { | ||
$controller = $route['uses']; | ||
} | ||
|
||
$output['controller'] = $controller; | ||
|
||
list($method, $uri) = explode(' ', $route['uri'], 2); | ||
|
||
$output['routes'][] = [ | ||
'action' => $controller, | ||
'after' => isset($route['after']) ? $route['after'] : null, | ||
'before' => isset($route['before']) ? $route['before'] : null, | ||
'method' => $method, | ||
'name' => isset($route['as']) ? $route['as'] : null, | ||
'uri' => $uri, | ||
]; | ||
} | ||
|
||
if (isset($data['messages'])) { | ||
foreach($data['messages']['messages'] as $message) { | ||
$output['log'][] = [ | ||
'message' => $message['message'], | ||
'time' => $message['time'], | ||
'level' => $message['label'], | ||
]; | ||
} | ||
} | ||
|
||
if (isset($data['queries'])) { | ||
$queries = $data['queries']; | ||
foreach($queries['statements'] as $statement){ | ||
$output['databaseQueries'][] = [ | ||
'query' => $statement['sql'], | ||
'bindings' => $statement['params'], | ||
'duration' => $statement['duration'] * 1000, | ||
'connection' => $statement['connection'] | ||
]; | ||
} | ||
|
||
$output['databaseDuration'] = $queries['accumulated_duration'] * 1000; | ||
} | ||
|
||
if (isset($data['views'])) { | ||
foreach ($data['views']['templates'] as $view) { | ||
$output['viewsData'][] = [ | ||
'description' => 'Rendering a view', | ||
'duration' => 0, | ||
'end' => 0, | ||
'start' => 0, | ||
'data' => [ | ||
'name' => $view['name'], | ||
'data' => $view['params'], | ||
], | ||
]; | ||
} | ||
} | ||
|
||
if (isset($data['swiftmailer_mails'])) { | ||
foreach($data['swiftmailer_mails']['mails'] as $mail) { | ||
$output['emailsData'][] = [ | ||
'data' => [ | ||
'to' => $mail['to'], | ||
'subject' => $mail['subject'], | ||
'headers' => isset($mail['headers']) ? explode("\n", $mail['headers']) : null, | ||
], | ||
]; | ||
} | ||
} | ||
|
||
return $output; | ||
} | ||
|
||
} |