IncludePanel.php
5.06 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace DebugKit\Panel;
use Cake\Controller\Controller;
use Cake\Core\Plugin;
use Cake\Event\Event;
use Cake\Utility\Hash;
use DebugKit\DebugPanel;
/**
* Provides a list of included files for the current request
*
*/
class IncludePanel extends DebugPanel
{
/**
* The list of plugins within the application
*
* @var <type>
*/
protected $_pluginPaths = [];
/**
* File Types
*
* @var array
*/
protected $_fileTypes = [
'Auth', 'Cache', 'Collection', 'Config', 'Configure', 'Console', 'Component', 'Controller',
'Behavior', 'Database', 'Datasource', 'Model', 'Template', 'View', 'Utility',
'Network', 'Routing', 'I18n', 'Log', 'Error', 'Event', 'Form', 'Filesystem',
'ORM', 'Filter', 'Validation'
];
/**
* Get a list of plugins on construct for later use
*/
public function __construct()
{
foreach (Plugin::loaded() as $plugin) {
$this->_pluginPaths[$plugin] = Plugin::path($plugin);
}
}
/**
* Get a list of files that were included and split them out into the various parts of the app
*
* @return array
*/
protected function _prepare()
{
$return = ['core' => [], 'app' => [], 'plugins' => []];
foreach (get_included_files() as $file) {
$pluginName = $this->_isPluginFile($file);
if ($pluginName) {
$return['plugins'][$pluginName][$this->_getFileType($file)][] = $this->_niceFileName($file, $pluginName);
} elseif ($this->_isAppFile($file)) {
$return['app'][$this->_getFileType($file)][] = $this->_niceFileName($file, 'app');
} elseif ($this->_isCoreFile($file)) {
$return['core'][$this->_getFileType($file)][] = $this->_niceFileName($file, 'core');
}
}
$return['paths'] = $this->_includePaths();
ksort($return['core']);
ksort($return['plugins']);
ksort($return['app']);
return $return;
}
/**
* Get the possible include paths
*
* @return array
*/
protected function _includePaths()
{
$paths = array_flip(array_filter(explode(PATH_SEPARATOR, get_include_path())));
unset($paths['.']);
return array_flip($paths);
}
/**
* Check if a path is part of cake core
*
* @param string $file File to check
* @return bool
*/
protected function _isCoreFile($file)
{
return strstr($file, CAKE);
}
/**
* Check if a path is from APP but not a plugin
*
* @param string $file File to check
* @return bool
*/
protected function _isAppFile($file)
{
return strstr($file, APP);
}
/**
* Check if a path is from a plugin
*
* @param string $file File to check
* @return bool
*/
protected function _isPluginFile($file)
{
foreach ($this->_pluginPaths as $plugin => $path) {
if (strstr($file, $path)) {
return $plugin;
}
}
return false;
}
/**
* Replace the path with APP, CORE or the plugin name
*
* @param string $file File to check
* @param string $type The file type
* - app for app files
* - core for core files
* - PluginName for the name of a plugin
* @return bool
*/
protected function _niceFileName($file, $type)
{
switch ($type) {
case 'app':
return str_replace(APP, 'APP/', $file);
case 'core':
return str_replace(CAKE, 'CORE/', $file);
default:
return str_replace($this->_pluginPaths[$type], $type . '/', $file);
}
}
/**
* Get the type of file (model, controller etc)
*
* @param string $file File to check.
* @return string
*/
protected function _getFileType($file)
{
foreach ($this->_fileTypes as $type) {
if (stripos($file, '/' . $type . '/') !== false) {
return $type;
}
}
return 'Other';
}
/**
* Shutdown callback
*
* @param \Cake\Event\Event $event Event
* @return void
*/
public function shutdown(Event $event)
{
$this->_data = $this->_prepare();
}
/**
* Get the number of files included in this request.
*
* @return string
*/
public function summary()
{
$data = $this->_data;
if (empty($data)) {
$data = $this->_prepare();
}
return count(Hash::flatten($data));
}
}